diff options
author | Guido van Rossum <guido@python.org> | 1996-01-12 00:48:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-01-12 00:48:04 (GMT) |
commit | 3ca2a950789b574f987a9e54ee35fd5b404f9808 (patch) | |
tree | ecb6a6548dd58429fde114f5136f114742f0c989 /Include | |
parent | f9fca9252f64a93b4598615c504011fa385333ae (diff) | |
download | cpython-3ca2a950789b574f987a9e54ee35fd5b404f9808.zip cpython-3ca2a950789b574f987a9e54ee35fd5b404f9808.tar.gz cpython-3ca2a950789b574f987a9e54ee35fd5b404f9808.tar.bz2 |
added complex and c object.h; get rid of Py_FatalError
Diffstat (limited to 'Include')
-rw-r--r-- | Include/allobjects.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Include/allobjects.h b/Include/allobjects.h index 17bfa71..7573699 100644 --- a/Include/allobjects.h +++ b/Include/allobjects.h @@ -70,6 +70,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "intobject.h" #include "longobject.h" #include "floatobject.h" +#ifndef WITHOUT_COMPLEX +#include "complexobject.h" +#endif #include "rangeobject.h" #include "stringobject.h" #include "tupleobject.h" @@ -80,6 +83,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "funcobject.h" #include "classobject.h" #include "fileobject.h" +#include "cobject.h" #include "errors.h" #include "mymalloc.h" @@ -89,8 +93,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "abstract.h" -extern void Py_FatalError Py_PROTO((char *)); - #define PyArg_GetInt(v, a) PyArg_Parse((v), "i", (a)) #define PyArg_NoArgs(v) PyArg_Parse(v, "") |