summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-11-21 02:17:51 (GMT)
committerGitHub <noreply@github.com>2019-11-21 02:17:51 (GMT)
commit23f9be24bc55b98dc86f87714b08073958f93485 (patch)
tree61d13460c7c5d630eb88c0e44ec1ce47af969f18 /Doc/library/functions.rst
parentd5d41d39366214c9628b2680fa18fb8d085bcdbc (diff)
downloadcpython-23f9be24bc55b98dc86f87714b08073958f93485.zip
cpython-23f9be24bc55b98dc86f87714b08073958f93485.tar.gz
cpython-23f9be24bc55b98dc86f87714b08073958f93485.tar.bz2
Update functions.rst (GH-16468)
This PR will make the following changes to the [_Built-in Functions_](https://docs.python.org/3/library/functions.html) chapter of the library documentation: - improve hyperlinks in Sphinx roles (trailing 's' belong to hyperlinks). Automerge-Triggered-By: @csabella (cherry picked from commit d67279147ace3b63187e5d75a15c345264f39e85) Co-authored-by: Géry Ogam <gery.ogam@gmail.com>
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r--Doc/library/functions.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index ca2a039..7968eef 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -471,7 +471,7 @@ are always available. They are listed here in alphabetical order.
dictionary is omitted it defaults to the *globals* dictionary. If both
dictionaries are omitted, the expression is executed with the *globals* and
*locals* in the environment where :func:`eval` is called. Note, *eval()*
- does not have access to the :term:`nested scope`\s (non-locals) in the
+ does not have access to the :term:`nested scopes <nested scope>` (non-locals) in the
enclosing environment.
The return value is the result of
@@ -1636,7 +1636,7 @@ are always available. They are listed here in alphabetical order.
# super(C, self).method(arg)
In addition to method lookups, :func:`super` also works for attribute
- lookups. One possible use case for this is calling :term:`descriptor`\s
+ lookups. One possible use case for this is calling :term:`descriptors <descriptor>`
in a parent or sibling class.
Note that :func:`super` is implemented as part of the binding process for