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 /Include/code.h | |
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 'Include/code.h')
-rw-r--r-- | Include/code.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/code.h b/Include/code.h index 56d6cb5..e576bbb 100644 --- a/Include/code.h +++ b/Include/code.h @@ -48,6 +48,7 @@ typedef struct { #define CO_FUTURE_DIVISION 0x2000 #define CO_FUTURE_ABSOLUTE_IMPORT 0x4000 /* do absolute imports by default */ #define CO_FUTURE_WITH_STATEMENT 0x8000 +#define CO_FUTURE_PRINT_FUNCTION 0x10000 #endif /* This should be defined if a future statement modifies the syntax. |