]> granicus.if.org Git - python/commitdiff
added complex and c object.h; get rid of Py_FatalError
authorGuido van Rossum <guido@python.org>
Fri, 12 Jan 1996 00:48:04 +0000 (00:48 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 12 Jan 1996 00:48:04 +0000 (00:48 +0000)
Include/allobjects.h

index 17bfa7176ecbc842f4510457a146b8cc8fb3dc0d..75736994ee7afbabd284c35559186868eef89bf7 100644 (file)
@@ -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, "")