diff options
author | Guido van Rossum <guido@python.org> | 2021-06-23 16:51:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-23 16:51:44 (GMT) |
commit | 769d7d0c66c5b86e2dd29b9ce67ac2daaab1bb38 (patch) | |
tree | 48ceed799fea9009441a6eb71c97cdee08e16eb5 /Doc/library/inspect.rst | |
parent | 34356a0a4bad0be124ae892cda6c30a38f5f1061 (diff) | |
download | cpython-769d7d0c66c5b86e2dd29b9ce67ac2daaab1bb38.zip cpython-769d7d0c66c5b86e2dd29b9ce67ac2daaab1bb38.tar.gz cpython-769d7d0c66c5b86e2dd29b9ce67ac2daaab1bb38.tar.bz2 |
bpo-43693 Get rid of CO_NOFREE -- it's unused (GH-26839)
All uses of this flag are either setting it
or in doc or tests for it. So we should be
able to get rid of it completely.
Diffstat (limited to 'Doc/library/inspect.rst')
-rw-r--r-- | Doc/library/inspect.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index ed33cbb..1d7572e 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -1450,10 +1450,6 @@ the following flags: The flag is set when the code object is a generator function, i.e. a generator object is returned when the code object is executed. -.. data:: CO_NOFREE - - The flag is set if there are no free or cell variables. - .. data:: CO_COROUTINE The flag is set when the code object is a coroutine function. |