summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2007-08-10 19:45:35 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2007-08-10 19:45:35 (GMT)
commit6ae6ba09ea30bbb85d8a6d10bc495378ac40cfa4 (patch)
tree9cb6f699dcc44fa86634d4a748482e53cf771dfe /Lib
parente9fb515d4679f5534d95cc7e277e796b4a25c0d4 (diff)
downloadcpython-6ae6ba09ea30bbb85d8a6d10bc495378ac40cfa4.zip
cpython-6ae6ba09ea30bbb85d8a6d10bc495378ac40cfa4.tar.gz
cpython-6ae6ba09ea30bbb85d8a6d10bc495378ac40cfa4.tar.bz2
Remove the None tag from tagdefs dict for now, appears inoperative and
causes a _tkinter error in py3k.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/idlelib/PyShell.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py
index f8c73ee..90c837c 100644
--- a/Lib/idlelib/PyShell.py
+++ b/Lib/idlelib/PyShell.py
@@ -296,7 +296,9 @@ class ModifiedColorDelegator(ColorDelegator):
"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):