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 barry
Recipients barry, zkrynicki
Date 2013-12-04.22:08:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386194902.46.0.58895556582.issue19888@psf.upfronthosting.co.za>
In-reply-to
Content
Note that just iterating over namespace doesn't trigger the problem, e.g. instead of 

    for name, value in namespace.items(): pass

using

    list(namespace.items())

seems to work.
History
Date User Action Args
2013-12-04 22:08:22barrysetrecipients: + barry, zkrynicki
2013-12-04 22:08:22barrysetmessageid: <1386194902.46.0.58895556582.issue19888@psf.upfronthosting.co.za>
2013-12-04 22:08:22barrylinkissue19888 messages
2013-12-04 22:08:22barrycreate