From 15a51e3c21efec5546ebb3249b48fa8aa591ea76 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 25 May 2008 07:17:27 +0000 Subject: [PATCH] Fix Queue -> queue. --- Lib/idlelib/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py index 355f85359a..c9f5010211 100644 --- a/Lib/idlelib/run.py +++ b/Lib/idlelib/run.py @@ -151,7 +151,7 @@ def print_exception(): sys.last_type, sys.last_value, sys.last_traceback = excinfo tbe = traceback.extract_tb(tb) print('Traceback (most recent call last):', file=efile) - exclude = ("run.py", "rpc.py", "threading.py", "Queue.py", + exclude = ("run.py", "rpc.py", "threading.py", "queue.py", "RemoteDebugger.py", "bdb.py") cleanup_traceback(tbe, exclude) traceback.print_list(tbe, file=efile) -- 2.40.0