From: <nr...@us...> - 2008-08-01 20:06:47
|
Revision: 5041 http://jython.svn.sourceforge.net/jython/?rev=5041&view=rev Author: nriley Date: 2008-08-01 20:06:44 +0000 (Fri, 01 Aug 2008) Log Message: ----------- Make the ihooks module importable. Modified Paths: -------------- branches/asm/CPythonLib.includes branches/asm/src/org/python/modules/imp.java Modified: branches/asm/CPythonLib.includes =================================================================== --- branches/asm/CPythonLib.includes 2008-08-01 00:50:28 UTC (rev 5040) +++ branches/asm/CPythonLib.includes 2008-08-01 20:06:44 UTC (rev 5041) @@ -69,6 +69,7 @@ htmllib.py HTMLParser.py httplib.py +ihooks.py imaplib.py imghdr.py inspect.py Modified: branches/asm/src/org/python/modules/imp.java =================================================================== --- branches/asm/src/org/python/modules/imp.java 2008-08-01 00:50:28 UTC (rev 5040) +++ branches/asm/src/org/python/modules/imp.java 2008-08-01 20:06:44 UTC (rev 5041) @@ -33,6 +33,7 @@ public static final int PY_COMPILED = 2; public static final int C_EXTENSION = 3; public static final int PKG_DIRECTORY = 5; + public static final int C_BUILTIN = 6; public static final int PY_FROZEN = 7; public static final int IMP_HOOK = 9; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |