From: Kurt B. Kaiser Date: Wed, 18 Sep 2002 17:07:05 +0000 (+0000) Subject: Merge Py Idle changes: X-Git-Tag: v2.3c1~4026 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=628339807e76d075a610aa6dd963e702ef25afc8;p=python Merge Py Idle changes: Missed adding "import types" while merging PyShell by hand.... --- diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 7ce5244104..29ebd929a8 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