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
42a83201
Commit
42a83201
authored
Mar 30, 2013
by
Terry Jan Reedy
Browse files
Options
Browse Files
Download
Plain Diff
Merge from 3.3: Issue #17390
parents
5cbf3a0d
32622236
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
Lib/idlelib/NEWS.txt
Lib/idlelib/NEWS.txt
+3
-0
Lib/idlelib/PyShell.py
Lib/idlelib/PyShell.py
+2
-1
No files found.
Lib/idlelib/NEWS.txt
View file @
42a83201
What's New in IDLE 3.4.0?
=========================
- Issue #17390: Display Python version on Idle title bar.
Initial patch by Edmond Burnett.
- Issue #5066: Update IDLE docs. Patch by Todd Rovito.
- Issue #16226: Fix IDLE Path Browser crash.
...
...
Lib/idlelib/PyShell.py
View file @
42a83201
...
...
@@ -16,6 +16,7 @@ import io
import
linecache
from
code
import
InteractiveInterpreter
from
platform
import
python_version
try
:
from
tkinter
import
*
...
...
@@ -799,7 +800,7 @@ class ModifiedInterpreter(InteractiveInterpreter):
class
PyShell
(
OutputWindow
):
shell_title
=
"Python Shell"
shell_title
=
"Python
"
+
python_version
()
+
"
Shell"
# Override classes
ColorDelegator
=
ModifiedColorDelegator
...
...
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