From: <fwi...@us...> - 2009-02-09 02:22:13
|
Revision: 6023 http://jython.svn.sourceforge.net/jython/?rev=6023&view=rev Author: fwierzbicki Date: 2009-02-09 01:40:53 +0000 (Mon, 09 Feb 2009) Log Message: ----------- Fix for http://bugs.jython.org/issue1243. Thanks RJ Ryan for suggesting the fix. Modified Paths: -------------- trunk/jython/src/org/python/core/Py.java Modified: trunk/jython/src/org/python/core/Py.java =================================================================== --- trunk/jython/src/org/python/core/Py.java 2009-02-07 21:26:31 UTC (rev 6022) +++ trunk/jython/src/org/python/core/Py.java 2009-02-09 01:40:53 UTC (rev 6023) @@ -1623,7 +1623,7 @@ // w/o compiler-flags public static PyObject compile(InputStream istream, String filename, String kind) { - return compile_flags(istream, filename, kind, null); + return compile_flags(istream, filename, kind, new CompilerFlags()); } /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |