Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
cpython
Commits
7f0882c9
Commit
7f0882c9
authored
11 years ago
by
Ned Deily
Browse files
Options
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
This diff is collapsed.
Click to expand it.
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"
)
...
...
This diff is collapsed.
Click to expand it.
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"
)
...
...
This diff is collapsed.
Click to expand it.
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
...
...
This diff is collapsed.
Click to expand it.
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
-----
...
...
This diff is collapsed.
Click to expand it.
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