[Python-3000-checkins] r63602 - python/branches/py3k/Lib/idlelib/run.py

georg.brandl python-3000-checkins at python.org
Sun May 25 09:17:27 CEST 2008


Author: georg.brandl
Date: Sun May 25 09:17:27 2008
New Revision: 63602

Log:
Fix Queue -> queue.


Modified:
   python/branches/py3k/Lib/idlelib/run.py

Modified: python/branches/py3k/Lib/idlelib/run.py
==============================================================================
--- python/branches/py3k/Lib/idlelib/run.py	(original)
+++ python/branches/py3k/Lib/idlelib/run.py	Sun May 25 09:17:27 2008
@@ -151,7 +151,7 @@
     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)


More information about the Python-3000-checkins mailing list