From: Skip Montanaro Date: Sat, 13 Mar 2004 23:11:44 +0000 (+0000) Subject: compile.h and eval.h weren't being included which kept a fair bit of the X-Git-Tag: v2.4a1~706 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6e098a15a3493d9c136e18b9e51b67bd48545651;p=python compile.h and eval.h weren't being included which kept a fair bit of the public API from being exposed by simply including Python.h (as recommended). --- diff --git a/Include/Python.h b/Include/Python.h index 232cdbe360..f33283624b 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -116,6 +116,9 @@ #include "abstract.h" +#include "compile.h" +#include "eval.h" + /* _Py_Mangle is defined in compile.c */ PyAPI_FUNC(int) _Py_Mangle(char *p, char *name, \ char *buffer, size_t maxlen);