diff options
| author | Thomas Wouters <thomas@python.org> | 2006-02-28 20:02:27 +0000 |
|---|---|---|
| committer | Thomas Wouters <thomas@python.org> | 2006-02-28 20:02:27 +0000 |
| commit | 2c15dad89fa07764a3d84e9f0358d1d059981e80 (patch) | |
| tree | cfa3fa116ba902a82e3da415f9de8f38254e770b /Python/compile.c | |
| parent | 7aaf4d5a989e814ffb35316d4ef2ce89cfa8ea22 (diff) | |
| download | cpython-2c15dad89fa07764a3d84e9f0358d1d059981e80.tar.gz | |
Generally inehrit codeflags that are in PyCF_MASK, instead of writing it out
in multiple places. This makes compile()/eval()/etc also inherit the
absolute-import codeflag, like division and with-statement already were.
Diffstat (limited to 'Python/compile.c')
| -rw-r--r-- | Python/compile.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/compile.c b/Python/compile.c index 13e0f6d34d..9547992957 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -4284,10 +4284,10 @@ compute_code_flags(struct compiler *c) flags |= CO_VARKEYWORDS; if (ste->ste_generator) flags |= CO_GENERATOR; - if (c->c_flags->cf_flags & CO_FUTURE_DIVISION) - flags |= CO_FUTURE_DIVISION; - if (c->c_flags->cf_flags & CO_FUTURE_WITH_STATEMENT) - flags |= CO_FUTURE_WITH_STATEMENT; + + /* (Only) inherit compilerflags in PyCF_MASK */ + flags |= (c->c_flags->cf_flags & PyCF_MASK); + n = PyDict_Size(c->u->u_freevars); if (n < 0) return -1; |
