From: Stefan Behnel Date: Sat, 24 Oct 2009 13:28:56 +0000 (+0200) Subject: fix exec in Py2.3 X-Git-Tag: 0.13.beta0~2^2~119^2~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e13327cbad260943c4e7302fc3ca065343b9d0cc;p=cython.git fix exec in Py2.3 --- diff --git a/Cython/Compiler/Builtin.py b/Cython/Compiler/Builtin.py index 494057bd..062afb77 100644 --- a/Cython/Compiler/Builtin.py +++ b/Cython/Compiler/Builtin.py @@ -161,6 +161,9 @@ bad: pyexec_utility_code = UtilityCode( proto = """ #if PY_VERSION_HEX < 0x02040000 +#ifndef Py_COMPILE_H +#include "compile.h" +#endif #ifndef Py_EVAL_H #include "eval.h" #endif