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 blueyed
Recipients blueyed
Date 2019-05-19.22:55:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1558306508.25.0.885142931529.issue36969@roundup.psfhosted.org>
In-reply-to
Content
With a program like the following, `args` will not display the keyword-only argument:

```
def f1(arg=None, *, kwonly=None):
    __import__('pdb').set_trace()


f1()
```

```
(Pdb) args
arg = 'arg'
kw = 'kw'
```

Related code:
https://github.com/python/cpython/blob/5c08ce9bf712acbb3f05a3a57baf51fcb534cdf0/Lib/pdb.py#L1129-L1144
History
Date User Action Args
2019-05-19 22:55:08blueyedsetrecipients: + blueyed
2019-05-19 22:55:08blueyedsetmessageid: <1558306508.25.0.885142931529.issue36969@roundup.psfhosted.org>
2019-05-19 22:55:08blueyedlinkissue36969 messages
2019-05-19 22:55:08blueyedcreate