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 pablogsal
Recipients blueyed, pablogsal
Date 2019-05-20.22:08:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1558390122.79.0.206828422263.issue36969@roundup.psfhosted.org>
In-reply-to
Content
Notice that pdb also does not handle correctly PEP570:

def f1(x,/,arg=None, *, kwonly=None):
    breakpoint()

f1(3)
-> breakpoint()
(Pdb) args
x = 3
History
Date User Action Args
2019-05-20 22:08:42pablogsalsetrecipients: + pablogsal, blueyed
2019-05-20 22:08:42pablogsalsetmessageid: <1558390122.79.0.206828422263.issue36969@roundup.psfhosted.org>
2019-05-20 22:08:42pablogsallinkissue36969 messages
2019-05-20 22:08:42pablogsalcreate