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.

classification
Title: pdb runcall should accept keyword arguments
Type: Stage:
Components: Library (Lib) Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: leorochael, rhettinger
Priority: normal Keywords:

Created on 2004-10-22 21:50 by leorochael, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg22831 - (view) Author: Leonardo Rochael Almeida (leorochael) Date: 2004-10-22 21:50
pdb.runcall(), pdb.Pdb.runcall() and bdb.Bdb.runcall()
could all accept keyword arguments to pass them to the
debugged callable.

The implementation seems trivial, just add "**kw" on
the signatures and invocations all the way thru the
actual call to the callable.

I verified this on Python 2.3.4. No idea if the bug is
also on 2.4 betas
msg22832 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2004-10-24 00:36
Logged In: YES 
user_id=80475

Fixed.
See:
    Lib/pdb.py 1.72
    Lib/bdb.py 1.46
History
Date User Action Args
2022-04-11 14:56:07adminsetgithub: 41065
2004-10-22 21:50:12leorochaelcreate