Skip to content

Commit 12903c0

Browse files
authored
[3.14] Remove duplicate words in the documentation (GH-140221) (GH-140225)
(cherry picked from commit 2ebd0cd)
1 parent 48b6049 commit 12903c0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Doc/library/importlib.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@ find and load modules.
12531253
To accommodate this requirement, when running on iOS, extension module
12541254
binaries are *not* packaged as ``.so`` files on ``sys.path``, but as
12551255
individual standalone frameworks. To discover those frameworks, this loader
1256-
is be registered against the ``.fwork`` file extension, with a ``.fwork``
1256+
is registered against the ``.fwork`` file extension, with a ``.fwork``
12571257
file acting as a placeholder in the original location of the binary on
12581258
``sys.path``. The ``.fwork`` file contains the path of the actual binary in
12591259
the ``Frameworks`` folder, relative to the app bundle. To allow for

Doc/library/stdtypes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5944,7 +5944,7 @@ It is written as ``None``.
59445944
The Ellipsis Object
59455945
-------------------
59465946

5947-
This object is commonly used used to indicate that something is omitted.
5947+
This object is commonly used to indicate that something is omitted.
59485948
It supports no special operations. There is exactly one ellipsis object, named
59495949
:const:`Ellipsis` (a built-in name). ``type(Ellipsis)()`` produces the
59505950
:const:`Ellipsis` singleton.

Doc/whatsnew/3.14.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1140,7 +1140,7 @@ concurrent.futures
11401140
.. _whatsnew314-concurrent-futures-start-method:
11411141

11421142
* On Unix platforms other than macOS, :ref:`'forkserver'
1143-
<multiprocessing-start-method-forkserver>` is now the the default :ref:`start
1143+
<multiprocessing-start-method-forkserver>` is now the default :ref:`start
11441144
method <multiprocessing-start-methods>` for
11451145
:class:`~concurrent.futures.ProcessPoolExecutor`
11461146
(replacing :ref:`'fork' <multiprocessing-start-method-fork>`).
@@ -1591,7 +1591,7 @@ multiprocessing
15911591
.. _whatsnew314-multiprocessing-start-method:
15921592

15931593
* On Unix platforms other than macOS, :ref:`'forkserver'
1594-
<multiprocessing-start-method-forkserver>` is now the the default :ref:`start
1594+
<multiprocessing-start-method-forkserver>` is now the default :ref:`start
15951595
method <multiprocessing-start-methods>`
15961596
(replacing :ref:`'fork' <multiprocessing-start-method-fork>`).
15971597
This change does not affect Windows or macOS, where :ref:`'spawn'

0 commit comments

Comments
 (0)