diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-11-02 21:54:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 21:54:53 (GMT) |
commit | 8af3090cb7af967ff699d82760ff36f978631b7a (patch) | |
tree | 2965c2d9722409651e61e7a97072c42a73c3f9b3 | |
parent | 71f602b54c9c5346d22a542e186746b06cccfc8e (diff) | |
download | cpython-8af3090cb7af967ff699d82760ff36f978631b7a.zip cpython-8af3090cb7af967ff699d82760ff36f978631b7a.tar.gz cpython-8af3090cb7af967ff699d82760ff36f978631b7a.tar.bz2 |
[doc] Link to section File input (GH-28941) (GH-29375)
(cherry picked from commit 48824fa1e26595ac97ffc96ee2c3d32ff130c420)
Co-authored-by: Andre Delfino <adelfino@gmail.com>
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 6894554..47ebbd0 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -557,7 +557,7 @@ are always available. They are listed here in alphabetical order. a suite of Python statements which is then executed (unless a syntax error occurs). [#]_ If it is a code object, it is simply executed. In all cases, the code that's executed is expected to be valid as file input (see the - section "File input" in the Reference Manual). Be aware that the + section :ref:`file-input` in the Reference Manual). Be aware that the :keyword:`nonlocal`, :keyword:`yield`, and :keyword:`return` statements may not be used outside of function definitions even within the context of code passed to the |