Message338238
| 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:48 | remi.lapeyre | set | recipients: + remi.lapeyre |
| 2019-03-18 15:16:48 | remi.lapeyre | set | messageid: <1552922208.92.0.691129185173.issue36350@roundup.psfhosted.org> |
| 2019-03-18 15:16:48 | remi.lapeyre | link | issue36350 messages |
| 2019-03-18 15:16:48 | remi.lapeyre | create | |