diff options
Diffstat (limited to 'Lib/code.py')
-rw-r--r-- | Lib/code.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/code.py b/Lib/code.py index 75c64e6..6bdc658 100644 --- a/Lib/code.py +++ b/Lib/code.py @@ -303,4 +303,5 @@ def interact(banner=None, readfunc=None, local=None): if __name__ == '__main__': - interact() + import pdb + pdb.run("interact()\n") |