diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-05-21 07:33:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-21 07:33:23 (GMT) |
commit | 7f835923c179d1d2da54b232e0113abc2c56ea31 (patch) | |
tree | 6aa850b6020bcf040158cf84b560bbbe5ec50288 /Doc/whatsnew | |
parent | 2fadde7e6645e45e090b0187c28877300b07cba3 (diff) | |
download | cpython-7f835923c179d1d2da54b232e0113abc2c56ea31.zip cpython-7f835923c179d1d2da54b232e0113abc2c56ea31.tar.gz cpython-7f835923c179d1d2da54b232e0113abc2c56ea31.tar.bz2 |
gh-71223: Improve rendering of some references in the docs (GH-93041)
For example, instead of "eval()uated" (link from "eval()")
show "evaluated" (link from the whole word).
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index f4ff143..0237361 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -409,7 +409,7 @@ Some smaller changes made to the core Python language are: evaluating has no elements. (Contributed by Julian Berman in :issue:`18111`.) -* Module objects are now :mod:`weakref`'able. +* Module objects are now :ref:`weakly referenceable <mod-weakref>`. * Module ``__file__`` attributes (and related values) should now always contain absolute paths by default, with the sole exception of @@ -1113,8 +1113,8 @@ with additional speedups by Antoine Pitrou in :issue:`19219`.) mmap ---- -mmap objects can now be :mod:`weakref`\ ed. (Contributed by Valerie Lambert in -:issue:`4885`.) +mmap objects are now :ref:`weakly referenceable <mod-weakref>`. +(Contributed by Valerie Lambert in :issue:`4885`.) multiprocessing |