From: <pj...@us...> - 2009-03-17 02:59:38
|
Revision: 6098 http://jython.svn.sourceforge.net/jython/?rev=6098&view=rev Author: pjenvey Date: 2009-03-17 02:59:34 +0000 (Tue, 17 Mar 2009) Log Message: ----------- whitespace Modified Paths: -------------- trunk/jython/src/org/python/core/util/importer.java Modified: trunk/jython/src/org/python/core/util/importer.java =================================================================== --- trunk/jython/src/org/python/core/util/importer.java 2009-03-16 23:26:18 UTC (rev 6097) +++ trunk/jython/src/org/python/core/util/importer.java 2009-03-17 02:59:34 UTC (rev 6098) @@ -74,12 +74,12 @@ private SearchOrderEntry[] makeSearchOrder(){ return new SearchOrderEntry[] { - new SearchOrderEntry(getSeparator() + "__init__$py.class", - EnumSet.of(EntryType.IS_PACKAGE, EntryType.IS_BYTECODE)), - new SearchOrderEntry(getSeparator() + "__init__.py", - EnumSet.of(EntryType.IS_PACKAGE, EntryType.IS_SOURCE)), - new SearchOrderEntry("$py.class", EnumSet.of(EntryType.IS_BYTECODE)), - new SearchOrderEntry(".py", EnumSet.of(EntryType.IS_SOURCE)),}; + new SearchOrderEntry(getSeparator() + "__init__$py.class", + EnumSet.of(EntryType.IS_PACKAGE, EntryType.IS_BYTECODE)), + new SearchOrderEntry(getSeparator() + "__init__.py", + EnumSet.of(EntryType.IS_PACKAGE, EntryType.IS_SOURCE)), + new SearchOrderEntry("$py.class", EnumSet.of(EntryType.IS_BYTECODE)), + new SearchOrderEntry(".py", EnumSet.of(EntryType.IS_SOURCE)),}; } protected final PyObject importer_find_module(String fullname, String path) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |