mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
[3.13] Docs: Fix markups for emphasis (GH-135598) (GH-135686)
Some checks are pending
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if the ABI has changed (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / (push) Blocked by required conditions
Tests / Windows MSI (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
Lint / lint (push) Waiting to run
Some checks are pending
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if the ABI has changed (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / (push) Blocked by required conditions
Tests / Windows MSI (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
Lint / lint (push) Waiting to run
Docs: Fix markups for emphasis (GH-135598)
The word emphasis character `_` is not supported as sphinx markup, so changed to `*`.
(cherry picked from commit 46c60e0d0b
)
Co-authored-by: Yuki Kobayashi <drsuaimqjgar@gmail.com>
This commit is contained in:
parent
a0a1aa3125
commit
dfe0e30c80
2 changed files with 2 additions and 2 deletions
|
@ -201,7 +201,7 @@ of Python objects.
|
|||
|
||||
Py_SETREF(dst, src);
|
||||
|
||||
That arranges to set *dst* to *src* _before_ releasing the reference
|
||||
That arranges to set *dst* to *src* *before* releasing the reference
|
||||
to the old value of *dst*, so that any code triggered as a side-effect
|
||||
of *dst* getting torn down no longer believes *dst* points
|
||||
to a valid object.
|
||||
|
|
|
@ -586,7 +586,7 @@ configuration dictionary for the handler named ``foo``, and later (once that
|
|||
handler has been configured) it points to the configured handler instance.
|
||||
Thus, ``cfg://handlers.foo`` could resolve to either a dictionary or a handler
|
||||
instance. In general, it is wise to name handlers in a way such that dependent
|
||||
handlers are configured _after_ any handlers they depend on; that allows
|
||||
handlers are configured *after* any handlers they depend on; that allows
|
||||
something like ``cfg://handlers.foo`` to be used in configuring a handler that
|
||||
depends on handler ``foo``. If that dependent handler were named ``bar``,
|
||||
problems would result, because the configuration of ``bar`` would be attempted
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue