[Python-checkins] gh-104499: Fix typo. (#104598)

terryjreedy webhook-mailer at python.org
Wed May 17 22:35:53 EDT 2023


https://github.com/python/cpython/commit/c5b670efd1e6dabc94b6308734d63f762480b80f
commit: c5b670efd1e6dabc94b6308734d63f762480b80f
branch: main
author: Terry Jan Reedy <tjreedy at udel.edu>
committer: terryjreedy <tjreedy at udel.edu>
date: 2023-05-18T02:35:46Z
summary:

gh-104499: Fix typo. (#104598)

files:
M Lib/idlelib/autocomplete_w.py

diff --git a/Lib/idlelib/autocomplete_w.py b/Lib/idlelib/autocomplete_w.py
index 5bd7ce7f5e5a..24320b5a3bff 100644
--- a/Lib/idlelib/autocomplete_w.py
+++ b/Lib/idlelib/autocomplete_w.py
@@ -186,7 +186,7 @@ def show_window(self, comp_lists, index, complete, mode, userWantsWin):
         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:



More information about the Python-checkins mailing list