Cython has moved to github.

pyrex

view Tests/6/extimported.c @ 86:da6e97bb7e6d

Multiple compilation fixed
author Gregory Ewing <greg.ewing@canterbury.ac.nz>
date Sat May 24 15:50:12 2008 +1200 (4 years ago)
parents 12072e0e4fd5
children 94d46b3c5354
line source
1 /* Generated by Pyrex */
3 #define PY_SSIZE_T_CLEAN
4 #include "Python.h"
5 #include "structmember.h"
6 #ifndef PY_LONG_LONG
7 #define PY_LONG_LONG LONG_LONG
8 #endif
9 #if PY_VERSION_HEX < 0x02050000
10 typedef int Py_ssize_t;
11 #define PY_SSIZE_T_MAX INT_MAX
12 #define PY_SSIZE_T_MIN INT_MIN
13 #define PyInt_FromSsize_t(z) PyInt_FromLong(z)
14 #define PyInt_AsSsize_t(o) PyInt_AsLong(o)
15 #endif
16 #ifndef WIN32
17 #ifndef __stdcall
18 #define __stdcall
19 #endif
20 #ifndef __cdecl
21 #define __cdecl
22 #endif
23 #endif
24 #ifdef __cplusplus
25 #define __PYX_EXTERN_C extern "C"
26 #else
27 #define __PYX_EXTERN_C extern
28 #endif
29 #include <math.h>
32 typedef struct {PyObject **p; int i; char *s; long n;} __Pyx_StringTabEntry; /*proto*/
34 static PyObject *__pyx_m;
35 static PyObject *__pyx_b;
36 static int __pyx_lineno;
37 static char *__pyx_filename;
38 static char **__pyx_f;
40 static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); /*proto*/
42 static PyTypeObject *__Pyx_ImportType(char *module_name, char *class_name, long size); /*proto*/
44 static PyObject *__Pyx_ImportModule(char *name); /*proto*/
46 static void __Pyx_AddTraceback(char *funcname); /*proto*/
48 /* Declarations from extimported */
51 /* Declarations from implementation of extimported */
53 struct __pyx_obj_11extimported_Ham {
54 PyObject_HEAD
55 };
58 static PyTypeObject *__pyx_ptype_11extimported_Ham = 0;
59 static struct __pyx_obj_11extimported_Ham *__pyx_v_11extimported_ham;
64 static __Pyx_StringTabEntry __pyx_string_tab[] = {
65 {0, 0, 0, 0}
66 };
70 /* Implementation of extimported */
72 static struct PyMethodDef __pyx_methods[] = {
73 {0, 0, 0, 0}
74 };
76 static void __pyx_init_filenames(void); /*proto*/
78 PyMODINIT_FUNC initextimported(void); /*proto*/
79 PyMODINIT_FUNC initextimported(void) {
80 __pyx_init_filenames();
81 __pyx_m = Py_InitModule4("extimported", __pyx_methods, 0, 0, PYTHON_API_VERSION);
82 if (!__pyx_m) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; goto __pyx_L1;};
83 Py_INCREF(__pyx_m);
84 __pyx_b = PyImport_AddModule("__builtin__");
85 if (!__pyx_b) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; goto __pyx_L1;};
86 if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; goto __pyx_L1;};
87 if (__Pyx_InitStrings(__pyx_string_tab) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; goto __pyx_L1;};
88 __pyx_v_11extimported_ham = ((struct __pyx_obj_11extimported_Ham *)Py_None); Py_INCREF(Py_None);
89 __pyx_ptype_11extimported_Ham = __Pyx_ImportType("Spam.Eggs", "Ham", sizeof(struct __pyx_obj_11extimported_Ham)); if (!__pyx_ptype_11extimported_Ham) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; goto __pyx_L1;}
91 /* "/Local/Projects/D/Pyrex/Source/Tests/6/extimported.pyx":6 */
92 Py_INCREF(Py_None);
93 Py_DECREF(((PyObject *)__pyx_v_11extimported_ham));
94 __pyx_v_11extimported_ham = ((struct __pyx_obj_11extimported_Ham *)Py_None);
95 return;
96 __pyx_L1:;
97 __Pyx_AddTraceback("extimported");
98 }
100 static char *__pyx_filenames[] = {
101 "extimported.pyx",
102 };
104 /* Runtime support code */
106 static void __pyx_init_filenames(void) {
107 __pyx_f = __pyx_filenames;
108 }
110 static int __Pyx_InitStrings(__Pyx_StringTabEntry *t) {
111 while (t->p) {
112 *t->p = PyString_FromStringAndSize(t->s, t->n - 1);
113 if (!*t->p)
114 return -1;
115 if (t->i)
116 PyString_InternInPlace(t->p);
117 ++t;
118 }
119 return 0;
120 }
122 #ifndef __PYX_HAVE_RT_ImportType
123 #define __PYX_HAVE_RT_ImportType
124 static PyTypeObject *__Pyx_ImportType(char *module_name, char *class_name,
125 long size)
126 {
127 PyObject *py_module = 0;
128 PyObject *result = 0;
130 py_module = __Pyx_ImportModule(module_name);
131 if (!py_module)
132 goto bad;
133 result = PyObject_GetAttrString(py_module, class_name);
134 if (!result)
135 goto bad;
136 if (!PyType_Check(result)) {
137 PyErr_Format(PyExc_TypeError,
138 "%s.%s is not a type object",
139 module_name, class_name);
140 goto bad;
141 }
142 if (((PyTypeObject *)result)->tp_basicsize != size) {
143 PyErr_Format(PyExc_ValueError,
144 "%s.%s does not appear to be the correct type object",
145 module_name, class_name);
146 goto bad;
147 }
148 return (PyTypeObject *)result;
149 bad:
150 Py_XDECREF(result);
151 return 0;
152 }
153 #endif
155 #ifndef __PYX_HAVE_RT_ImportModule
156 #define __PYX_HAVE_RT_ImportModule
157 static PyObject *__Pyx_ImportModule(char *name) {
158 PyObject *py_name = 0;
160 py_name = PyString_FromString(name);
161 if (!py_name)
162 goto bad;
163 return PyImport_Import(py_name);
164 bad:
165 Py_XDECREF(py_name);
166 return 0;
167 }
168 #endif
170 #include "compile.h"
171 #include "frameobject.h"
172 #include "traceback.h"
174 static void __Pyx_AddTraceback(char *funcname) {
175 PyObject *py_srcfile = 0;
176 PyObject *py_funcname = 0;
177 PyObject *py_globals = 0;
178 PyObject *empty_tuple = 0;
179 PyObject *empty_string = 0;
180 PyCodeObject *py_code = 0;
181 PyFrameObject *py_frame = 0;
183 py_srcfile = PyString_FromString(__pyx_filename);
184 if (!py_srcfile) goto bad;
185 py_funcname = PyString_FromString(funcname);
186 if (!py_funcname) goto bad;
187 py_globals = PyModule_GetDict(__pyx_m);
188 if (!py_globals) goto bad;
189 empty_tuple = PyTuple_New(0);
190 if (!empty_tuple) goto bad;
191 empty_string = PyString_FromString("");
192 if (!empty_string) goto bad;
193 py_code = PyCode_New(
194 0, /*int argcount,*/
195 0, /*int nlocals,*/
196 0, /*int stacksize,*/
197 0, /*int flags,*/
198 empty_string, /*PyObject *code,*/
199 empty_tuple, /*PyObject *consts,*/
200 empty_tuple, /*PyObject *names,*/
201 empty_tuple, /*PyObject *varnames,*/
202 empty_tuple, /*PyObject *freevars,*/
203 empty_tuple, /*PyObject *cellvars,*/
204 py_srcfile, /*PyObject *filename,*/
205 py_funcname, /*PyObject *name,*/
206 __pyx_lineno, /*int firstlineno,*/
207 empty_string /*PyObject *lnotab*/
208 );
209 if (!py_code) goto bad;
210 py_frame = PyFrame_New(
211 PyThreadState_Get(), /*PyThreadState *tstate,*/
212 py_code, /*PyCodeObject *code,*/
213 py_globals, /*PyObject *globals,*/
214 0 /*PyObject *locals*/
215 );
216 if (!py_frame) goto bad;
217 py_frame->f_lineno = __pyx_lineno;
218 PyTraceBack_Here(py_frame);
219 bad:
220 Py_XDECREF(py_srcfile);
221 Py_XDECREF(py_funcname);
222 Py_XDECREF(empty_tuple);
223 Py_XDECREF(empty_string);
224 Py_XDECREF(py_code);
225 Py_XDECREF(py_frame);
226 }