diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-11-02 21:59:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 21:59:42 (GMT) |
commit | d3e775501566138347ca9d10ce57afdc1fcd3859 (patch) | |
tree | 5a8e989e607241de52dfc873813f15dd193d8462 | |
parent | 4ab6e524abd2d7f21c2d7a6eaee5be1f93baf140 (diff) | |
download | cpython-d3e775501566138347ca9d10ce57afdc1fcd3859.zip cpython-d3e775501566138347ca9d10ce57afdc1fcd3859.tar.gz cpython-d3e775501566138347ca9d10ce57afdc1fcd3859.tar.bz2 |
[doc] Link to section File input (GH-28941) (GH-29376)
(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 942ad6f..4acbc67 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -507,7 +507,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 |