[Python-checkins] Fix typo "involvin" → "involving" (#104166)

kumaraditya303 webhook-mailer at python.org
Thu May 4 09:04:01 EDT 2023


https://github.com/python/cpython/commit/e2ef5015d1b6cb56f1a7988583f2fb8c0e6d65fc
commit: e2ef5015d1b6cb56f1a7988583f2fb8c0e6d65fc
branch: main
author: Christopher Chavez <chrischavez at gmx.us>
committer: kumaraditya303 <59607654+kumaraditya303 at users.noreply.github.com>
date: 2023-05-04T13:03:52Z
summary:

Fix typo "involvin" → "involving" (#104166)

files:
M Lib/test/test_idle.py
M Lib/test/test_tix.py

diff --git a/Lib/test/test_idle.py b/Lib/test/test_idle.py
index b94b18a541a7..90cff9002b75 100644
--- a/Lib/test/test_idle.py
+++ b/Lib/test/test_idle.py
@@ -3,7 +3,7 @@
 from test.support import check_sanitizer
 
 if check_sanitizer(address=True, memory=True):
-    raise unittest.SkipTest("Tests involvin libX11 can SEGFAULT on ASAN/MSAN builds")
+    raise unittest.SkipTest("Tests involving libX11 can SEGFAULT on ASAN/MSAN builds")
 
 # Skip test_idle if _tkinter wasn't built, if tkinter is missing,
 # if tcl/tk is not the 8.5+ needed for ttk widgets,
diff --git a/Lib/test/test_tix.py b/Lib/test/test_tix.py
index 454baeb38a93..d0d2a164ad2c 100644
--- a/Lib/test/test_tix.py
+++ b/Lib/test/test_tix.py
@@ -5,7 +5,7 @@
 from test.support import check_sanitizer
 
 if check_sanitizer(address=True, memory=True):
-    raise unittest.SkipTest("Tests involvin libX11 can SEGFAULT on ASAN/MSAN builds")
+    raise unittest.SkipTest("Tests involving libX11 can SEGFAULT on ASAN/MSAN builds")
 
 
 # Skip this test if the _tkinter module wasn't built.



More information about the Python-checkins mailing list