]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] Remove duplicate words in the documentation (GH-140221) (GH-140225)
authorTan Long <tanloong@foxmail.com>
Thu, 16 Oct 2025 18:10:15 +0000 (02:10 +0800)
committerGitHub <noreply@github.com>
Thu, 16 Oct 2025 18:10:15 +0000 (20:10 +0200)
(cherry picked from commit 2ebd0cdb16a8824957ea588e1aab0a35d45e6b7b)

Doc/library/importlib.rst
Doc/library/stdtypes.rst
Doc/whatsnew/3.14.rst

index ddf503af82d988afb6c5510707991ae13fa9bcec..743d617fbe77a01d7b62e1757d1e193520a28586 100644 (file)
@@ -1253,7 +1253,7 @@ find and load modules.
    To accommodate this requirement, when running on iOS, extension module
    binaries are *not* packaged as ``.so`` files on ``sys.path``, but as
    individual standalone frameworks. To discover those frameworks, this loader
-   is be registered against the ``.fwork`` file extension, with a ``.fwork``
+   is registered against the ``.fwork`` file extension, with a ``.fwork``
    file acting as a placeholder in the original location of the binary on
    ``sys.path``. The ``.fwork`` file contains the path of the actual binary in
    the ``Frameworks`` folder, relative to the app bundle. To allow for
index a9658820f66eb916897b252be2169745889e9242..f8397b861d9a8b7a0533e8363efb2700563af530 100644 (file)
@@ -5944,7 +5944,7 @@ It is written as ``None``.
 The Ellipsis Object
 -------------------
 
-This object is commonly used used to indicate that something is omitted.
+This object is commonly used to indicate that something is omitted.
 It supports no special operations.  There is exactly one ellipsis object, named
 :const:`Ellipsis` (a built-in name).  ``type(Ellipsis)()`` produces the
 :const:`Ellipsis` singleton.
index ad4330e63e0b598ff712d709b9dceb5d1552c05f..bc4e34fa338b3db140aba84acf740d9c19c7bae0 100644 (file)
@@ -1140,7 +1140,7 @@ concurrent.futures
 .. _whatsnew314-concurrent-futures-start-method:
 
 * On Unix platforms other than macOS, :ref:`'forkserver'
-  <multiprocessing-start-method-forkserver>` is now the the default :ref:`start
+  <multiprocessing-start-method-forkserver>` is now the default :ref:`start
   method <multiprocessing-start-methods>` for
   :class:`~concurrent.futures.ProcessPoolExecutor`
   (replacing :ref:`'fork' <multiprocessing-start-method-fork>`).
@@ -1591,7 +1591,7 @@ multiprocessing
 .. _whatsnew314-multiprocessing-start-method:
 
 * On Unix platforms other than macOS, :ref:`'forkserver'
-  <multiprocessing-start-method-forkserver>` is now the the default :ref:`start
+  <multiprocessing-start-method-forkserver>` is now the default :ref:`start
   method <multiprocessing-start-methods>`
   (replacing :ref:`'fork' <multiprocessing-start-method-fork>`).
   This change does not affect Windows or macOS, where :ref:`'spawn'