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).
This commit is contained in:
Skip Montanaro 2004-03-13 23:11:44 +00:00
parent 0576d0a48a
commit 6e098a15a3
1 changed files with 3 additions and 0 deletions

View File

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