mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Get rid of many apply() calls.
This commit is contained in:
parent
f389c77273
commit
68468eba63
38 changed files with 85 additions and 91 deletions
|
@ -948,7 +948,7 @@ def runctx(statement, globals, locals):
|
|||
run(statement, globals, locals)
|
||||
|
||||
def runcall(*args):
|
||||
return apply(Pdb().runcall, args)
|
||||
return Pdb().runcall(*args)
|
||||
|
||||
def set_trace():
|
||||
Pdb().set_trace()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue