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
01f8bcf9
Commit
01f8bcf9
authored
Jan 17, 2015
by
Ned Deily
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #23180: Rename IDLE "Windows" menu item to "Window".
Patch by Al Sweigart.
parent
7499d286
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
11 deletions
+9
-11
Doc/library/idle.rst
Doc/library/idle.rst
+2
-2
Lib/idlelib/EditorWindow.py
Lib/idlelib/EditorWindow.py
+1
-4
Lib/idlelib/PyShell.py
Lib/idlelib/PyShell.py
+1
-4
Lib/idlelib/help.txt
Lib/idlelib/help.txt
+1
-1
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Doc/library/idle.rst
View file @
01f8bcf9
...
@@ -258,8 +258,8 @@ Code Context (toggle)(Editor Window only)
...
@@ -258,8 +258,8 @@ Code Context (toggle)(Editor Window only)
Open a pane at the top of the edit window which shows the block context
Open a pane at the top of the edit window which shows the block context
of the code which has scrolled above the top of the window.
of the code which has scrolled above the top of the window.
Window
s
menu (Shell and Editor)
Window menu (Shell and Editor)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Zoom Height
Zoom Height
Toggles the window between normal size and maximum height. The initial size
Toggles the window between normal size and maximum height. The initial size
...
...
Lib/idlelib/EditorWindow.py
View file @
01f8bcf9
...
@@ -469,13 +469,10 @@ class EditorWindow(object):
...
@@ -469,13 +469,10 @@ class EditorWindow(object):
(
"format"
,
"F_ormat"
),
(
"format"
,
"F_ormat"
),
(
"run"
,
"_Run"
),
(
"run"
,
"_Run"
),
(
"options"
,
"_Options"
),
(
"options"
,
"_Options"
),
(
"windows"
,
"_Window
s
"
),
(
"windows"
,
"_Window"
),
(
"help"
,
"_Help"
),
(
"help"
,
"_Help"
),
]
]
if
sys
.
platform
==
"darwin"
:
menu_specs
[
-
2
]
=
(
"windows"
,
"_Window"
)
def
createmenubar
(
self
):
def
createmenubar
(
self
):
mbar
=
self
.
menubar
mbar
=
self
.
menubar
...
...
Lib/idlelib/PyShell.py
View file @
01f8bcf9
...
@@ -871,13 +871,10 @@ class PyShell(OutputWindow):
...
@@ -871,13 +871,10 @@ class PyShell(OutputWindow):
(
"edit"
,
"_Edit"
),
(
"edit"
,
"_Edit"
),
(
"debug"
,
"_Debug"
),
(
"debug"
,
"_Debug"
),
(
"options"
,
"_Options"
),
(
"options"
,
"_Options"
),
(
"windows"
,
"_Window
s
"
),
(
"windows"
,
"_Window"
),
(
"help"
,
"_Help"
),
(
"help"
,
"_Help"
),
]
]
if
sys
.
platform
==
"darwin"
:
menu_specs
[
-
2
]
=
(
"windows"
,
"_Window"
)
# New classes
# New classes
from
idlelib.IdleHistory
import
History
from
idlelib.IdleHistory
import
History
...
...
Lib/idlelib/help.txt
View file @
01f8bcf9
...
@@ -100,7 +100,7 @@ Options Menu:
...
@@ -100,7 +100,7 @@ Options Menu:
which is scrolling off the top or the window.
which is scrolling off the top or the window.
(Not present in Shell window.)
(Not present in Shell window.)
Window
s
Menu:
Window Menu:
Zoom Height -- toggles the window between configured size
Zoom Height -- toggles the window between configured size
and maximum height.
and maximum height.
...
...
Misc/ACKS
View file @
01f8bcf9
...
@@ -1310,6 +1310,7 @@ Hisao Suzuki
...
@@ -1310,6 +1310,7 @@ Hisao Suzuki
Kalle Svensson
Kalle Svensson
Andrew Svetlov
Andrew Svetlov
Paul Swartz
Paul Swartz
Al Sweigart
Thenault Sylvain
Thenault Sylvain
Péter Szabó
Péter Szabó
John Szakmeister
John Szakmeister
...
...
Misc/NEWS
View file @
01f8bcf9
...
@@ -86,6 +86,9 @@ IDLE
...
@@ -86,6 +86,9 @@ IDLE
-
Issue
#
16893
:
Update
Idle
doc
chapter
to
match
current
Idle
and
add
new
-
Issue
#
16893
:
Update
Idle
doc
chapter
to
match
current
Idle
and
add
new
information
.
information
.
-
Issue
#
23180
:
Rename
IDLE
"Windows"
menu
item
to
"Window"
.
Patch
by
Al
Sweigart
.
Build
Build
-----
-----
...
...
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