Barry A. Warsaw added the comment:

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.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19888>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to