]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Doc: Found some remaining default roles. (GH-98392)
authorJulien Palard <julien@palard.fr>
Tue, 18 Oct 2022 13:46:18 +0000 (15:46 +0200)
committerGitHub <noreply@github.com>
Tue, 18 Oct 2022 13:46:18 +0000 (15:46 +0200)
Doc/c-api/init.rst
Doc/library/asyncio-api-index.rst
Doc/library/pathlib.rst
Doc/library/subprocess.rst

index 9b7383373e98413f0f6feff2f39ec1f6461d0f5e..afb17719a77ab255a5e1587b3abf621b5864706c 100644 (file)
@@ -1933,7 +1933,7 @@ is not possible due to its implementation being opaque at build time.
 
    .. note::
       A freed key becomes a dangling pointer. You should reset the key to
-      `NULL`.
+      ``NULL``.
 
 
 Methods
index 54c1cd6582e4941f1e61032b0785a1adf31f7f48..ad475150fe7d9102120c4eedf8cd2ff469cf3631 100644 (file)
@@ -57,7 +57,7 @@ await on multiple things with timeouts.
       - Monitor for completion.
 
     * - :func:`timeout`
-      - Run with a timeout. Useful in cases when `wait_for` is not suitable.
+      - Run with a timeout. Useful in cases when ``wait_for`` is not suitable.
 
     * - :func:`to_thread`
       - Asynchronously run a function in a separate OS thread.
index 1375ce1aef953a5468d8cd4939f56eb0d40b28d9..4e9ea39895b43c2c8057bd3741c5d0ae2c826567 100644 (file)
@@ -391,7 +391,7 @@ Pure paths provide the following methods and properties:
 
       If you want to walk an arbitrary filesystem path upwards, it is
       recommended to first call :meth:`Path.resolve` so as to resolve
-      symlinks and eliminate `".."` components.
+      symlinks and eliminate ``".."`` components.
 
 
 .. data:: PurePath.name
index dee5bd879db5b5054156c2577fd425910a657e10..51b9e38b7b6ce916b5f9c1ff91271f39abb963e8 100644 (file)
@@ -829,7 +829,7 @@ Instances of the :class:`Popen` class have the following methods:
 
       On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and
       CTRL_BREAK_EVENT can be sent to processes started with a *creationflags*
-      parameter which includes `CREATE_NEW_PROCESS_GROUP`.
+      parameter which includes ``CREATE_NEW_PROCESS_GROUP``.
 
 
 .. method:: Popen.terminate()