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