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]]
>>>
_______________________________________________
users mailing list
[email protected]
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to