added complex and c object.h; get rid of Py_FatalError

This commit is contained in:
Guido van Rossum 1996-01-12 00:48:04 +00:00
parent f9fca9252f
commit 3ca2a95078
1 changed files with 4 additions and 2 deletions

View 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, "")