diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-04-12 01:20:10 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-04-12 01:20:10 (GMT) |
commit | 2bbdba3c00c33453a2591ffce798c870d9a0ae22 (patch) | |
tree | c1e671d3cd9416434039bc6e7975a96551b34a1f /Include/pythonrun.h | |
parent | 68c7e26dc953c5403bd193def3c966f0297ffeae (diff) | |
download | cpython-2bbdba3c00c33453a2591ffce798c870d9a0ae22.zip cpython-2bbdba3c00c33453a2591ffce798c870d9a0ae22.tar.gz cpython-2bbdba3c00c33453a2591ffce798c870d9a0ae22.tar.bz2 |
Removed more hair in support of future-generator stmts.
Diffstat (limited to 'Include/pythonrun.h')
-rw-r--r-- | Include/pythonrun.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h index 3e00cde..3a79288 100644 --- a/Include/pythonrun.h +++ b/Include/pythonrun.h @@ -7,8 +7,8 @@ extern "C" { #endif -#define PyCF_MASK (CO_GENERATOR_ALLOWED | CO_FUTURE_DIVISION) -#define PyCF_MASK_OBSOLETE (CO_NESTED) +#define PyCF_MASK (CO_FUTURE_DIVISION) +#define PyCF_MASK_OBSOLETE (CO_GENERATOR_ALLOWED | CO_NESTED) typedef struct { int cf_flags; /* bitmask of CO_xxx flags relevant to future */ |