]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Fix typos in docs, error messages and comments (#122502) (#122606)
authorAlex Waygood <Alex.Waygood@Gmail.com>
Mon, 2 Sep 2024 10:44:42 +0000 (11:44 +0100)
committerGitHub <noreply@github.com>
Mon, 2 Sep 2024 10:44:42 +0000 (12:44 +0200)
Fix typos in docs, error messages and comments (#122502)

(cherry-picked from commit 46f5a4f9e1781ad8d60eb53bbaf6cd8534a286cd)

Signed-off-by: jianghuyiyuan <shuangcui@live.com>
Co-authored-by: jianghuyiyuan <shuangcui@live.com>
Doc/howto/isolating-extensions.rst
Doc/library/threading.rst
Doc/using/configure.rst
Lib/test/test_webbrowser.py
Python/crossinterp.c

index e35855deedbe5fa1facb6bb700f95bae59246c83..a636e06bda834410e5d0c3e07f1c0b466cda830c 100644 (file)
@@ -339,7 +339,7 @@ That is, heap types should:
 - Define a traverse function using ``Py_tp_traverse``, which
   visits the type (e.g. using ``Py_VISIT(Py_TYPE(self))``).
 
-Please refer to the the documentation of
+Please refer to the documentation of
 :c:macro:`Py_TPFLAGS_HAVE_GC` and :c:member:`~PyTypeObject.tp_traverse`
 for additional considerations.
 
index 49c2b9b3ccd4fdf7cbb8084c13682fee922a98d4..cb82fea377697b587855aa36514c691e37f032cc 100644 (file)
@@ -1018,7 +1018,7 @@ method.  The :meth:`~Event.wait` method blocks until the flag is true.
       has not expired. The return value represents the
       reason that this blocking method returned; ``True`` if returning because
       the internal flag is set to true, or ``False`` if a timeout is given and
-      the the internal flag did not become true within the given wait time.
+      the internal flag did not become true within the given wait time.
 
       When the timeout argument is present and not ``None``, it should be a
       floating-point number specifying a timeout for the operation in seconds,
index 754191de7bebeea302569c884c4edf3806791e29..052289bd8273663822c6e4612e489a968f8ca20e 100644 (file)
@@ -1101,7 +1101,7 @@ Remove built files.
 make distclean
 ^^^^^^^^^^^^^^
 
-In addition to the the work done by ``make clean``, remove files
+In addition to the work done by ``make clean``, remove files
 created by the configure script.  ``configure`` will have to be run
 before building again. [#]_
 
index ae8d776e8413ffcd870601994def48d69bab8b16..4fcbc5c2e59ea311fe5fa7a40b638f0a86900a63 100644 (file)
@@ -244,7 +244,7 @@ class IOSBrowserTest(unittest.TestCase):
     @unittest.skipIf(getattr(webbrowser, "objc", None) is None,
                      "iOS Webbrowser tests require ctypes")
     def setUp(self):
-        # Intercept the the objc library. Wrap the calls to get the
+        # Intercept the objc library. Wrap the calls to get the
         # references to classes and selectors to return strings, and
         # wrap msgSend to return stringified object references
         self.orig_objc = webbrowser.objc
index a03456a8bbfd6f6f16fefa56bae3d36ce0020317..2af0dd6191aa4e99d8ae6bf7b487fdfbd41b4c7b 100644 (file)
@@ -699,7 +699,7 @@ _PyXI_excinfo_InitFromException(_PyXI_excinfo *info, PyObject *exc)
         Py_DECREF(tbexc);
         if (info->errdisplay == NULL) {
 #ifdef Py_DEBUG
-            PyErr_FormatUnraisable("Exception ignored while formating TracebackException");
+            PyErr_FormatUnraisable("Exception ignored while formatting TracebackException");
 #endif
             PyErr_Clear();
         }