Doc: Found some remaining default roles. (GH-98392)

This commit is contained in:
Julien Palard 2022-10-18 15:46:18 +02:00 committed by GitHub
parent 6ccca69d0d
commit 2eb503e4dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View 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

View 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.

View 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

View 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()