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

Doc/library/importlib.rst
Doc/library/stdtypes.rst

index 4402af1393555afbcd7d2c9caa1f9da2cc7ee241..e3006abec91d21eb396458f99d547ea544a79774 100644 (file)
@@ -1251,7 +1251,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 35791ffd8b08aa659130bd8f4227ba384c864330..950c18cdbcafa2445bb55551fe2731839adca402 100644 (file)
@@ -5743,7 +5743,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.