blob: 9b72d0f8d063da685e039589ddff820ce56e1165 [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
5/***********************************************************
6Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
7The Netherlands.
8
9 All Rights Reserved
10
11Permission to use, copy, modify, and distribute this software and its
12documentation for any purpose and without fee is hereby granted,
13provided that the above copyright notice appear in all copies and that
14both that copyright notice and this permission notice appear in
15supporting documentation, and that the names of Stichting Mathematisch
16Centrum or CWI or Corporation for National Research Initiatives or
17CNRI not be used in advertising or publicity pertaining to
18distribution of the software without specific, written prior
19permission.
20
21While CWI is the initial source for this software, a modified version
22is made available by the Corporation for National Research Initiatives
23(CNRI) at the Internet address ftp://ftp.python.org.
24
25STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
26REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
27MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
28CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
29DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
30PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
31TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
32PERFORMANCE OF THIS SOFTWARE.
33
34******************************************************************/
35
36/* Include nearly all Python header files */
37
38#include "config.h"
39
40/* config.h may or may not define DL_IMPORT */
41#ifndef DL_IMPORT /* declarations for DLL import/export */
42#define DL_IMPORT(RTYPE) RTYPE
43#endif
Guido van Rossum43466ec1998-12-04 18:48:25 +000044#ifndef DL_EXPORT /* declarations for DLL import/export */
45#define DL_EXPORT(RTYPE) RTYPE
46#endif
Guido van Rossum174f95a1997-05-02 03:55:52 +000047
48#ifdef SYMANTEC__CFM68K__
49#define UsingSharedLibs
50#endif
51
Guido van Rossum90ce8481998-05-26 18:38:07 +000052#if defined(__sgi) && defined(WITH_THREAD) && !defined(_SGI_MP_SOURCE)
53#define _SGI_MP_SOURCE
54#endif
55
Guido van Rossum174f95a1997-05-02 03:55:52 +000056#include <stdio.h>
57#include <string.h>
58#include <errno.h>
59#ifdef HAVE_STDLIB_H
60#include <stdlib.h>
61#endif
62
63#include "myproto.h"
64
65#ifdef SYMANTEC__CFM68K__
66#pragma lib_export on
67#endif
68
69#include "object.h"
70#include "objimpl.h"
71
72#include "pydebug.h"
73
Guido van Rossum174f95a1997-05-02 03:55:52 +000074#include "intobject.h"
75#include "longobject.h"
76#include "floatobject.h"
77#ifndef WITHOUT_COMPLEX
78#include "complexobject.h"
79#endif
80#include "rangeobject.h"
81#include "stringobject.h"
Guido van Rossum2e19bd71998-10-07 14:36:10 +000082#include "bufferobject.h"
Guido van Rossum174f95a1997-05-02 03:55:52 +000083#include "tupleobject.h"
84#include "listobject.h"
Guido van Rossum2ec90311997-05-13 21:23:32 +000085#include "dictobject.h"
Guido van Rossum174f95a1997-05-02 03:55:52 +000086#include "methodobject.h"
87#include "moduleobject.h"
88#include "funcobject.h"
89#include "classobject.h"
90#include "fileobject.h"
91#include "cobject.h"
92#include "traceback.h"
93#include "sliceobject.h"
94
95#include "pyerrors.h"
96#include "mymalloc.h"
97
Guido van Rossum618af4b1997-07-18 23:59:26 +000098#include "pystate.h"
99
Guido van Rossum174f95a1997-05-02 03:55:52 +0000100#include "modsupport.h"
101#include "ceval.h"
102#include "pythonrun.h"
103#include "sysmodule.h"
104#include "intrcheck.h"
105#include "import.h"
Guido van Rossum174f95a1997-05-02 03:55:52 +0000106
Guido van Rossum174f95a1997-05-02 03:55:52 +0000107#include "abstract.h"
108
109#define PyArg_GetInt(v, a) PyArg_Parse((v), "i", (a))
110#define PyArg_NoArgs(v) PyArg_Parse(v, "")
111
112/* Convert a possibly signed character to a nonnegative int */
113/* XXX This assumes characters are 8 bits wide */
114#ifdef __CHAR_UNSIGNED__
115#define Py_CHARMASK(c) (c)
116#else
117#define Py_CHARMASK(c) ((c) & 0xff)
118#endif
119
120#include "pyfpe.h"
121
Guido van Rossumb05a5c71997-05-07 17:46:13 +0000122/* These definitions much match corresponding definitions in graminit.h.
123 There's code in compile.c that checks that they are the same. */
124#define Py_single_input 256
125#define Py_file_input 257
126#define Py_eval_input 258
127
Guido van Rossumd27b4f21997-05-02 04:00:11 +0000128#endif /* !Py_PYTHON_H */