diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2002-09-18 17:07:05 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2002-09-18 17:07:05 (GMT) |
commit | 628339807e76d075a610aa6dd963e702ef25afc8 (patch) | |
tree | e0125b307a6d3f8ffae5a438eeab6f881c9c94a5 /Lib/idlelib | |
parent | a989ac44ea3a5b314ae5666905aca46ec22efab6 (diff) | |
download | cpython-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.py | 3 |
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 |