1997-05-02 01:00:11 -03:00
|
|
|
#ifndef Py_PYTHON_H
|
|
|
|
#define Py_PYTHON_H
|
1997-05-02 00:55:52 -03:00
|
|
|
/* Since this is a "meta-include" file, no #ifdef __cplusplus / extern "C" { */
|
|
|
|
|
|
|
|
/***********************************************************
|
2000-06-30 20:50:40 -03:00
|
|
|
Copyright (c) 2000, BeOpen.com.
|
|
|
|
Copyright (c) 1995-2000, Corporation for National Research Initiatives.
|
|
|
|
Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
See the file "Misc/COPYRIGHT" for information on usage and
|
|
|
|
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
1997-05-02 00:55:52 -03:00
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
/* Include nearly all Python header files */
|
|
|
|
|
1999-01-03 08:40:24 -04:00
|
|
|
#include "patchlevel.h"
|
1997-05-02 00:55:52 -03:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
/* config.h may or may not define DL_IMPORT */
|
|
|
|
#ifndef DL_IMPORT /* declarations for DLL import/export */
|
|
|
|
#define DL_IMPORT(RTYPE) RTYPE
|
|
|
|
#endif
|
1998-12-04 14:48:25 -04:00
|
|
|
#ifndef DL_EXPORT /* declarations for DLL import/export */
|
|
|
|
#define DL_EXPORT(RTYPE) RTYPE
|
|
|
|
#endif
|
1997-05-02 00:55:52 -03:00
|
|
|
|
|
|
|
#ifdef SYMANTEC__CFM68K__
|
|
|
|
#define UsingSharedLibs
|
|
|
|
#endif
|
|
|
|
|
1998-05-26 15:38:07 -03:00
|
|
|
#if defined(__sgi) && defined(WITH_THREAD) && !defined(_SGI_MP_SOURCE)
|
|
|
|
#define _SGI_MP_SOURCE
|
|
|
|
#endif
|
|
|
|
|
1997-05-02 00:55:52 -03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "myproto.h"
|
|
|
|
|
|
|
|
#ifdef SYMANTEC__CFM68K__
|
|
|
|
#pragma lib_export on
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "object.h"
|
|
|
|
#include "objimpl.h"
|
|
|
|
|
|
|
|
#include "pydebug.h"
|
|
|
|
|
2000-04-05 17:11:21 -03:00
|
|
|
#include "unicodeobject.h"
|
1997-05-02 00:55:52 -03:00
|
|
|
#include "intobject.h"
|
|
|
|
#include "longobject.h"
|
|
|
|
#include "floatobject.h"
|
|
|
|
#ifndef WITHOUT_COMPLEX
|
|
|
|
#include "complexobject.h"
|
|
|
|
#endif
|
|
|
|
#include "rangeobject.h"
|
|
|
|
#include "stringobject.h"
|
1998-10-07 11:36:10 -03:00
|
|
|
#include "bufferobject.h"
|
1997-05-02 00:55:52 -03:00
|
|
|
#include "tupleobject.h"
|
|
|
|
#include "listobject.h"
|
1997-05-13 18:23:32 -03:00
|
|
|
#include "dictobject.h"
|
1997-05-02 00:55:52 -03:00
|
|
|
#include "methodobject.h"
|
|
|
|
#include "moduleobject.h"
|
|
|
|
#include "funcobject.h"
|
|
|
|
#include "classobject.h"
|
|
|
|
#include "fileobject.h"
|
|
|
|
#include "cobject.h"
|
|
|
|
#include "traceback.h"
|
|
|
|
#include "sliceobject.h"
|
|
|
|
|
2000-03-10 18:34:00 -04:00
|
|
|
#include "codecs.h"
|
1997-05-02 00:55:52 -03:00
|
|
|
#include "pyerrors.h"
|
|
|
|
#include "mymalloc.h"
|
|
|
|
|
1997-07-18 20:59:26 -03:00
|
|
|
#include "pystate.h"
|
|
|
|
|
1997-05-02 00:55:52 -03:00
|
|
|
#include "modsupport.h"
|
|
|
|
#include "ceval.h"
|
|
|
|
#include "pythonrun.h"
|
|
|
|
#include "sysmodule.h"
|
|
|
|
#include "intrcheck.h"
|
|
|
|
#include "import.h"
|
|
|
|
|
|
|
|
#include "abstract.h"
|
|
|
|
|
|
|
|
#define PyArg_GetInt(v, a) PyArg_Parse((v), "i", (a))
|
|
|
|
#define PyArg_NoArgs(v) PyArg_Parse(v, "")
|
|
|
|
|
|
|
|
/* Convert a possibly signed character to a nonnegative int */
|
|
|
|
/* XXX This assumes characters are 8 bits wide */
|
|
|
|
#ifdef __CHAR_UNSIGNED__
|
|
|
|
#define Py_CHARMASK(c) (c)
|
|
|
|
#else
|
|
|
|
#define Py_CHARMASK(c) ((c) & 0xff)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "pyfpe.h"
|
|
|
|
|
2000-05-28 17:29:48 -03:00
|
|
|
/* These definitions must match corresponding definitions in graminit.h.
|
1997-05-07 14:46:13 -03:00
|
|
|
There's code in compile.c that checks that they are the same. */
|
|
|
|
#define Py_single_input 256
|
|
|
|
#define Py_file_input 257
|
|
|
|
#define Py_eval_input 258
|
|
|
|
|
2000-05-08 10:41:38 -03:00
|
|
|
#ifdef _GNU_PTH
|
|
|
|
/* GNU pth user-space thread support */
|
|
|
|
#include <pth.h>
|
|
|
|
#endif
|
1997-05-02 01:00:11 -03:00
|
|
|
#endif /* !Py_PYTHON_H */
|