diff options
author | Eric Smith <eric@trueblade.com> | 2008-03-19 02:11:30 +0000 |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2008-03-19 02:11:30 +0000 |
commit | 5d5c63f462683e971a4a2d877e78946554aacbf3 (patch) | |
tree | c8756cd57516bc9a5eca62079e8137cb4ea7c292 /Lib/compiler/consts.py | |
parent | b89a096d6dce43dad60618750ea9c62f770b2e7a (diff) | |
download | cpython-git-5d5c63f462683e971a4a2d877e78946554aacbf3.tar.gz |
Fixed compiler module so __future__ print_function is compilable.
Diffstat (limited to 'Lib/compiler/consts.py')
-rw-r--r-- | Lib/compiler/consts.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/compiler/consts.py b/Lib/compiler/consts.py index c79e814beb..dd42793aa9 100644 --- a/Lib/compiler/consts.py +++ b/Lib/compiler/consts.py @@ -19,3 +19,4 @@ CO_GENERATOR_ALLOWED = 0 CO_FUTURE_DIVISION = 0x2000 CO_FUTURE_ABSIMPORT = 0x4000 CO_FUTURE_WITH_STATEMENT = 0x8000 +CO_FUTURE_PRINT_FUNCTION = 0x10000 |