diff options
author | Guido van Rossum <guido@python.org> | 2001-07-15 21:08:29 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-07-15 21:08:29 +0000 |
commit | b09f7ed6235783fca27a4f8730c4c33e0f53c16c (patch) | |
tree | d76806c53fd83557378dcd7395ce5309f707eb15 /Include/compile.h | |
parent | Remove redundant include of assert.h. (diff) | |
download | cpython-b09f7ed6235783fca27a4f8730c4c33e0f53c16c.tar.gz cpython-b09f7ed6235783fca27a4f8730c4c33e0f53c16c.tar.bz2 cpython-b09f7ed6235783fca27a4f8730c4c33e0f53c16c.zip |
Preliminary support for "from __future__ import generators" to enable
the yield statement. I figure we have to have this in before I can
release 2.2a1 on Wednesday.
Note: test_generators is currently broken, I'm counting on Tim to fix
this.
Diffstat (limited to 'Include/compile.h')
-rw-r--r-- | Include/compile.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/compile.h b/Include/compile.h index b9a735a5df5..5e6e572ab45 100644 --- a/Include/compile.h +++ b/Include/compile.h @@ -65,6 +65,9 @@ DL_IMPORT(PyCodeObject *) PyNode_CompileFlags(struct _node *, char *, #define NESTED_SCOPES_DEFAULT 1 #define FUTURE_NESTED_SCOPES "nested_scopes" +#define GENERATORS_DEFAULT 0 +#define FUTURE_GENERATORS "generators" + /* for internal use only */ #define _PyCode_GETCODEPTR(co, pp) \ ((*(co)->co_code->ob_type->tp_as_buffer->bf_getreadbuffer) \ |