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 gvanrossum
Recipients
Date 2002-11-05.17:56:34
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The __name__ attribute of a nested class should be set
to 'outer.inner', both for classic and for new-style
classes. E.g.

>>> class C:
...     class C1: pass
... 
>>> C.C1.__name__
'C.C1'
>>> 
History
Date User Action Args
2007-08-23 14:07:55adminlinkissue633930 messages
2007-08-23 14:07:55admincreate