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/compile.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/compile.h')
-rw-r--r-- | Include/compile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/compile.h b/Include/compile.h index 0b1cb89..39c00f2 100644 --- a/Include/compile.h +++ b/Include/compile.h @@ -40,7 +40,7 @@ typedef struct { compiled *by* a code object knows whether to allow yield stmts. In effect, this passes on the "from __future__ import generators" state in effect when the code block was compiled. */ -#define CO_GENERATOR_ALLOWED 0x1000 +#define CO_GENERATOR_ALLOWED 0x1000 /* no longer used in an essential way */ #define CO_FUTURE_DIVISION 0x2000 extern DL_IMPORT(PyTypeObject) PyCode_Type; |