]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Shell was not colorizing due to bug introduced at r57998, Bug 1586.
authorKurt B. Kaiser <kbk@shore.net>
Thu, 13 Dec 2007 03:38:16 +0000 (03:38 +0000)
committerKurt B. Kaiser <kbk@shore.net>
Thu, 13 Dec 2007 03:38:16 +0000 (03:38 +0000)
Lib/idlelib/NEWS.txt
Lib/idlelib/PyShell.py

index 09661527076eabae86df01a211b93346d1884a87..d340e66cd408ea6896558675cd359762ca4f94c3 100644 (file)
@@ -1,7 +1,20 @@
+What's New in IDLE 3.0a3?
+=========================
+
+*Release date: XX-XXX-200X*
+
+- CodeContext was not importing.
+
+- Corrected two 3.0 compatibility errors reported by Mark Summerfield:
+  http://mail.python.org/pipermail/python-3000/2007-December/011491.html
+
+- Shell was not colorizing due to bug introduced at r57998,  Bug 1586.
+
+
 What's New in IDLE 3.0a2?
 =========================
 
-*Release date: XX-XXX-2007*
+*Release date: 06-Dec-2007*
 
 - Windows EOL sequence not converted correctly, encoding error.
   Caused file save to fail. Bug 1130.
@@ -28,7 +41,7 @@ What's New in IDLE 3.0a1?
 What's New in IDLE 2.6a1?
 =========================
 
-*Release date: XX-XXX-200X*  UNRELEASED, but merged into 3.0a1
+*Release date: XX-XXX-200X*  UNRELEASED, but merged into 3.0
 
 - tabpage.py updated: tabbedPages.py now supports multiple dynamic rows
   of tabs.  Patch 1612746 Tal Einat.
index 097818f4dcadeb68125155b8b91ca11d1cb7bb07..9962894d4d054d137bd1593e6782408394b62baa 100644 (file)
@@ -811,6 +811,8 @@ class PyShell(OutputWindow):
         text.bind("<<open-stack-viewer>>", self.open_stack_viewer)
         text.bind("<<toggle-debugger>>", self.toggle_debugger)
         text.bind("<<toggle-jit-stack-viewer>>", self.toggle_jit_stack_viewer)
+        self.color = color = self.ColorDelegator()
+        self.per.insertfilter(color)
         if use_subprocess:
             text.bind("<<view-restart>>", self.view_restart_mark)
             text.bind("<<restart-shell>>", self.restart_shell)