summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2023-05-17 22:35:46 -0400
committerGitHub <noreply@github.com>2023-05-18 02:35:46 +0000
commitc5b670efd1e6dabc94b6308734d63f762480b80f (patch)
tree341c64619c63ef9fccca272b0d591e14e09555e2
parent678bf57ed04b8c250f0bc031ebd264bece76e731 (diff)
downloadcpython-git-c5b670efd1e6dabc94b6308734d63f762480b80f.tar.gz
gh-104499: Fix typo. (#104598)
-rw-r--r--Lib/idlelib/autocomplete_w.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/autocomplete_w.py b/Lib/idlelib/autocomplete_w.py
index 5bd7ce7f5e..24320b5a3b 100644
--- a/Lib/idlelib/autocomplete_w.py
+++ b/Lib/idlelib/autocomplete_w.py
@@ -186,7 +186,7 @@ class AutoCompleteWindow:
acw.withdraw()
acw.wm_overrideredirect(1)
try:
- # Prevent grabbing focus on maxOS.
+ # Prevent grabbing focus on macOS.
acw.tk.call("::tk::unsupported::MacWindowStyle", "style", acw._w,
"help", "noActivates")
except TclError: