annotate cos/python/Include/Python.h @ 34:8012221dd740

Fixes for uninitialized data. This causes problems on real machines
author windel
date Mon, 16 Jan 2012 13:46:06 +0100
parents 7f74363f4c82
children
rev   line source
27
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
1 #ifndef Py_PYTHON_H
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
2 #define Py_PYTHON_H
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
3
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
4 /* Include nearly all Python header files */
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
5
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
6 // #include "pyatomic.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
7
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
8 //#include "pymath.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
9 #include "pytime.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
10 #include "pymem.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
11
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
12 #include "object.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
13 #include "objimpl.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
14 #include "typeslots.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
15
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
16 #include "pydebug.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
17
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
18 #include "bytearrayobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
19 #include "bytesobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
20 #include "unicodeobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
21 #include "longobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
22 #include "longintrepr.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
23 #include "boolobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
24 #include "floatobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
25 #include "complexobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
26 #include "rangeobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
27 #include "memoryobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
28 #include "tupleobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
29 #include "listobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
30 #include "dictobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
31 #include "enumobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
32 #include "setobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
33 #include "methodobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
34 #include "moduleobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
35 #include "funcobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
36 #include "classobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
37 #include "fileobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
38 #include "pycapsule.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
39 #include "traceback.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
40 #include "sliceobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
41 #include "cellobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
42 #include "iterobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
43 #include "genobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
44 #include "descrobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
45 #include "warnings.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
46 #include "weakrefobject.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
47 #include "structseq.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
48 #include "accu.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
49
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
50 #include "codecs.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
51 #include "pyerrors.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
52
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
53 #include "pystate.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
54
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
55 #include "pyarena.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
56 #include "modsupport.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
57 #include "pythonrun.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
58 #include "ceval.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
59 #include "sysmodule.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
60 #include "intrcheck.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
61 #include "import.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
62
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
63 #include "abstract.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
64 #include "bltinmodule.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
65
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
66 #include "compile.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
67 #include "eval.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
68
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
69 #include "pyctype.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
70 #include "pystrtod.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
71 #include "pystrcmp.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
72 #include "dtoa.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
73 #include "fileutils.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
74 #include "pyfpe.h"
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
75
7f74363f4c82 Added some files for the python port
windel
parents:
diff changeset
76 #endif /* !Py_PYTHON_H */