diff options
Diffstat (limited to 'Include/cpython')
-rw-r--r-- | Include/cpython/code.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Include/cpython/code.h b/Include/cpython/code.h index 77801dc..ed9ac2e 100644 --- a/Include/cpython/code.h +++ b/Include/cpython/code.h @@ -112,12 +112,6 @@ struct PyCodeObject { #define CO_VARKEYWORDS 0x0008 #define CO_NESTED 0x0010 #define CO_GENERATOR 0x0020 -/* The CO_NOFREE flag is set if there are no free or cell variables. - This information is redundant, but it allows a single flag test - to determine whether there is any extra work to be done when the - call frame it setup. -*/ -#define CO_NOFREE 0x0040 /* The CO_COROUTINE flag is set for coroutine functions (defined with ``async def`` keywords) */ |