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 gvanrossum
Date 2013-08-04.16:55:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1375635325.22.0.0227611021818.issue18656@psf.upfronthosting.co.za>
In-reply-to
Content
In Python 3.2 and earlier:

>>> def f(): pass
...
>>> f.__name__ = 'g'
>>> f
<function g at 0x100487628>

However in Python 3.3 and later, the last line shows 'f' instead of 'g'.
History
Date User Action Args
2013-08-04 16:55:25gvanrossumsetrecipients: + gvanrossum
2013-08-04 16:55:25gvanrossumsetmessageid: <1375635325.22.0.0227611021818.issue18656@psf.upfronthosting.co.za>
2013-08-04 16:55:25gvanrossumlinkissue18656 messages
2013-08-04 16:55:25gvanrossumcreate