This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author taicki
Recipients brett.cannon, taicki
Date 2008-03-18.00:59:56
SpamBayes Score 0.11140896
Marked as misclassified No
Message-id <1205801997.95.0.565279219435.issue2344@psf.upfronthosting.co.za>
In-reply-to
Content
>>> i = 3
>>> [i for i in range(10)]
>>> i
9

In 2.6, the original value of a variable is changed by the list
comprehension. In 3.0, it is not. To fix this, we need many changes on AST.
History
Date User Action Args
2008-03-18 00:59:58taickisetspambayes_score: 0.111409 -> 0.11140896
recipients: + taicki, brett.cannon
2008-03-18 00:59:57taickisetspambayes_score: 0.111409 -> 0.111409
messageid: <1205801997.95.0.565279219435.issue2344@psf.upfronthosting.co.za>
2008-03-18 00:59:57taickilinkissue2344 messages
2008-03-18 00:59:57taickicreate