diff options
author | Skip Montanaro <skip@pobox.com> | 2004-03-13 23:11:44 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2004-03-13 23:11:44 (GMT) |
commit | 6e098a15a3493d9c136e18b9e51b67bd48545651 (patch) | |
tree | 257d35f80f9a097e9b626cb6a9aa9c4467e03b16 /Include | |
parent | 0576d0a48a5111fef529732830db2e60102406f7 (diff) | |
download | cpython-6e098a15a3493d9c136e18b9e51b67bd48545651.zip cpython-6e098a15a3493d9c136e18b9e51b67bd48545651.tar.gz cpython-6e098a15a3493d9c136e18b9e51b67bd48545651.tar.bz2 |
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).
Diffstat (limited to 'Include')
-rw-r--r-- | Include/Python.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/Python.h b/Include/Python.h index 232cdbe..f332836 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); |