diff options
author | Brett Cannon <bcannon@gmail.com> | 2003-06-15 22:57:44 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2003-06-15 22:57:44 (GMT) |
commit | 9e6fedd2ecd3fa6a5e5a39eeb796462f5513df87 (patch) | |
tree | fd65c90796467c98bb58c06e5924885d06a0d038 /Doc | |
parent | 4a671fe6341235fc4a06a9ed7d788394f54d3fea (diff) | |
download | cpython-9e6fedd2ecd3fa6a5e5a39eeb796462f5513df87.zip cpython-9e6fedd2ecd3fa6a5e5a39eeb796462f5513df87.tar.gz cpython-9e6fedd2ecd3fa6a5e5a39eeb796462f5513df87.tar.bz2 |
Add explicit text for where an obindex call for generators was since obindex does not cause output of its argument.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/ref/ref3.tex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex index fe628e0..a5a5d9f 100644 --- a/Doc/ref/ref3.tex +++ b/Doc/ref/ref3.tex @@ -804,7 +804,8 @@ The following flag bits are defined for \member{co_flags}: bit to accept an arbitrary number of positional arguments; bit \code{0x08} is set if the function uses the \samp{**keywords} syntax to accept arbitrary keyword arguments; bit \code{0x20} is set if the -function is a \obindex{generator}. +function is a generator. +\obindex{generator} Future feature declarations (\samp{from __future__ import division}) also use bits in \member{co_flags} to indicate whether a code object |