Re: [IronPython] Implicit line joining error of PythonEngine

2007-06-10 Thread Martin Maly
bject: [IronPython] Implicit line joining error of PythonEngine Hello all, I am using IronPython 1.1 I encounterd an error in implicit line joining of PythonEngine. The source is lines = ['x = [1,2,3,', '4]'] from IronPython.Hosting import PythonEngine engine = PythonE

[IronPython] Implicit line joining error of PythonEngine

2007-06-10 Thread HEMMI, Shigeru
Hello all, I am using IronPython 1.1 I encounterd an error in implicit line joining of PythonEngine. The source is lines = ['x = [1,2,3,', '4]'] from IronPython.Hosting import PythonEngine engine = PythonEngine() for line in lines: engine.Execute(line) Thanks.