summaryrefslogtreecommitdiffstats
path: root/Lib/code.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/code.py')
-rw-r--r--Lib/code.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/code.py b/Lib/code.py
index 2e3ee11..3b39d1b 100644
--- a/Lib/code.py
+++ b/Lib/code.py
@@ -306,6 +306,5 @@ def interact(banner=None, readfunc=None, local=None):
console.interact(banner)
-if __name__ == '__main__':
- import pdb
- pdb.run("interact()\n")
+if __name__ == "__main__":
+ interact()