Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8a78cadf
Commit
8a78cadf
authored
Dec 13, 2007
by
Kurt B. Kaiser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Shell was not colorizing due to bug introduced at r57998, Bug 1586.
parent
f4d4f8b9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
Lib/idlelib/NEWS.txt
Lib/idlelib/NEWS.txt
+15
-2
Lib/idlelib/PyShell.py
Lib/idlelib/PyShell.py
+2
-0
No files found.
Lib/idlelib/NEWS.txt
View file @
8a78cadf
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.0
a1
*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.
...
...
Lib/idlelib/PyShell.py
View file @
8a78cadf
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment