Alexandre Vassalotti added the comment:

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'

----------
status: closed -> open

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

Reply via email to