diff options
author | Guido van Rossum <guido@python.org> | 1997-05-02 04:00:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-02 04:00:11 (GMT) |
commit | d27b4f2a3f6a90dfcc5eb6fb30c1a895ed60142d (patch) | |
tree | 8dc1f2e5182f742fafb0762f1cbe542c01dfd808 /Include/Python.h | |
parent | 174f95adf7ee1251738a291d0fb52760ea1b25c0 (diff) | |
download | cpython-d27b4f2a3f6a90dfcc5eb6fb30c1a895ed60142d.zip cpython-d27b4f2a3f6a90dfcc5eb6fb30c1a895ed60142d.tar.gz cpython-d27b4f2a3f6a90dfcc5eb6fb30c1a895ed60142d.tar.bz2 |
Several oopsies -- Py_ALLOBJECTS_H -> Py_PYTHON_H, temporarily removed
pystate.h (to be restored later when that code is debugged), removed
accessobject.h.
Diffstat (limited to 'Include/Python.h')
-rw-r--r-- | Include/Python.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Include/Python.h b/Include/Python.h index 63ffb1a..ffc7e2c 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -1,5 +1,5 @@ -#ifndef Py_ALLOBJECTS_H -#define Py_ALLOBJECTS_H +#ifndef Py_PYTHON_H +#define Py_PYTHON_H /* Since this is a "meta-include" file, no #ifdef __cplusplus / extern "C" { */ /*********************************************************** @@ -64,7 +64,6 @@ PERFORMANCE OF THIS SOFTWARE. #include "pydebug.h" -#include "accessobject.h" #include "intobject.h" #include "longobject.h" #include "floatobject.h" @@ -96,8 +95,6 @@ PERFORMANCE OF THIS SOFTWARE. #include "import.h" #include "bltinmodule.h" -#include "pystate.h" - #include "abstract.h" #define PyArg_GetInt(v, a) PyArg_Parse((v), "i", (a)) @@ -113,4 +110,4 @@ PERFORMANCE OF THIS SOFTWARE. #include "pyfpe.h" -#endif /* !Py_ALLOBJECTS_H */ +#endif /* !Py_PYTHON_H */ |