move unprefixed error into .c file

This commit is contained in:
Benjamin Peterson 2008-10-30 23:59:18 +00:00
parent d79af0fc52
commit 44a90c95ce
2 changed files with 2 additions and 2 deletions

View file

@ -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)