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 phil.tgd
Recipients phil.tgd
Date 2021-06-12.20:53:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1623531192.89.0.502203464734.issue44404@roundup.psfhosted.org>
In-reply-to
Content
```
>>> import tkinter
>>> from functools import partial
>>> r=tkinter.Tk()
>>> r.after(500, partial(print, "lol"))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python3.7/tkinter/__init__.py", line 755, in after
    callit.__name__ = func.__name__
AttributeError: 'functools.partial' object has no attribute '__name__'
```
History
Date User Action Args
2021-06-12 20:53:12phil.tgdsetrecipients: + phil.tgd
2021-06-12 20:53:12phil.tgdsetmessageid: <1623531192.89.0.502203464734.issue44404@roundup.psfhosted.org>
2021-06-12 20:53:12phil.tgdlinkissue44404 messages
2021-06-12 20:53:12phil.tgdcreate