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 remi.lapeyre
Recipients remi.lapeyre
Date 2019-03-18.15:16:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1552922208.92.0.691129185173.issue36350@roundup.psfhosted.org>
In-reply-to
Content
Python 3.7.2 (default, Feb 12 2019, 08:15:36) 
[Clang 10.0.0 (clang-1000.11.45.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import inspect
>>> inspect.Signature().parameters
mappingproxy(OrderedDict())
>>> def foo(a): pass
... 
>>> ba = inspect.signature(foo).bind(1)
>>> ba.arguments
OrderedDict([('a', 1)])
History
Date User Action Args
2019-03-18 15:16:48remi.lapeyresetrecipients: + remi.lapeyre
2019-03-18 15:16:48remi.lapeyresetmessageid: <1552922208.92.0.691129185173.issue36350@roundup.psfhosted.org>
2019-03-18 15:16:48remi.lapeyrelinkissue36350 messages
2019-03-18 15:16:48remi.lapeyrecreate