From 628339807e76d075a610aa6dd963e702ef25afc8 Mon Sep 17 00:00:00 2001 From: "Kurt B. Kaiser" Date: Wed, 18 Sep 2002 17:07:05 +0000 Subject: [PATCH] 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(-) 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 -- 2.49.0