[IronPython] Implicit line joining error of ipy.exe interactive session.
HEMMI, Shigeru
textdirected at gmail.com
Thu Sep 21 12:06:12 CEST 2006
Hello,
In interactive ipy.exe session, implicit line joining causes an error
if a datum structure has both list and dictionary at the same time.
IronPython 1.0.60816 on .NET 2.0.50727.42
Copyright (c) Microsoft Corporation. All rights reserved.
>>> x = [{"a":0, "b":1},[2,3,4,5]]
>>> x = [{"a":0,
Traceback (most recent call last):
SyntaxError: unexpected token <eof> (<stdin>, line 1)
>>>
Python 2.4.3 (#69, Mar 29 2006, 17:35:34) [MSC v.1310 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> x = [{"a":0, "b":1},[2,3,4,5]]
>>> x = [{"a":0,
... "b":1},[2,3,4,5]]
>>>
More information about the Ironpython-users
mailing list