Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 1 | #ifndef Py_ALLOBJECTS_H |
| 2 | #define Py_ALLOBJECTS_H |
| 3 | #ifdef __cplusplus |
| 4 | extern "C" { |
| 5 | #endif |
| 6 | |
Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 7 | /*********************************************************** |
Guido van Rossum | 5799b52 | 1995-01-04 19:06:22 +0000 | [diff] [blame] | 8 | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, |
| 9 | The Netherlands. |
Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 10 | |
| 11 | All Rights Reserved |
| 12 | |
| 13 | Permission to use, copy, modify, and distribute this software and its |
| 14 | documentation for any purpose and without fee is hereby granted, |
| 15 | provided that the above copyright notice appear in all copies and that |
| 16 | both that copyright notice and this permission notice appear in |
| 17 | supporting documentation, and that the names of Stichting Mathematisch |
| 18 | Centrum or CWI not be used in advertising or publicity pertaining to |
| 19 | distribution of the software without specific, written prior permission. |
| 20 | |
| 21 | STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO |
| 22 | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 23 | FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE |
| 24 | FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 25 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 26 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 27 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 28 | |
| 29 | ******************************************************************/ |
| 30 | |
Guido van Rossum | a715274 | 1994-08-19 11:16:32 +0000 | [diff] [blame] | 31 | /* Include nearly all Python header files */ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 32 | |
Guido van Rossum | e89bc75 | 1994-08-18 16:18:13 +0000 | [diff] [blame] | 33 | /* Some systems (well, NT anyway!) require special declarations for |
| 34 | data items imported from dynamic modules. Note that this defn is |
| 35 | only turned on for the modules built as DL modules, not for python |
| 36 | itself. |
| 37 | */ |
| 38 | #define DL_IMPORT /* Save lots of #else/#if's */ |
| 39 | #ifdef USE_DL_IMPORT |
| 40 | #ifdef NT |
| 41 | #undef DL_IMPORT |
| 42 | #define DL_IMPORT __declspec(dllimport) |
| 43 | #endif /* NT */ |
| 44 | #endif /* USE_DL_IMPORT */ |
| 45 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 46 | #ifdef HAVE_CONFIG_H |
| 47 | #include "config.h" |
| 48 | #endif |
| 49 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 50 | #include <stdio.h> |
Guido van Rossum | d05c4b2 | 1990-12-20 23:02:42 +0000 | [diff] [blame] | 51 | #include <string.h> |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 52 | #include <errno.h> |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 53 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 54 | #include "myproto.h" |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 55 | |
| 56 | #include "object.h" |
| 57 | #include "objimpl.h" |
| 58 | |
Guido van Rossum | 2583165 | 1993-05-19 14:50:45 +0000 | [diff] [blame] | 59 | #include "accessobject.h" |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 60 | #include "intobject.h" |
Guido van Rossum | 9227c0e | 1991-05-05 20:00:02 +0000 | [diff] [blame] | 61 | #include "longobject.h" |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 62 | #include "floatobject.h" |
Guido van Rossum | 12d12c5 | 1993-10-26 17:58:25 +0000 | [diff] [blame] | 63 | #include "rangeobject.h" |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 64 | #include "stringobject.h" |
| 65 | #include "tupleobject.h" |
| 66 | #include "listobject.h" |
Guido van Rossum | 9381782 | 1995-01-17 16:01:01 +0000 | [diff] [blame] | 67 | #include "mappingobject.h" |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 68 | #include "methodobject.h" |
| 69 | #include "moduleobject.h" |
| 70 | #include "funcobject.h" |
| 71 | #include "classobject.h" |
| 72 | #include "fileobject.h" |
| 73 | |
| 74 | #include "errors.h" |
Guido van Rossum | 1e28e5e | 1992-08-19 16:46:30 +0000 | [diff] [blame] | 75 | #include "mymalloc.h" |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 76 | |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 77 | #include "modsupport.h" |
| 78 | #include "ceval.h" |
| 79 | |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 80 | extern void Py_FatalError Py_PROTO((char *)); |
| 81 | |
| 82 | #define PyArg_GetInt(v, a) PyArg_Parse((v), "i", (a)) |
| 83 | #define PyArg_NoArgs(v) PyArg_Parse(v, "") |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 84 | |
| 85 | #ifdef __cplusplus |
| 86 | } |
| 87 | #endif |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 88 | |
| 89 | #ifndef Py_USE_NEW_NAMES |
| 90 | #include "rename2.h" |
| 91 | #endif |
| 92 | |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 93 | #endif /* !Py_ALLOBJECTS_H */ |