commit | 44a90c95ceb6d6348dd7f81db33287f09112118d | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Thu Oct 30 23:59:18 2008 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Thu Oct 30 23:59:18 2008 +0000 |
tree | b55c5abbd734c066d7855e856bc06867579ebf17 | |
parent | d79af0fc52ef13c531ca4dfb6bf96359626765a3 [diff] [blame] |
move unprefixed error into .c file
diff --git a/Python/future.c b/Python/future.c index 2c6aaa2..532a7fd 100644 --- a/Python/future.c +++ b/Python/future.c
@@ -8,6 +8,8 @@ #include "symtable.h" #define UNDEFINED_FUTURE_FEATURE "future feature %.100s is not defined" +#define ERR_LATE_FUTURE \ +"from __future__ imports must occur at the beginning of the file" static int future_check_features(PyFutureFeatures *ff, stmt_ty s, const char *filename)