diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-10-30 23:59:18 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-10-30 23:59:18 (GMT) |
commit | 44a90c95ceb6d6348dd7f81db33287f09112118d (patch) | |
tree | b55c5abbd734c066d7855e856bc06867579ebf17 /Include | |
parent | d79af0fc52ef13c531ca4dfb6bf96359626765a3 (diff) | |
download | cpython-44a90c95ceb6d6348dd7f81db33287f09112118d.zip cpython-44a90c95ceb6d6348dd7f81db33287f09112118d.tar.gz cpython-44a90c95ceb6d6348dd7f81db33287f09112118d.tar.bz2 |
move unprefixed error into .c file
Diffstat (limited to 'Include')
-rw-r--r-- | Include/compile.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/compile.h b/Include/compile.h index 43a470d..6100101 100644 --- a/Include/compile.h +++ b/Include/compile.h @@ -33,8 +33,6 @@ PyAPI_FUNC(PyCodeObject *) PyAST_Compile(struct _mod *, const char *, PyCompilerFlags *, PyArena *); PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromAST(struct _mod *, const char *); -#define ERR_LATE_FUTURE \ -"from __future__ imports must occur at the beginning of the file" #ifdef __cplusplus } |