https://github.com/python/cpython/commit/b41963a4aaf6708affb7af4eda3e480c0707a41d commit: b41963a4aaf6708affb7af4eda3e480c0707a41d branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-11-18T10:38:16Z summary:
[3.13] Add missing backticks in os and decimal docs (GH-141699) (#141706) Co-authored-by: Mariusz Felisiak <[email protected]> files: M Doc/library/decimal.rst M Doc/library/os.rst diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 3d6ad8b4d40d32..ea27e80f5050eb 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -264,7 +264,7 @@ allows the settings to be changed. This approach meets the needs of most applications. For more advanced work, it may be useful to create alternate contexts using the -Context() constructor. To make an alternate active, use the :func:`setcontext` +:meth:`Context` constructor. To make an alternate active, use the :func:`setcontext` function. In accordance with the standard, the :mod:`decimal` module provides two ready to diff --git a/Doc/library/os.rst b/Doc/library/os.rst index e25b4445296c0b..df8c2e582defc2 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -539,7 +539,7 @@ process and user. .. function:: initgroups(username, gid, /) - Call the system initgroups() to initialize the group access list with all of + Call the system ``initgroups()`` to initialize the group access list with all of the groups of which the specified username is a member, plus the specified group id. _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
