summaryrefslogtreecommitdiffstats
path: root/Include/code.h
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-04-03 06:26:32 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-04-03 06:26:32 (GMT)
commitcbce280d4f3f1c4d86a989ab85c93f13ec7e00f9 (patch)
treebb203d57376de6d1377f8d810a3583bc08b796ab /Include/code.h
parentf5af2aac3805a7b6fc1d9b056b0662293bc0b274 (diff)
downloadcpython-cbce280d4f3f1c4d86a989ab85c93f13ec7e00f9.zip
cpython-cbce280d4f3f1c4d86a989ab85c93f13ec7e00f9.tar.gz
cpython-cbce280d4f3f1c4d86a989ab85c93f13ec7e00f9.tar.bz2
Don't abbreviate ABS, use long name ABSOLUTE.
Diffstat (limited to 'Include/code.h')
-rw-r--r--Include/code.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/code.h b/Include/code.h
index 9e6cb56..ba4c6f8 100644
--- a/Include/code.h
+++ b/Include/code.h
@@ -45,7 +45,7 @@ typedef struct {
#define CO_GENERATOR_ALLOWED 0x1000
#endif
#define CO_FUTURE_DIVISION 0x2000
-#define CO_FUTURE_ABSIMPORT 0x4000 /* absolute import by default */
+#define CO_FUTURE_ABSOLUTE_IMPORT 0x4000 /* do absolute imports by default */
#define CO_FUTURE_WITH_STATEMENT 0x8000
/* This should be defined if a future statement modifies the syntax.