summaryrefslogtreecommitdiffstats
path: root/PC/python.def
blob: 77f26d3ca6c237c3b796bae3a6c8321a8a887851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
EXPORTS
	Py_GetCopyright
	Py_GetVersion
	Py_FindMethod
	_PyObject_New
	_PyString_Resize
	PySys_SetArgv
	PyObject_Cmp
	PyObject_CallObject
	PyObject_CallFunction
	PyObject_CallMethod
	PyObject_Type
	PyObject_Length
	PyObject_GetItem
	PyObject_SetItem
	PyNumber_Check
	PyNumber_Add
	PyNumber_Subtract
	PyNumber_Multiply
	PyNumber_Divide
	PyNumber_Remainder
	PyNumber_Divmod
	PyNumber_Power
	PyNumber_Negative
	PyNumber_Positive
	PyNumber_Absolute
	PyNumber_Invert
	PyNumber_Lshift
	PyNumber_Rshift
	PyNumber_And
	PyNumber_Xor
	PyNumber_Or
	PyNumber_Int
	PyNumber_Long
	PyNumber_Float
	PySequence_Check
	PySequence_Concat
	PySequence_Repeat
	PySequence_GetItem
	PySequence_GetSlice
	PySequence_SetItem
	PySequence_SetSlice
	PySequence_Tuple
	PySequence_Count
	PySequence_In
	PySequence_Index
	PyMapping_Check
	PyMapping_Length
	PyMapping_HasKeyString
	PyMapping_HasKey
	PyMapping_GetItemString
	PyMapping_SetItemString
	PyAccess_FromValue
	PyAccess_AsValue
	PyAccess_SetValue
	PyAccess_SetOwner
	PyAccess_Clone
	PyAccess_HasValue
	PyEval_CallObject
	PyEval_GetBuiltins
	PyEval_GetGlobals
	PyEval_GetLocals
	PyEval_GetOwner
	PyEval_GetFrame
	PyEval_GetRestricted
	Py_FlushLine
	Py_AddPendingCall
	Py_MakePendingCalls
	PyEval_InitThreads
	PyEval_SaveThread
	PyEval_RestoreThread
	PyArg_GetObject
	PyArg_GetLong
	PyArg_GetShort
	PyArg_GetFloat
	PyArg_GetString
	PyClass_New
	PyInstance_New
	PyMethod_New
	PyMethod_Function
	PyMethod_Self
	PyMethod_Class
	PyClass_IsSubclass
	PyNode_Compile
	PyCode_New
	PyErr_SetNone
	PyErr_SetObject
	PyErr_SetString
	PyErr_Occurred
	PyErr_Clear
	PyErr_Fetch
	PyErr_Restore
	PyErr_BadArgument
	PyErr_NoMemory
	PyErr_SetFromErrno
	PyErr_BadInternalCall
	PyErr_CheckSignals
	PyEval_EvalCode
	PyFile_FromFile
	PyFile_FromString
	PyFile_SetBufSize
	PyFile_AsFile
	PyFile_Name
	PyFile_GetLine
	PyFloat_FromDouble
	PyFloat_AsDouble
	PyFrame_BlockSetup
	PyFrame_BlockPop
	PyFrame_LocalsToFast
	PyFrame_FastToLocals
	PyFunction_New
	PyFunction_GetCode
	PyFunction_GetGlobals
	PyFunction_GetDefaults
	PyFunction_SetDefaults
	PyGrammar_FindDFA
	PyGrammar_LabelRepr
	PyGrammar_AddAccelerators
	PyImport_GetMagicNumber
	PyImport_ExecCodeModule
	PyImport_GetModuleDict
	PyImport_AddModule
	PyImport_ImportModule
	PyImport_ReloadModule
	PyImport_Cleanup
	PyInt_FromLong
	PyInt_AsLong
	PyOS_InterruptOccurred
	PyOS_InitInterrupts
	PyList_New
	PyList_Size
	PyList_GetItem
	PyList_SetItem
	PyList_Insert
	PyList_Append
	PyList_GetSlice
	PyList_SetSlice
	PyList_Sort
	PyList_Reverse
	PyList_AsTuple
	PyLong_FromLong
	PyLong_FromDouble
	PyLong_AsLong
	PyLong_AsDouble
	PyLong_FromString
	PyDict_New
	PyDict_GetItem
	PyDict_SetItem
	PyDict_DelItem
	PyDict_Clear
	PyDict_Keys
	PyDict_Values
	PyDict_Items
	PyDict_Size
	PyDict_GetItemString
	PyDict_SetItemString
	PyDict_DelItemString
	PyMarshal_WriteLongToFile
	PyMarshal_WriteObjectToFile
	PyMarshal_ReadLongFromFile
	PyMarshal_ReadObjectFromFile
	PyMarshal_ReadObjectFromString
	PyCFunction_GetFunction
	PyCFunction_GetSelf
	PyCFunction_GetFlags
	PyArg_Parse
	PyArg_ParseTuple
	Py_BuildValue
	Py_VaBuildValue
	Py_InitModule4
	PyModule_New
	PyModule_GetDict
	PyModule_GetName
	PyNode_New
	PyNode_AddChild
	PyNode_Free
	PyObject_Print
	PyObject_Repr
	PyObject_Str
	PyObject_Compare
	PyObject_GetAttrString
	PyObject_SetAttrString
	PyObject_HasAttrString
	PyObject_GetAttr
	PyObject_SetAttr
	PyObject_Hash
	PyObject_IsTrue
	PyCallable_Check
	PyParser_ParseString
	PyParser_ParseFile
	Py_FatalError
	Py_Initialize
	PyRun_AnyFile
	PyRun_SimpleString
	PyRun_SimpleFile
	PyRun_InteractiveOne
	PyRun_InteractiveLoop
	PyParser_SimpleParseString
	PyParser_SimpleParseFile
	PyRun_String
	PyRun_File
	Py_CompileString
	PyErr_Print
	Py_AtExit
	Py_Exit
	Py_Cleanup
	PyRange_New
	PyString_FromStringAndSize
	PyString_FromString
	PyString_Size
	PyString_AsString
	PyString_Concat
	PyString_ConcatAndDel
	PyString_Format
	PyMember_Get
	PyMember_Set
	PySys_GetObject
	PySys_SetObject
	PySys_GetFile
	PySys_Init
	PyToken_OneChar
	PyToken_TwoChars
	PyTraceBack_Here
	PyTraceBack_Fetch
	PyTraceBack_Store
	PyTraceBack_Print
	PyTuple_New
	PyTuple_Size
	PyTuple_GetItem
	PyTuple_SetItem
	PyTuple_GetSlice