1997-05-02 06:00:11 +02:00
|
|
|
#ifndef Py_PYTHON_H
|
|
|
|
#define Py_PYTHON_H
|
1997-05-02 05:55:52 +02:00
|
|
|
/* Since this is a "meta-include" file, no #ifdef __cplusplus / extern "C" { */
|
|
|
|
|
|
|
|
|
2000-07-07 13:24:49 +02: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 10:53:18 +02:00
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
# define _GNU_SOURCE 1
|
|
|
|
#endif
|
2000-07-07 13:24:49 +02: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 10:53:18 +02:00
|
|
|
#ifndef _XOPEN_SOURCE
|
|
|
|
# define _XOPEN_SOURCE 500
|
|
|
|
#endif
|
2000-07-07 13:24:49 +02:00
|
|
|
#endif
|
2000-07-05 10:53:18 +02:00
|
|
|
|
1997-05-02 05:55:52 +02:00
|
|
|
/* Include nearly all Python header files */
|
|
|
|
|
1999-01-03 13:40:24 +01:00
|
|
|
#include "patchlevel.h"
|
2001-07-26 15:41:06 +02:00
|
|
|
#include "pyconfig.h"
|
1997-05-02 05:55:52 +02:00
|
|
|
|
2000-09-26 07:46:01 +02:00
|
|
|
#ifdef HAVE_LIMITS_H
|
|
|
|
#include <limits.h>
|
|
|
|
#endif
|
|
|
|
|
2001-07-26 23:34:59 +02:00
|
|
|
/* pyconfig.h may or may not define DL_IMPORT */
|
1997-05-02 05:55:52 +02:00
|
|
|
#ifndef DL_IMPORT /* declarations for DLL import/export */
|
|
|
|
#define DL_IMPORT(RTYPE) RTYPE
|
|
|
|
#endif
|
1998-12-04 19:48:25 +01:00
|
|
|
#ifndef DL_EXPORT /* declarations for DLL import/export */
|
|
|
|
#define DL_EXPORT(RTYPE) RTYPE
|
|
|
|
#endif
|
1997-05-02 05:55:52 +02:00
|
|
|
|
1998-05-26 20:38:07 +02:00
|
|
|
#if defined(__sgi) && defined(WITH_THREAD) && !defined(_SGI_MP_SOURCE)
|
|
|
|
#define _SGI_MP_SOURCE
|
|
|
|
#endif
|
|
|
|
|
1997-05-02 05:55:52 +02:00
|
|
|
#include <stdio.h>
|
2000-09-10 03:02:41 +02:00
|
|
|
#ifndef NULL
|
|
|
|
# error "Python.h requires that stdio.h define NULL."
|
|
|
|
#endif
|
|
|
|
|
1997-05-02 05:55:52 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
2001-07-15 18:58:05 +02:00
|
|
|
|
|
|
|
#ifndef Py_DEBUG
|
2001-07-15 20:38:47 +02:00
|
|
|
#ifndef NDEBUG
|
2001-07-15 18:58:05 +02:00
|
|
|
#define NDEBUG 1
|
|
|
|
#endif
|
2001-07-15 20:38:47 +02:00
|
|
|
#endif
|
2000-07-23 21:28:35 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "pyport.h"
|
1997-05-02 05:55:52 +02:00
|
|
|
|
2000-08-01 00:19:30 +02:00
|
|
|
#include "pymem.h"
|
|
|
|
|
1997-05-02 05:55:52 +02:00
|
|
|
#include "object.h"
|
|
|
|
#include "objimpl.h"
|
|
|
|
|
|
|
|
#include "pydebug.h"
|
|
|
|
|
2000-04-05 22:11:21 +02:00
|
|
|
#include "unicodeobject.h"
|
1997-05-02 05:55:52 +02: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 16:36:10 +02:00
|
|
|
#include "bufferobject.h"
|
1997-05-02 05:55:52 +02:00
|
|
|
#include "tupleobject.h"
|
|
|
|
#include "listobject.h"
|
1997-05-13 23:23:32 +02:00
|
|
|
#include "dictobject.h"
|
1997-05-02 05:55:52 +02: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-25 21:04:14 +01:00
|
|
|
#include "cellobject.h"
|
2001-04-20 21:13:02 +02:00
|
|
|
#include "iterobject.h"
|
2001-08-02 06:15:00 +02:00
|
|
|
#include "descrobject.h"
|
2001-10-05 23:55:19 +02:00
|
|
|
#include "weakrefobject.h"
|
1997-05-02 05:55:52 +02:00
|
|
|
|
2000-03-10 23:34:00 +01:00
|
|
|
#include "codecs.h"
|
1997-05-02 05:55:52 +02:00
|
|
|
#include "pyerrors.h"
|
|
|
|
|
1997-07-19 01:59:26 +02:00
|
|
|
#include "pystate.h"
|
|
|
|
|
1997-05-02 05:55:52 +02:00
|
|
|
#include "modsupport.h"
|
|
|
|
#include "pythonrun.h"
|
2001-07-16 04:29:45 +02:00
|
|
|
#include "ceval.h"
|
1997-05-02 05:55:52 +02: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-28 22:29:48 +02:00
|
|
|
/* These definitions must match corresponding definitions in graminit.h.
|
1997-05-07 19:46:13 +02: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 02:46:46 +02:00
|
|
|
#ifdef HAVE_PTH
|
2000-05-08 15:41:38 +02:00
|
|
|
/* GNU pth user-space thread support */
|
|
|
|
#include <pth.h>
|
|
|
|
#endif
|
1997-05-02 06:00:11 +02:00
|
|
|
#endif /* !Py_PYTHON_H */
|