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, ncoghlan, pitrou, zkrynicki
Date 2013-12-06.01:17:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386292677.74.0.0352617369037.issue19888@psf.upfronthosting.co.za>
In-reply-to
Content
I don't see the value in opening a new bug.  Now that we understand what's going on, let's just repurpose and retitle this one.

Run qualname-19888.py with Python 3.3 and you'll get:

Obj.__name__ foo
Obj.__qualname__ Obj
repr(Obj) <class '__main__.Obj'>

And with 3.2:

Obj.__name__ foo
repr(Obj) <class '__main__.foo'>

The primary discrepancy (and relevant visible regression) is in the repr of Obj.
History
Date User Action Args
2013-12-06 01:17:57barrysetrecipients: + barry, ncoghlan, pitrou, zkrynicki
2013-12-06 01:17:57barrysetmessageid: <1386292677.74.0.0352617369037.issue19888@psf.upfronthosting.co.za>
2013-12-06 01:17:57barrylinkissue19888 messages
2013-12-06 01:17:56barrycreate