Index: C:/Documents and Settings/Teresa/workspace/jyhton/src/org/python/util/InteractiveInterpreter.java =================================================================== --- C:/Documents and Settings/Teresa/workspace/jyhton/src/org/python/util/InteractiveInterpreter.java (revision 3122) +++ C:/Documents and Settings/Teresa/workspace/jyhton/src/org/python/util/InteractiveInterpreter.java (working copy) @@ -6,13 +6,16 @@ public class InteractiveInterpreter extends PythonInterpreter { public InteractiveInterpreter() { - super(); - cflags = new CompilerFlags(); + this(null, null); } public InteractiveInterpreter(PyObject locals) { - super(locals); - cflags = new CompilerFlags(); + this(locals, null); + } + public InteractiveInterpreter(PyObject locals, PySystemState systemState) { + super(locals, systemState); + cflags = new CompilerFlags(); + } /** * Compile and run some source in the interpreter.