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
7f0882c9
Commit
7f0882c9
authored
May 22, 2013
by
Ned Deily
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #17532: Always include Options menu for IDLE on OS X.
Patch by Guilherme Simões.
parent
67246127
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
2 deletions
+8
-2
Lib/idlelib/Bindings.py
Lib/idlelib/Bindings.py
+4
-0
Lib/idlelib/EditorWindow.py
Lib/idlelib/EditorWindow.py
+0
-1
Lib/idlelib/PyShell.py
Lib/idlelib/PyShell.py
+0
-1
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/idlelib/Bindings.py
View file @
7f0882c9
...
...
@@ -98,6 +98,10 @@ if macosxSupport.runningAsOSXApp():
# menu
del
menudefs
[
-
1
][
1
][
0
:
2
]
# Remove the 'Configure' entry from the options menu, it is in the
# application menu as 'Preferences'
del
menudefs
[
-
2
][
1
][
0
:
2
]
default_keydefs
=
idleConf
.
GetCurrentKeySet
()
del
sys
Lib/idlelib/EditorWindow.py
View file @
7f0882c9
...
...
@@ -463,7 +463,6 @@ class EditorWindow(object):
]
if
macosxSupport
.
runningAsOSXApp
():
del
menu_specs
[
-
3
]
menu_specs
[
-
2
]
=
(
"windows"
,
"_Window"
)
...
...
Lib/idlelib/PyShell.py
View file @
7f0882c9
...
...
@@ -822,7 +822,6 @@ class PyShell(OutputWindow):
]
if
macosxSupport
.
runningAsOSXApp
():
del
menu_specs
[
-
3
]
menu_specs
[
-
2
]
=
(
"windows"
,
"_Window"
)
...
...
Misc/ACKS
View file @
7f0882c9
...
...
@@ -1130,6 +1130,7 @@ Michael Simcich
Ionel Simionescu
Kirill Simonov
Nathan Paul Simons
Guilherme Simões
Adam Simpkins
Ravi Sinha
Janne Sinkkonen
...
...
Misc/NEWS
View file @
7f0882c9
...
...
@@ -45,6 +45,9 @@ IDLE
- Issue #14146: Highlight source line while debugging on Windows.
- Issue #17532: Always include Options menu for IDLE on OS X.
Patch by Guilherme Simões.
Tests
-----
...
...
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