commit | 5d5c63f462683e971a4a2d877e78946554aacbf3 | [log] [tgz] |
---|---|---|
author | Eric Smith <eric@trueblade.com> | Wed Mar 19 02:11:30 2008 +0000 |
committer | Eric Smith <eric@trueblade.com> | Wed Mar 19 02:11:30 2008 +0000 |
tree | c8756cd57516bc9a5eca62079e8137cb4ea7c292 | |
parent | b89a096d6dce43dad60618750ea9c62f770b2e7a [diff] [blame] |
Fixed compiler module so __future__ print_function is compilable.
diff --git a/Lib/compiler/consts.py b/Lib/compiler/consts.py index c79e814..dd42793 100644 --- a/Lib/compiler/consts.py +++ b/Lib/compiler/consts.py
@@ -19,3 +19,4 @@ CO_FUTURE_DIVISION = 0x2000 CO_FUTURE_ABSIMPORT = 0x4000 CO_FUTURE_WITH_STATEMENT = 0x8000 +CO_FUTURE_PRINT_FUNCTION = 0x10000