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 vstinner
Recipients gvanrossum, jcea, mark.dickinson, pitrou, vstinner
Date 2013-08-04.17:12:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1375636328.82.0.550513315433.issue18656@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.4.0a0 (default:62658d9d8926+, Aug  1 2013, 23:05:18) 
[GCC 4.4.1 20090725 (Red Hat 4.4.1-2)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> def func(): pass
... 
>>> func
<function func at 0xb7698a54>

>>> func.__qualname__="PEP 3155"
>>> func
<function PEP 3155 at 0xb7698a54>
History
Date User Action Args
2013-08-04 17:12:08vstinnersetrecipients: + vstinner, gvanrossum, jcea, mark.dickinson, pitrou
2013-08-04 17:12:08vstinnersetmessageid: <1375636328.82.0.550513315433.issue18656@psf.upfronthosting.co.za>
2013-08-04 17:12:08vstinnerlinkissue18656 messages
2013-08-04 17:12:08vstinnercreate