STINNER Victor added the comment:

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>

----------
nosy: +haypo

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

Reply via email to