From: <pj...@us...> - 2008-12-14 02:04:57
|
Revision: 5758 http://jython.svn.sourceforge.net/jython/?rev=5758&view=rev Author: pjenvey Date: 2008-12-14 02:04:52 +0000 (Sun, 14 Dec 2008) Log Message: ----------- fix the new __future__s not working in the REPL Modified Paths: -------------- trunk/jython/src/org/python/compiler/Future.java Modified: trunk/jython/src/org/python/compiler/Future.java =================================================================== --- trunk/jython/src/org/python/compiler/Future.java 2008-12-14 01:47:15 UTC (rev 5757) +++ trunk/jython/src/org/python/compiler/Future.java 2008-12-14 02:04:52 UTC (rev 5758) @@ -68,6 +68,8 @@ { if (cflags != null) { division = cflags.division; + with_statement = cflags.with_statement; + absolute_import = cflags.absolute_import; } int beg = 0; List<stmt> suite = null; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |