summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/macosx.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2018-11-15 18:15:13 (GMT)
committerGitHub <noreply@github.com>2018-11-15 18:15:13 (GMT)
commitb65413b497a07f521d835b799be7dd0afcedbd65 (patch)
tree485178060d091834da5ced196584e358a1b6844f /Lib/idlelib/macosx.py
parent70f61b933f5f4bbb28d2c1a2ebf3a555513e67b0 (diff)
downloadcpython-b65413b497a07f521d835b799be7dd0afcedbd65.zip
cpython-b65413b497a07f521d835b799be7dd0afcedbd65.tar.gz
cpython-b65413b497a07f521d835b799be7dd0afcedbd65.tar.bz2
bpo-35213: Where appropriate, use 'macOS' in idlelib. (#10478)
Diffstat (limited to 'Lib/idlelib/macosx.py')
-rw-r--r--Lib/idlelib/macosx.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/macosx.py b/Lib/idlelib/macosx.py
index d3ae224..8f8484a 100644
--- a/Lib/idlelib/macosx.py
+++ b/Lib/idlelib/macosx.py
@@ -1,5 +1,5 @@
"""
-A number of functions that enhance IDLE on Mac OSX.
+A number of functions that enhance IDLE on macOS.
"""
from sys import platform # Used in _init_tk_type, changed by test.
@@ -192,7 +192,7 @@ def overrideRootMenu(root, flist):
root.bind('<<close-all-windows>>', flist.close_all_callback)
# The binding above doesn't reliably work on all versions of Tk
- # on MacOSX. Adding command definition below does seem to do the
+ # on macOS. Adding command definition below does seem to do the
# right thing for now.
root.createcommand('exit', flist.close_all_callback)