summaryrefslogtreecommitdiff
path: root/Lib/compiler/consts.py
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2008-03-19 02:11:30 +0000
committerEric Smith <eric@trueblade.com>2008-03-19 02:11:30 +0000
commit5d5c63f462683e971a4a2d877e78946554aacbf3 (patch)
treec8756cd57516bc9a5eca62079e8137cb4ea7c292 /Lib/compiler/consts.py
parentb89a096d6dce43dad60618750ea9c62f770b2e7a (diff)
downloadcpython-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.py1
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