diff options
author | Eric Smith <eric@trueblade.com> | 2008-03-20 23:02:08 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2008-03-20 23:02:08 (GMT) |
commit | 87824086fa20e3f7bbb39dc8ee9d3ce70487dd98 (patch) | |
tree | 6c61ebeee2100ff264c4fd81f627fb984240d76e /Lib/__future__.py | |
parent | 2eb2c7c3848fdc16a2c6bad6660411d0cf1c5208 (diff) | |
download | cpython-87824086fa20e3f7bbb39dc8ee9d3ce70487dd98.zip cpython-87824086fa20e3f7bbb39dc8ee9d3ce70487dd98.tar.gz cpython-87824086fa20e3f7bbb39dc8ee9d3ce70487dd98.tar.bz2 |
Add __future__ import for print_function. It's a no-op in 3.0, but it needs to not be a syntax error.
Closes issue 2436.
Diffstat (limited to 'Lib/__future__.py')
-rw-r--r-- | Lib/__future__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/__future__.py b/Lib/__future__.py index d8e14d1..ea14bf3 100644 --- a/Lib/__future__.py +++ b/Lib/__future__.py @@ -53,6 +53,7 @@ all_feature_names = [ "division", "absolute_import", "with_statement", + "print_function", ] __all__ = ["all_feature_names"] + all_feature_names @@ -66,6 +67,7 @@ CO_GENERATOR_ALLOWED = 0 # generators (obsolete, was 0x1000) CO_FUTURE_DIVISION = 0x2000 # division CO_FUTURE_ABSOLUTE_IMPORT = 0x4000 # perform absolute imports by default CO_FUTURE_WITH_STATEMENT = 0x8000 # with statement +CO_FUTURE_PRINT_FUNCTION = 0x10000 # print function class _Feature: def __init__(self, optionalRelease, mandatoryRelease, compiler_flag): @@ -114,3 +116,7 @@ absolute_import = _Feature((2, 5, 0, "alpha", 1), with_statement = _Feature((2, 5, 0, "alpha", 1), (2, 6, 0, "alpha", 0), CO_FUTURE_WITH_STATEMENT) + +print_function = _Feature((2, 6, 0, "alpha", 2), + (3, 0, 0, "alpha", 0), + CO_FUTURE_PRINT_FUNCTION) |