blob: 9379c6639c2ba8b379dc12e72b10bcd2d40981e7 [file] [log] [blame]
Guido van Rossumd27b4f21997-05-02 04:00:11 +00001#ifndef Py_PYTHON_H
2#define Py_PYTHON_H
Guido van Rossum174f95a1997-05-02 03:55:52 +00003/* Since this is a "meta-include" file, no #ifdef __cplusplus / extern "C" { */
4
Guido van Rossum174f95a1997-05-02 03:55:52 +00005/* Include nearly all Python header files */
6
Guido van Rossumf1176c41999-01-03 12:40:24 +00007#include "patchlevel.h"
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00008#include "pyconfig.h"
Guido van Rossum174f95a1997-05-02 03:55:52 +00009
Tim Peters943382c2002-07-07 03:59:34 +000010/* Cyclic gc is always enabled, starting with release 2.3a1. Supply the
11 * old symbol for the benefit of extension modules written before then
12 * that may be conditionalizing on it. The core doesn't use it anymore.
13 */
14#ifndef WITH_CYCLE_GC
15#define WITH_CYCLE_GC 1
16#endif
17
Fred Draked5fadf72000-09-26 05:46:01 +000018#ifdef HAVE_LIMITS_H
19#include <limits.h>
Tim Peters60519e82002-07-12 05:01:20 +000020#else
21#error "limits.h is required by std C -- why isn't HAVE_LIMITS_H defined?"
Fred Draked5fadf72000-09-26 05:46:01 +000022#endif
23
Guido van Rossum90ce8481998-05-26 18:38:07 +000024#if defined(__sgi) && defined(WITH_THREAD) && !defined(_SGI_MP_SOURCE)
25#define _SGI_MP_SOURCE
26#endif
27
Guido van Rossum174f95a1997-05-02 03:55:52 +000028#include <stdio.h>
Tim Peters4826a892000-09-10 01:02:41 +000029#ifndef NULL
30# error "Python.h requires that stdio.h define NULL."
31#endif
32
Guido van Rossum174f95a1997-05-02 03:55:52 +000033#include <string.h>
34#include <errno.h>
35#ifdef HAVE_STDLIB_H
36#include <stdlib.h>
37#endif
Martin v. Löwiscdc44512002-01-12 11:05:12 +000038#ifdef HAVE_UNISTD_H
39#include <unistd.h>
40#endif
Guido van Rossumb2c075b2001-07-15 16:58:05 +000041
Tim Peters5defb172001-12-04 20:06:11 +000042/* CAUTION: Build setups should ensure that NDEBUG is defined on the
43 * compiler command line when building Python in release mode; else
44 * assert() calls won't be removed.
45 */
Tim Peters8315ea52000-07-23 19:28:35 +000046#include <assert.h>
47
Martin v. Löwis1e1fcef2002-05-15 18:24:06 +000048#include "pyport.h"
49
Jason Tishlerbc488262002-06-04 15:07:08 +000050/* pyconfig.h or pyport.h may or may not define DL_IMPORT */
51#ifndef DL_IMPORT /* declarations for DLL import/export */
52#define DL_IMPORT(RTYPE) RTYPE
53#endif
54#ifndef DL_EXPORT /* declarations for DLL import/export */
55#define DL_EXPORT(RTYPE) RTYPE
56#endif
57
Tim Petersddea2082002-03-23 10:03:50 +000058/* Debug-mode build with pymalloc implies PYMALLOC_DEBUG.
59 * PYMALLOC_DEBUG is in error if pymalloc is not in use.
60 */
61#if defined(Py_DEBUG) && defined(WITH_PYMALLOC) && !defined(PYMALLOC_DEBUG)
62#define PYMALLOC_DEBUG
63#endif
64#if defined(PYMALLOC_DEBUG) && !defined(WITH_PYMALLOC)
65#error "PYMALLOC_DEBUG requires WITH_PYMALLOC"
66#endif
Peter Schneider-Kamp25f68942000-07-31 22:19:30 +000067#include "pymem.h"
68
Guido van Rossum174f95a1997-05-02 03:55:52 +000069#include "object.h"
70#include "objimpl.h"
71
72#include "pydebug.h"
73
Guido van Rossum9e896b32000-04-05 20:11:21 +000074#include "unicodeobject.h"
Guido van Rossum174f95a1997-05-02 03:55:52 +000075#include "intobject.h"
Guido van Rossum77f6a652002-04-03 22:41:51 +000076#include "boolobject.h"
Guido van Rossum174f95a1997-05-02 03:55:52 +000077#include "longobject.h"
78#include "floatobject.h"
79#ifndef WITHOUT_COMPLEX
80#include "complexobject.h"
81#endif
82#include "rangeobject.h"
83#include "stringobject.h"
Guido van Rossum2e19bd71998-10-07 14:36:10 +000084#include "bufferobject.h"
Guido van Rossum174f95a1997-05-02 03:55:52 +000085#include "tupleobject.h"
86#include "listobject.h"
Guido van Rossum2ec90311997-05-13 21:23:32 +000087#include "dictobject.h"
Guido van Rossum7dab2422002-04-26 19:40:56 +000088#include "enumobject.h"
Raymond Hettingera690a992003-11-16 16:17:49 +000089#include "setobject.h"
Guido van Rossum174f95a1997-05-02 03:55:52 +000090#include "methodobject.h"
91#include "moduleobject.h"
92#include "funcobject.h"
93#include "classobject.h"
94#include "fileobject.h"
95#include "cobject.h"
96#include "traceback.h"
97#include "sliceobject.h"
Jeremy Hyltonfbd849f2001-01-25 20:04:14 +000098#include "cellobject.h"
Guido van Rossum59d1d2b2001-04-20 19:13:02 +000099#include "iterobject.h"
Tim Peters6d6c1a32001-08-02 04:15:00 +0000100#include "descrobject.h"
Fred Drake19bc5782001-10-05 21:55:19 +0000101#include "weakrefobject.h"
Guido van Rossum174f95a1997-05-02 03:55:52 +0000102
Guido van Rossumbd7dfbc2000-03-10 22:34:00 +0000103#include "codecs.h"
Guido van Rossum174f95a1997-05-02 03:55:52 +0000104#include "pyerrors.h"
Guido van Rossum174f95a1997-05-02 03:55:52 +0000105
Guido van Rossum618af4b1997-07-18 23:59:26 +0000106#include "pystate.h"
107
Guido van Rossum174f95a1997-05-02 03:55:52 +0000108#include "modsupport.h"
Guido van Rossum174f95a1997-05-02 03:55:52 +0000109#include "pythonrun.h"
Tim Peters5ba58662001-07-16 02:29:45 +0000110#include "ceval.h"
Guido van Rossum174f95a1997-05-02 03:55:52 +0000111#include "sysmodule.h"
112#include "intrcheck.h"
113#include "import.h"
Guido van Rossum174f95a1997-05-02 03:55:52 +0000114
Guido van Rossum174f95a1997-05-02 03:55:52 +0000115#include "abstract.h"
116
Raymond Hettinger0ae0c072002-06-20 22:23:15 +0000117/* _Py_Mangle is defined in compile.c */
Mark Hammond91a681d2002-08-12 07:21:58 +0000118PyAPI_FUNC(int) _Py_Mangle(char *p, char *name, \
Raymond Hettinger0ae0c072002-06-20 22:23:15 +0000119 char *buffer, size_t maxlen);
120
Neal Norwitz1543c072002-03-25 22:21:58 +0000121/* PyArg_GetInt is deprecated and should not be used, use PyArg_Parse(). */
Guido van Rossum174f95a1997-05-02 03:55:52 +0000122#define PyArg_GetInt(v, a) PyArg_Parse((v), "i", (a))
Neal Norwitz3a6f9782002-03-25 20:46:46 +0000123
124/* PyArg_NoArgs should not be necessary.
125 Set ml_flags in the PyMethodDef to METH_NOARGS. */
Guido van Rossum174f95a1997-05-02 03:55:52 +0000126#define PyArg_NoArgs(v) PyArg_Parse(v, "")
127
128/* Convert a possibly signed character to a nonnegative int */
129/* XXX This assumes characters are 8 bits wide */
130#ifdef __CHAR_UNSIGNED__
131#define Py_CHARMASK(c) (c)
132#else
133#define Py_CHARMASK(c) ((c) & 0xff)
134#endif
135
136#include "pyfpe.h"
137
Greg Ward95811442000-05-28 20:29:48 +0000138/* These definitions must match corresponding definitions in graminit.h.
Guido van Rossumb05a5c71997-05-07 17:46:13 +0000139 There's code in compile.c that checks that they are the same. */
140#define Py_single_input 256
141#define Py_file_input 257
142#define Py_eval_input 258
143
Guido van Rossum9e8181b2000-09-19 00:46:46 +0000144#ifdef HAVE_PTH
Guido van Rossum07bd90e2000-05-08 13:41:38 +0000145/* GNU pth user-space thread support */
146#include <pth.h>
147#endif
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +0000148
149/* Define macros for inline documentation. */
150#define PyDoc_VAR(name) static char name[]
151#define PyDoc_STRVAR(name,str) PyDoc_VAR(name) = PyDoc_STR(str)
152#ifdef WITH_DOC_STRINGS
153#define PyDoc_STR(str) str
154#else
155#define PyDoc_STR(str) ""
156#endif
157
Guido van Rossumd27b4f21997-05-02 04:00:11 +0000158#endif /* !Py_PYTHON_H */