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 alexandre.vassalotti
Recipients Arfrever, alexandre.vassalotti, benjamin.peterson, pitrou, python-dev
Date 2013-10-20.20:51:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382302267.83.0.890710724475.issue19301@psf.upfronthosting.co.za>
In-reply-to
Content
It seems that we are missing support for nested globals:

>>> def f():
...   global C
...   class C:
...     class D:
...       pass
...
>>> f()
>>> C.D.__qualname__
'f.<locals>.C.D'
History
Date User Action Args
2013-10-20 20:51:07alexandre.vassalottisetrecipients: + alexandre.vassalotti, pitrou, benjamin.peterson, Arfrever, python-dev
2013-10-20 20:51:07alexandre.vassalottisetmessageid: <1382302267.83.0.890710724475.issue19301@psf.upfronthosting.co.za>
2013-10-20 20:51:07alexandre.vassalottilinkissue19301 messages
2013-10-20 20:51:07alexandre.vassalotticreate