From 628339807e76d075a610aa6dd963e702ef25afc8 Mon Sep 17 00:00:00 2001 From: "Kurt B. Kaiser" Date: Wed, 18 Sep 2002 17:07:05 +0000 Subject: Merge Py Idle changes: Missed adding "import types" while merging PyShell by hand.... --- Lib/idlelib/PyShell.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Lib/idlelib/PyShell.py') diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 7ce52441040..29ebd929a84 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 -- cgit v1.2.3