summaryrefslogtreecommitdiffstats
path: root/Include/compile.h
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2008-03-20 23:02:08 (GMT)
committerEric Smith <eric@trueblade.com>2008-03-20 23:02:08 (GMT)
commit87824086fa20e3f7bbb39dc8ee9d3ce70487dd98 (patch)
tree6c61ebeee2100ff264c4fd81f627fb984240d76e /Include/compile.h
parent2eb2c7c3848fdc16a2c6bad6660411d0cf1c5208 (diff)
downloadcpython-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/compile.h')
-rw-r--r--Include/compile.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/compile.h b/Include/compile.h
index 2bde6fb..391c710 100644
--- a/Include/compile.h
+++ b/Include/compile.h
@@ -24,6 +24,7 @@ typedef struct {
#define FUTURE_DIVISION "division"
#define FUTURE_ABSOLUTE_IMPORT "absolute_import"
#define FUTURE_WITH_STATEMENT "with_statement"
+#define FUTURE_PRINT_FUNCTION "print_function"
struct _mod; /* Declare the existence of this type */
PyAPI_FUNC(PyCodeObject *) PyAST_Compile(struct _mod *, const char *,