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 lukasz.langa
Recipients larry, lukasz.langa, mark.dickinson
Date 2021-11-06.19:08:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1636225684.1.0.488074298529.issue45392@roundup.psfhosted.org>
In-reply-to
Content
It's unclear what the original comment was about. BPO-20189 is somewhat cryptic to me too. `inspect.signature` never supported `type`, `round`, `int`, and so on. I checked 3.4.10 and 3.5.10 and in each case it looks like this:

>>> inspect.signature(type)
Traceback (most recent call last):
...
ValueError: no signature found for builtin <class 'type'>


In fact, there's open issues on that, like BPO-44618.
History
Date User Action Args
2021-11-06 19:08:04lukasz.langasetrecipients: + lukasz.langa, mark.dickinson, larry
2021-11-06 19:08:04lukasz.langasetmessageid: <1636225684.1.0.488074298529.issue45392@roundup.psfhosted.org>
2021-11-06 19:08:04lukasz.langalinkissue45392 messages
2021-11-06 19:08:03lukasz.langacreate