diff options
author | Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com> | 2019-12-15 22:02:47 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@python.org> | 2019-12-15 22:02:47 (GMT) |
commit | d587272fe3b0fcad2f23a490e76f9f82ca7d64ef (patch) | |
tree | a707d39b3869d56acac26bc6fb3f3d0dd7873629 /Doc | |
parent | cb8b946ac10386e6cab1376945f64f683b5b16d3 (diff) | |
download | cpython-d587272fe3b0fcad2f23a490e76f9f82ca7d64ef.zip cpython-d587272fe3b0fcad2f23a490e76f9f82ca7d64ef.tar.gz cpython-d587272fe3b0fcad2f23a490e76f9f82ca7d64ef.tar.bz2 |
bpo-38316: Fix co_stacksize documentation (GH-16983)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/reference/datamodel.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index b22ed92..c242041 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -925,8 +925,8 @@ Internal types the first line number of the function; :attr:`co_lnotab` is a string encoding the mapping from bytecode offsets to line numbers (for details see the source code of the interpreter); :attr:`co_stacksize` is the - required stack size (including local variables); :attr:`co_flags` is an - integer encoding a number of flags for the interpreter. + required stack size; :attr:`co_flags` is an integer encoding a number + of flags for the interpreter. .. index:: object: generator |