Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8abe801

Browse files
authored
Merge branch 'main' into gh-25949
2 parents dc899f7 + f4ead48 commit 8abe801

29 files changed

Lines changed: 725 additions & 260 deletions

Doc/c-api/init.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1933,7 +1933,7 @@ is not possible due to its implementation being opaque at build time.
19331933
19341934
.. note::
19351935
A freed key becomes a dangling pointer. You should reset the key to
1936-
`NULL`.
1936+
``NULL``.
19371937
19381938
19391939
Methods

Doc/library/asyncio-api-index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ await on multiple things with timeouts.
5757
- Monitor for completion.
5858

5959
* - :func:`timeout`
60-
- Run with a timeout. Useful in cases when `wait_for` is not suitable.
60+
- Run with a timeout. Useful in cases when ``wait_for`` is not suitable.
6161

6262
* - :func:`to_thread`
6363
- Asynchronously run a function in a separate OS thread.

Doc/library/importlib.metadata.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ all the metadata in a JSON-compatible form per :PEP:`566`::
211211
The actual type of the object returned by ``metadata()`` is an
212212
implementation detail and should be accessed only through the interface
213213
described by the
214-
`PackageMetadata protocol <https://importlib-metadata.readthedocs.io/en/latest/api.html#importlib_metadata.PackageMetadata>`.
214+
`PackageMetadata protocol <https://importlib-metadata.readthedocs.io/en/latest/api.html#importlib_metadata.PackageMetadata>`_.
215215

216216
.. versionchanged:: 3.10
217217
The ``Description`` is now included in the metadata when presented

Doc/library/itertools.rst

Lines changed: 131 additions & 88 deletions
Large diffs are not rendered by default.

Doc/library/pathlib.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ Pure paths provide the following methods and properties:
391391

392392
If you want to walk an arbitrary filesystem path upwards, it is
393393
recommended to first call :meth:`Path.resolve` so as to resolve
394-
symlinks and eliminate `".."` components.
394+
symlinks and eliminate ``".."`` components.
395395

396396

397397
.. data:: PurePath.name

Doc/library/subprocess.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ Instances of the :class:`Popen` class have the following methods:
829829

830830
On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and
831831
CTRL_BREAK_EVENT can be sent to processes started with a *creationflags*
832-
parameter which includes `CREATE_NEW_PROCESS_GROUP`.
832+
parameter which includes ``CREATE_NEW_PROCESS_GROUP``.
833833

834834

835835
.. method:: Popen.terminate()

0 commit comments

Comments
 (0)