Skip to content

Commit 2ebd0cd

Browse files
authored
Remove duplicate words in the documentation (python#140221)
1 parent 459d493 commit 2ebd0cd

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Doc/c-api/stable.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ The full API is described below for advanced use cases.
294294
Default flags, based on current values of macros such as
295295
:c:macro:`Py_LIMITED_API` and :c:macro:`Py_GIL_DISABLED`.
296296

297-
Alternately, the field can be set to to the following flags, combined
297+
Alternately, the field can be set to the following flags, combined
298298
by bitwise OR.
299299
Unused bits must be set to zero.
300300

Doc/library/importlib.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1257,7 +1257,7 @@ find and load modules.
12571257
To accommodate this requirement, when running on iOS, extension module
12581258
binaries are *not* packaged as ``.so`` files on ``sys.path``, but as
12591259
individual standalone frameworks. To discover those frameworks, this loader
1260-
is be registered against the ``.fwork`` file extension, with a ``.fwork``
1260+
is registered against the ``.fwork`` file extension, with a ``.fwork``
12611261
file acting as a placeholder in the original location of the binary on
12621262
``sys.path``. The ``.fwork`` file contains the path of the actual binary in
12631263
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'

Doc/whatsnew/3.15.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1010,7 +1010,7 @@ Deprecated C APIs
10101010
use the :c:type:`PyBytesWriter` API instead.
10111011
(Contributed by Victor Stinner in :gh:`129813`.)
10121012

1013-
* Deprecate :c:member:`~PyComplexObject.cval` field of the the
1013+
* Deprecate :c:member:`~PyComplexObject.cval` field of the
10141014
:c:type:`PyComplexObject` type.
10151015
Use :c:func:`PyComplex_AsCComplex` and :c:func:`PyComplex_FromCComplex`
10161016
to convert a Python complex number to/from the C :c:type:`Py_complex`

0 commit comments

Comments
 (0)