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 gelbpunkt
Recipients gelbpunkt
Date 2020-03-13.19:27:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1584127649.34.0.992766909919.issue39957@roundup.psfhosted.org>
In-reply-to
Content
Just to show the types are inequal:

Without patch file:

    >>> inspect.signature(lambda x: None).parameters
    mappingproxy({'x': <Parameter "x">})

With patch file:

    >>> inspect.signature(lambda x: None).parameters
    mappingproxy(OrderedDict([('x', <Parameter "x">)]))
History
Date User Action Args
2020-03-13 19:27:29gelbpunktsetrecipients: + gelbpunkt
2020-03-13 19:27:29gelbpunktsetmessageid: <1584127649.34.0.992766909919.issue39957@roundup.psfhosted.org>
2020-03-13 19:27:29gelbpunktlinkissue39957 messages
2020-03-13 19:27:29gelbpunktcreate