[IronPython] Implicit line joining error of ipy.exe interactive session.

Dino Viehland dinov at exchange.microsoft.com
Thu Sep 21 17:48:44 CEST 2006


Thanks for the bug report.  I've opened CodePlex bug #3530 to track this (http://www.codeplex.com/WorkItem/View.aspx?ProjectName=IronPython&WorkItemId=3530)

________________________________________
From: users-bounces at lists.ironpython.com On Behalf Of HEMMI, Shigeru
Sent: Thursday, September 21, 2006 3:06 AM
To: Discussion of IronPython
Subject: [IronPython] Implicit line joining error of ipy.exe interactive        session.

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
users at lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com



More information about the Ironpython-users mailing list