summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2002-09-18 17:07:05 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2002-09-18 17:07:05 (GMT)
commit628339807e76d075a610aa6dd963e702ef25afc8 (patch)
treee0125b307a6d3f8ffae5a438eeab6f881c9c94a5 /Lib/idlelib
parenta989ac44ea3a5b314ae5666905aca46ec22efab6 (diff)
downloadcpython-628339807e76d075a610aa6dd963e702ef25afc8.zip
cpython-628339807e76d075a610aa6dd963e702ef25afc8.tar.gz
cpython-628339807e76d075a610aa6dd963e702ef25afc8.tar.bz2
Merge Py Idle changes:
Missed adding "import types" while merging PyShell by hand....
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/PyShell.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py
index 7ce5244..29ebd92 100644
--- a/Lib/idlelib/PyShell.py
+++ b/Lib/idlelib/PyShell.py
@@ -7,8 +7,9 @@ import getopt
import re
import socket
import time
-import warnings
import traceback
+import types
+import warnings
import linecache
from code import InteractiveInterpreter