1997-05-02 12:00:11 +08:00
|
|
|
#ifndef Py_PYTHON_H
|
|
|
|
#define Py_PYTHON_H
|
1997-05-02 11:55:52 +08:00
|
|
|
/* Since this is a "meta-include" file, no #ifdef __cplusplus / extern "C" { */
|
|
|
|
|
|
|
|
|
2000-07-07 19:24:49 +08:00
|
|
|
/* Enable compiler features; switching on C lib defines doesn't work
|
|
|
|
here, because the symbols haven't necessarily been defined yet. */
|
2000-07-05 16:53:18 +08:00
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
# define _GNU_SOURCE 1
|
|
|
|
#endif
|
2000-07-07 19:24:49 +08:00
|
|
|
|
|
|
|
/* Forcing SUSv2 compatibility still produces problems on some
|
|
|
|
platforms, True64 and SGI IRIX begin two of them, so for now the
|
|
|
|
define is switched off. */
|
|
|
|
#if 0
|
2000-07-05 16:53:18 +08:00
|
|
|
#ifndef _XOPEN_SOURCE
|
|
|
|
# define _XOPEN_SOURCE 500
|
|
|
|
#endif
|
2000-07-07 19:24:49 +08:00
|
|
|
#endif
|
2000-07-05 16:53:18 +08:00
|
|
|
|
1997-05-02 11:55:52 +08:00
|
|
|
/* Include nearly all Python header files */
|
|
|
|
|
1999-01-03 20:40:24 +08:00
|
|
|
#include "patchlevel.h"
|
1997-05-02 11:55:52 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2000-09-26 13:46:01 +08:00
|
|
|
#ifdef HAVE_LIMITS_H
|
|
|
|
#include <limits.h>
|
|
|
|
#endif
|
|
|
|
|
1997-05-02 11:55:52 +08:00
|
|
|
/* 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-05 02:48:25 +08:00
|
|
|
#ifndef DL_EXPORT /* declarations for DLL import/export */
|
|
|
|
#define DL_EXPORT(RTYPE) RTYPE
|
|
|
|
#endif
|
1997-05-02 11:55:52 +08:00
|
|
|
|
1998-05-27 02:38:07 +08:00
|
|
|
#if defined(__sgi) && defined(WITH_THREAD) && !defined(_SGI_MP_SOURCE)
|
|
|
|
#define _SGI_MP_SOURCE
|
|
|
|
#endif
|
|
|
|
|
1997-05-02 11:55:52 +08:00
|
|
|
#include <stdio.h>
|
2000-09-10 09:02:41 +08:00
|
|
|
#ifndef NULL
|
|
|
|
# error "Python.h requires that stdio.h define NULL."
|
|
|
|
#endif
|
|
|
|
|
1997-05-02 11:55:52 +08:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
2001-07-16 00:58:05 +08:00
|
|
|
|
|
|
|
#ifndef Py_DEBUG
|
2001-07-16 02:38:47 +08:00
|
|
|
#ifndef NDEBUG
|
2001-07-16 00:58:05 +08:00
|
|
|
#define NDEBUG 1
|
|
|
|
#endif
|
2001-07-16 02:38:47 +08:00
|
|
|
#endif
|
2000-07-24 03:28:35 +08:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "pyport.h"
|
1997-05-02 11:55:52 +08:00
|
|
|
|
2000-08-01 06:19:30 +08:00
|
|
|
#include "pymem.h"
|
|
|
|
|
1997-05-02 11:55:52 +08:00
|
|
|
#include "object.h"
|
|
|
|
#include "objimpl.h"
|
|
|
|
|
|
|
|
#include "pydebug.h"
|
|
|
|
|
2000-04-06 04:11:21 +08:00
|
|
|
#include "unicodeobject.h"
|
1997-05-02 11:55:52 +08: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 22:36:10 +08:00
|
|
|
#include "bufferobject.h"
|
1997-05-02 11:55:52 +08:00
|
|
|
#include "tupleobject.h"
|
|
|
|
#include "listobject.h"
|
1997-05-14 05:23:32 +08:00
|
|
|
#include "dictobject.h"
|
1997-05-02 11:55:52 +08: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"
|
2001-01-26 04:04:14 +08:00
|
|
|
#include "cellobject.h"
|
2001-04-21 03:13:02 +08:00
|
|
|
#include "iterobject.h"
|
1997-05-02 11:55:52 +08:00
|
|
|
|
2000-03-11 06:34:00 +08:00
|
|
|
#include "codecs.h"
|
1997-05-02 11:55:52 +08:00
|
|
|
#include "pyerrors.h"
|
|
|
|
|
1997-07-19 07:59:26 +08:00
|
|
|
#include "pystate.h"
|
|
|
|
|
1997-05-02 11:55:52 +08:00
|
|
|
#include "modsupport.h"
|
|
|
|
#include "pythonrun.h"
|
2001-07-16 10:29:45 +08:00
|
|
|
#include "ceval.h"
|
1997-05-02 11:55:52 +08:00
|
|
|
#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-29 04:29:48 +08:00
|
|
|
/* These definitions must match corresponding definitions in graminit.h.
|
1997-05-08 01:46:13 +08: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-09-19 08:46:46 +08:00
|
|
|
#ifdef HAVE_PTH
|
2000-05-08 21:41:38 +08:00
|
|
|
/* GNU pth user-space thread support */
|
|
|
|
#include <pth.h>
|
|
|
|
#endif
|
1997-05-02 12:00:11 +08:00
|
|
|
#endif /* !Py_PYTHON_H */
|