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