[Python-3000-checkins] r56908 - python/branches/py3k/Lib/idlelib/PyShell.py

kurt.kaiser python-3000-checkins at python.org
Fri Aug 10 21:45:35 CEST 2007


Author: kurt.kaiser
Date: Fri Aug 10 21:45:35 2007
New Revision: 56908

Modified:
   python/branches/py3k/Lib/idlelib/PyShell.py
Log:
Remove the None tag from tagdefs dict for now, appears inoperative and
causes a _tkinter error in py3k.


Modified: python/branches/py3k/Lib/idlelib/PyShell.py
==============================================================================
--- python/branches/py3k/Lib/idlelib/PyShell.py	(original)
+++ python/branches/py3k/Lib/idlelib/PyShell.py	Fri Aug 10 21:45:35 2007
@@ -296,7 +296,9 @@
             "stdout": idleConf.GetHighlight(theme, "stdout"),
             "stderr": idleConf.GetHighlight(theme, "stderr"),
             "console": idleConf.GetHighlight(theme, "console"),
-            None: idleConf.GetHighlight(theme, "normal"),
+            ### KBK 10Aug07: None tag doesn't seem to serve a purpose and
+            ### breaks in py3k.  Comment out for now.
+            #None: idleConf.GetHighlight(theme, "normal"),
         })
 
 class ModifiedUndoDelegator(UndoDelegator):


More information about the Python-3000-checkins mailing list