1 # Created by Skip Montanaro <skip@mojam.com>.
4 # function ':' type ':' [param name] ':' [refcount effect] ':' [comment]
5 # If the param name slot is empty, that line corresponds to the function's
6 # return value, otherwise it's the type of the named parameter.
8 # The first line of a function block gives type/refcount information for the
9 # function's return value. Successive lines with the same function name
10 # correspond to the function's parameter list and appear in the order the
11 # parameters appear in the function's prototype.
13 # For readability, each function's lines are surrounded by a blank line.
14 # The blocks are sorted alphabetically by function name.
16 # Refcount behavior is given for all PyObject* types: 0 (no change), +1
17 # (increment) and -1 (decrement). A blank refcount field indicates the
18 # parameter or function value is not a PyObject* and is therefore not
19 # subject to reference counting. A special case for the value "null"
20 # (without quotes) is used for functions which return a PyObject* type but
21 # always return NULL. This is used by some of the PyErr_*() functions, in
24 # The parameter names are as they appear in the API manual, not the source
27 PyBuffer_FromObject
:PyObject
*::+1:
28 PyBuffer_FromObject
:PyObject
*:base
:+1:
29 PyBuffer_FromObject
:int:offset
::
30 PyBuffer_FromObject
:int:size
::
32 PyBuffer_FromReadWriteObject
:PyObject
*::+1:
33 PyBuffer_FromReadWriteObject
:PyObject
*:base
:+1:
34 PyBuffer_FromReadWriteObject
:int:offset
::
35 PyBuffer_FromReadWriteObject
:int:size
::
37 PyBuffer_FromMemory
:PyObject
*::+1:
38 PyBuffer_FromMemory
:void
*:ptr
::
39 PyBuffer_FromMemory
:int:size
::
41 PyBuffer_FromReadWriteMemory
:PyObject
*::+1:
42 PyBuffer_FromReadWriteMemory
:void
*:ptr
::
43 PyBuffer_FromReadWriteMemory
:int:size
::
45 PyBuffer_New
:PyObject
*::+1:
46 PyBuffer_New
:int:size
::
48 PyCObject_AsVoidPtr
:void
*:::
49 PyCObject_AsVoidPtr
:PyObject
*:self
:0:
51 PyCObject_FromVoidPtr
:PyObject
*::+1:
52 PyCObject_FromVoidPtr
:void
*:cobj
::
53 PyCObject_FromVoidPtr
::void
(* destr
)(void
* )::
55 PyCObject_FromVoidPtrAndDesc
:PyObject
*::+1:
56 PyCObject_FromVoidPtrAndDesc
:void
*:cobj
::
57 PyCObject_FromVoidPtrAndDesc
:void
*:desc
::
58 PyCObject_FromVoidPtrAndDesc
:void
(*)(void
*,void
*):destr
::
60 PyCObject_GetDesc
:void
*:::
61 PyCObject_GetDesc
:PyObject
*:self
:0:
63 PyCallable_Check
:int:::
64 PyCallable_Check
:PyObject
*:o
:0:
66 PyComplex_AsCComplex
:Py_complex
:::
67 PyComplex_AsCComplex
:PyObject
*:op
:0:
69 PyComplex_Check
:int:::
70 PyComplex_Check
:PyObject
*:p
:0:
72 PyComplex_FromCComplex
:PyObject
*::+1:
73 PyComplex_FromCComplex
::Py_complex v
::
75 PyComplex_FromDoubles
:PyObject
*::+1:
76 PyComplex_FromDoubles
::double real
::
77 PyComplex_FromDoubles
::double imag
::
79 PyComplex_ImagAsDouble
:double
:::
80 PyComplex_ImagAsDouble
:PyObject
*:op
:0:
82 PyComplex_RealAsDouble
:double
:::
83 PyComplex_RealAsDouble
:PyObject
*:op
:0:
86 PyDict_Check
:PyObject
*:p
:0:
89 PyDict_Clear
:PyDictObject
*:p
:0:
92 PyDict_DelItem
:PyDictObject
*:p
:0:
93 PyDict_DelItem
:PyObject
*:key
:0:
95 PyDict_DelItemString
:int:::
96 PyDict_DelItemString
:PyDictObject
*:p
:0:
97 PyDict_DelItemString
:char
*:key
::
99 PyDict_GetItem
:PyObject
*::0:0
100 PyDict_GetItem
:PyDictObject
*:p
:0:
101 PyDict_GetItem
:PyObject
*:key
:0:
103 PyDict_GetItemString
:PyObject
*::0:
104 PyDict_GetItemString
:PyDictObject
*:p
:0:
105 PyDict_GetItemString
:char
*:key
::
107 PyDict_Items
:PyObject
*::+1:
108 PyDict_Items
:PyDictObject
*:p
:0:
110 PyDict_Keys
:PyObject
*::+1:
111 PyDict_Keys
:PyDictObject
*:p
:0:
113 PyDict_New
:PyObject
*::+1:
115 PyDict_Copy
:PyObject
*::+1:
116 PyDict_Copy
:PyObject
*:p
:0:
119 PyDict_Next
:PyDictObject
*:p
:0:
120 PyDict_Next
:int:ppos
::
121 PyDict_Next
:PyObject
**:pkey
:0:
122 PyDict_Next
:PyObject
**:pvalue
:0:
124 PyDict_SetItem
:int:::
125 PyDict_SetItem
:PyDictObject
*:p
:0:
126 PyDict_SetItem
:PyObject
*:key
:+1:
127 PyDict_SetItem
:PyObject
*:val
:+1:
129 PyDict_SetItemString
:int:::
130 PyDict_SetItemString
:PyDictObject
*:p
:0:
131 PyDict_SetItemString
:char
*:key
::
132 PyDict_SetItemString
:PyObject
*:val
:+1:
135 PyDict_Size
:PyDictObject
*:p
::
137 PyDict_Values
:PyObject
*::+1:
138 PyDict_Values
:PyDictObject
*:p
:0:
140 PyErr_BadArgument
:int:::
142 PyErr_BadInternalCall
:void
:::
144 PyErr_CheckSignals
:int:::
148 PyErr_ExceptionMatches
:int:::
149 PyErr_ExceptionMatches
:PyObject
*:exc
:0:
152 PyErr_Fetch
:PyObject
**:ptype
:0:
153 PyErr_Fetch
:PyObject
**:pvalue
:0:
154 PyErr_Fetch
:PyObject
**:ptraceback
:0:
156 PyErr_GivenExceptionMatches
:int:::
157 PyErr_GivenExceptionMatches
:PyObject
*:given
:0:
158 PyErr_GivenExceptionMatches
:PyObject
*:exc
:0:
160 PyErr_NewException
:PyObject
*::+1:
161 PyErr_NewException
:char
*:name
::
162 PyErr_NewException
:PyObject
*:base
:0:
163 PyErr_NewException
:PyObject
*:dict
:0:
165 PyErr_NoMemory
:PyObject
*::null
:
167 PyErr_NormalizeException
:void
:::
168 PyErr_NormalizeException
:PyObject
**:exc
::???
169 PyErr_NormalizeException
:PyObject
**:val
::???
170 PyErr_NormalizeException
:PyObject
**:tb
::???
172 PyErr_Occurred
:PyObject
*::0:
176 PyErr_Restore
:void
:::
177 PyErr_Restore
:PyObject
*:type
:-1:
178 PyErr_Restore
:PyObject
*:value
:-1:
179 PyErr_Restore
:PyObject
*:traceback
:-1:
181 PyErr_SetFromErrno
:PyObject
*::null
:
182 PyErr_SetFromErrno
:PyObject
*:type
:0:
184 PyErr_SetInterrupt
:void
:::
186 PyErr_SetNone
:void
:::
187 PyErr_SetNone
:PyObject
*:type
:+1:
189 PyErr_SetObject
:void
:::
190 PyErr_SetObject
:PyObject
*:type
:+1:
191 PyErr_SetObject
:PyObject
*:value
:+1:
193 PyErr_SetString
:void
:::
194 PyErr_SetString
:PyObject
*:type
:+1:
195 PyErr_SetString
:char
*:message
::
197 PyErr_Format
:PyObject
*::null
:
198 PyErr_Format
:PyObject
*:exception
:+1:
199 PyErr_Format
:char
*:format
::
202 PyEval_AcquireLock
:void
:::
204 PyEval_AcquireThread
:void
:::
205 PyEval_AcquireThread
:PyThreadState
*:tstate
::
207 PyEval_InitThreads
:void
:::
209 PyEval_ReleaseLock
:void
:::
211 PyEval_ReleaseThread
:void
:::
212 PyEval_ReleaseThread
:PyThreadState
*:tstate
::
214 PyEval_RestoreThread
:void
:::
215 PyEval_RestoreThread
:PyThreadState
*:tstate
::
217 PyEval_SaveThread
:PyThreadState
*:::
219 PyEval_EvalCode
:PyObject
*::+1:
220 PyEval_EvalCode
:PyCodeObject
*:co
:0:
221 PyEval_EvalCode
:PyObject
*:globals
:0:
222 PyEval_EvalCode
:PyObject
*:locals
:0:
224 PyFile_AsFile
:FILE
*:::
225 PyFile_AsFile
:PyFileObject
*:p
:0:
228 PyFile_Check
:PyObject
*:p
:0:
230 PyFile_FromFile
:PyObject
*::+1:
231 PyFile_FromFile
:FILE
*:fp
::
232 PyFile_FromFile
:char
*:name
::
233 PyFile_FromFile
:char
*:mode
::
234 PyFile_FromFile
:int(*:close)::
236 PyFile_FromString
:PyObject
*::+1:
237 PyFile_FromString
:char
*:name
::
238 PyFile_FromString
:char
*:mode
::
240 PyFile_GetLine
:PyObject
*::+1:
241 PyFile_GetLine
:PyObject
*:p
::
242 PyFile_GetLine
:int:n
::
244 PyFile_Name
:PyObject
*::0:
245 PyFile_Name
:PyObject
*:p
:0:
247 PyFile_SetBufSize
:void
:::
248 PyFile_SetBufSize
:PyFileObject
*:p
:0:
249 PyFile_SetBufSize
:int:n
::
251 PyFile_SoftSpace
:int:::
252 PyFile_SoftSpace
:PyFileObject
*:p
:0:
253 PyFile_SoftSpace
:int:newflag
::
255 PyFile_WriteObject
:int:::
256 PyFile_WriteObject
:PyObject
*:obj:0:
257 PyFile_WriteObject
:PyFileObject
*:p
:0:
258 PyFile_WriteObject
:int:flags
::
260 PyFile_WriteString
:int:::
261 PyFile_WriteString
:char
*:s
::
262 PyFile_WriteString
:PyFileObject
*:p
:0:
263 PyFile_WriteString
:int:flags
::
265 PyFloat_AS_DOUBLE
:double
:::
266 PyFloat_AS_DOUBLE
:PyObject
*:pyfloat
:0:
268 PyFloat_AsDouble
:double
:::
269 PyFloat_AsDouble
:PyObject
*:pyfloat
:0:
272 PyFloat_Check
:PyObject
*:p
:0:
274 PyFloat_FromDouble
:PyObject
*::+1:
275 PyFloat_FromDouble
:double
:v
::
277 PyImport_AddModule
:PyObject
*::0:reference borrowed
from sys.modules
278 PyImport_AddModule
:char
*:name
::
280 PyImport_Cleanup
:void
:::
282 PyImport_ExecCodeModule
:PyObject
*::+1:
283 PyImport_ExecCodeModule
:char
*:name
::
284 PyImport_ExecCodeModule
:PyObject
*:co
:0:
286 PyImport_GetMagicNumber
:long
:::
288 PyImport_GetModuleDict
:PyObject
*::0:
290 PyImport_Import
:PyObject
*::+1:
291 PyImport_Import
:PyObject
*:name
:0:
293 PyImport_ImportFrozenModule
:int:::
294 PyImport_ImportFrozenModule
:char
*:::
296 PyImport_ImportModule
:PyObject
*::+1:
297 PyImport_ImportModule
:char
*:name
::
299 PyImport_ImportModuleEx
:PyObject
*::+1:
300 PyImport_ImportModuleEx
:char
*:name
::
301 PyImport_ImportModuleEx
:PyObject
*:globals
:0:???
302 PyImport_ImportModuleEx
:PyObject
*:locals
:0:???
303 PyImport_ImportModuleEx
:PyObject
*:fromlist
:0:???
305 PyImport_ReloadModule
:PyObject
*::+1:
306 PyImport_ReloadModule
:PyObject
*:m
:0:
308 PyInt_AS_LONG
:long
:::
309 PyInt_AS_LONG
:PyIntObject
*:io
:0:
312 PyInt_AsLong
:PyObject
*:io
:0:
315 PyInt_Check
:PyObject
*::0:
317 PyInt_FromLong
:PyObject
*::+1:
318 PyInt_FromLong
:long
:ival
::
322 PyInterpreterState_Clear
:void
:::
323 PyInterpreterState_Clear
:PyInterpreterState
*:interp
::
325 PyInterpreterState_Delete
:void
:::
326 PyInterpreterState_Delete
:PyInterpreterState
*:interp
::
328 PyInterpreterState_New
:PyInterpreterState
*:::
331 PyList_Append
:PyObject
*:list
:0:
332 PyList_Append
:PyObject
*:item
:+1:
334 PyList_AsTuple
:PyObject
*::+1:
335 PyList_AsTuple
:PyObject
*:list
:0:
338 PyList_Check
:PyObject
*:p
:0:
340 PyList_GET_ITEM
:PyObject
*::0:
341 PyList_GET_ITEM
:PyObject
*:list
:0:
342 PyList_GET_ITEM
:int:i
:0:
344 PyList_GET_SIZE
:int:::
345 PyList_GET_SIZE
:PyObject
*:list
:0:
347 PyList_GetItem
:PyObject
*::0:
348 PyList_GetItem
:PyObject
*:list
:0:
349 PyList_GetItem
:int:index
::
351 PyList_GetSlice
:PyObject
*::+1:
352 PyList_GetSlice
:PyObject
*:list
:0:
353 PyList_GetSlice
:int:low
::
354 PyList_GetSlice
:int:high
::
357 PyList_Insert
:PyObject
*:list
:0:
358 PyList_Insert
:int:index
::
359 PyList_Insert
:PyObject
*:item
:+1:
361 PyList_New
:PyObject
*::+1:
364 PyList_Reverse
:int:::
365 PyList_Reverse
:PyObject
*:list
:0:
367 PyList_SET_ITEM
:PyObject
*::0:
368 PyList_SET_ITEM
:PyObject
*:list
:0:
369 PyList_SET_ITEM
:int:i
::
370 PyList_SET_ITEM
:PyObject
*:o
:0:
372 PyList_SetItem
:int:::
373 PyList_SetItem
:PyObject
*:list
:0:
374 PyList_SetItem
:int:index
::
375 PyList_SetItem
:PyObject
*:item
:0:
377 PyList_SetSlice
:int:::
378 PyList_SetSlice
:PyObject
*:list
:0:
379 PyList_SetSlice
:int:low
::
380 PyList_SetSlice
:int:high
::
381 PyList_SetSlice
:PyObject
*:itemlist
:0:but increfs its elements?
384 PyList_Size
:PyObject
*:list
:0:
387 PyList_Sort
:PyObject
*:list
:0:
389 PyLong_AsDouble
:double
:::
390 PyLong_AsDouble
:PyObject
*:pylong
:0:
392 PyLong_AsLong
:long
:::
393 PyLong_AsLong
:PyObject
*:pylong
:0:
395 PyLong_AsUnsignedLong
:unsigned long
:::
396 PyLong_AsUnsignedLong
:PyObject
*:pylong
:0:
399 PyLong_Check
:PyObject
*:p
:0:
401 PyLong_FromDouble
:PyObject
*::+1:
402 PyLong_FromDouble
:double
:v
::
404 PyLong_FromLong
:PyObject
*::+1:
405 PyLong_FromLong
:long
:v
::
407 PyLong_FromString
:PyObject
*::+1:
408 PyLong_FromString
:char
*:str
::
409 PyLong_FromString
:char
**:pend
::
410 PyLong_FromString
:int:base
::
412 PyLong_FromUnsignedLong
:PyObject
*::+1:
413 PyLong_FromUnsignedLong
:unsignedlong
:v
::
415 PyMapping_Check
:int:::
416 PyMapping_Check
:PyObject
*:o
:0:
418 PyMapping_DelItem
:int:::
419 PyMapping_DelItem
:PyObject
*:o
:0:
420 PyMapping_DelItem
:PyObject
*:key
:0:
422 PyMapping_DelItemString
:int:::
423 PyMapping_DelItemString
:PyObject
*:o
:0:
424 PyMapping_DelItemString
:char
*:key
::
426 PyMapping_GetItemString
:PyObject
*::+1:
427 PyMapping_GetItemString
:PyObject
*:o
:0:
428 PyMapping_GetItemString
:char
*:key
::
430 PyMapping_HasKey
:int:::
431 PyMapping_HasKey
:PyObject
*:o
:0:
432 PyMapping_HasKey
:PyObject
*:key
::
434 PyMapping_HasKeyString
:int:::
435 PyMapping_HasKeyString
:PyObject
*:o
:0:
436 PyMapping_HasKeyString
:char
*:key
::
438 PyMapping_Items
:PyObject
*::+1:
439 PyMapping_Items
:PyObject
*:o
:0:
441 PyMapping_Keys
:PyObject
*::+1:
442 PyMapping_Keys
:PyObject
*:o
:0:
444 PyMapping_Length
:int:::
445 PyMapping_Length
:PyObject
*:o
:0:
447 PyMapping_SetItemString
:int:::
448 PyMapping_SetItemString
:PyObject
*:o
:0:
449 PyMapping_SetItemString
:char
*:key
::
450 PyMapping_SetItemString
:PyObject
*:v
:+1:
452 PyMapping_Values
:PyObject
*::+1:
453 PyMapping_Values
:PyObject
*:o
:0:
455 PyModule_GetDict
:PyObject
*::0:
456 PyModule_GetDict
::PyObject
* module
:0:
458 PyModule_GetFilename
:char
*:::
459 PyModule_GetFilename
:PyObject
*:module
:0:
461 PyModule_GetName
:char
*:::
462 PyModule_GetName
:PyObject
*:module
:0:
464 PyModule_New
:PyObject
*::+1:
465 PyModule_New
::char
* name
::
467 PyNumber_Absolute
:PyObject
*::+1:
468 PyNumber_Absolute
:PyObject
*:o
:0:
470 PyNumber_Add
:PyObject
*::+1:
471 PyNumber_Add
:PyObject
*:o1
:0:
472 PyNumber_Add
:PyObject
*:o2
:0:
474 PyNumber_And
:PyObject
*::+1:
475 PyNumber_And
:PyObject
*:o1
:0:
476 PyNumber_And
:PyObject
*:o2
:0:
478 PyNumber_Check
:PyObject
*:o
:0:
479 PyNumber_Check
:int:::
481 PyNumber_Coerce
:int:::
482 PyNumber_Coerce
:PyObject
**:p1
:+1:
483 PyNumber_Coerce
:PyObject
**:p2
:+1:
485 PyNumber_Divide
:PyObject
*::+1:
486 PyNumber_Divide
:PyObject
*:o1
:0:
487 PyNumber_Divide
:PyObject
*:o2
:0:
489 PyNumber_Divmod
:PyObject
*::+1:
490 PyNumber_Divmod
:PyObject
*:o1
:0:
491 PyNumber_Divmod
:PyObject
*:o2
:0:
493 PyNumber_Float
:PyObject
*::+1:
494 PyNumber_Float
:PyObject
*:o
:0:
496 PyNumber_Int
:PyObject
*::+1:
497 PyNumber_Int
:PyObject
*:o
:0:
499 PyNumber_Invert
:PyObject
*::+1:
500 PyNumber_Invert
:PyObject
*:o
:0:
502 PyNumber_Long
:PyObject
*::+1:
503 PyNumber_Long
:PyObject
*:o
:0:
505 PyNumber_Lshift
:PyObject
*::+1:
506 PyNumber_Lshift
:PyObject
*:o1
:0:
507 PyNumber_Lshift
:PyObject
*:o2
:0:
509 PyNumber_Multiply
:PyObject
*::+1:
510 PyNumber_Multiply
:PyObject
*:o1
:0:
511 PyNumber_Multiply
:PyObject
*:o2
:0:
513 PyNumber_Negative
:PyObject
*::+1:
514 PyNumber_Negative
:PyObject
*:o
:0:
516 PyNumber_Or
:PyObject
*::+1:
517 PyNumber_Or
:PyObject
*:o1
:0:
518 PyNumber_Or
:PyObject
*:o2
:0:
520 PyNumber_Positive
:PyObject
*::+1:
521 PyNumber_Positive
:PyObject
*:o
:0:
523 PyNumber_Power
:PyObject
*::+1:
524 PyNumber_Power
:PyObject
*:o1
:0:
525 PyNumber_Power
:PyObject
*:o2
:0:
526 PyNumber_Power
:PyObject
*:o3
:0:
528 PyNumber_Remainder
:PyObject
*::+1:
529 PyNumber_Remainder
:PyObject
*:o1
:0:
530 PyNumber_Remainder
:PyObject
*:o2
:0:
532 PyNumber_Rshift
:PyObject
*::+1:
533 PyNumber_Rshift
:PyObject
*:o1
:0:
534 PyNumber_Rshift
:PyObject
*:o2
:0:
536 PyNumber_Subtract
:PyObject
*::+1:
537 PyNumber_Subtract
:PyObject
*:o1
:0:
538 PyNumber_Subtract
:PyObject
*:o2
:0:
540 PyNumber_Xor
:PyObject
*::+1:
541 PyNumber_Xor
:PyObject
*:o1
:0:
542 PyNumber_Xor
:PyObject
*:o2
:0:
544 PyOS_GetLastModificationTime
:long
:::
545 PyOS_GetLastModificationTime
:char
*:filename
::
547 PyObject_AsFileDescriptor
:int:::
548 PyObject_AsFileDescriptor
:PyObject
*:o
:0:
550 PyObject_CallFunction
:PyObject
*::+1:
551 PyObject_CallFunction
:PyObject
*:callable_object
:0:
552 PyObject_CallFunction
:char
*:format
::
553 PyObject_CallFunction
::...
::
555 PyObject_CallMethod
:PyObject
*::+1:
556 PyObject_CallMethod
:PyObject
*:o
:0:
557 PyObject_CallMethod
:char
*:m
::
558 PyObject_CallMethod
:char
*:format
::
559 PyObject_CallMethod
::...
::
561 PyObject_CallObject
:PyObject
*::+1:
562 PyObject_CallObject
:PyObject
*:callable_object
:0:
563 PyObject_CallObject
:PyObject
*:args
:0:
566 PyObject_Cmp
:PyObject
*:o1
:0:
567 PyObject_Cmp
:PyObject
*:o2
:0:
568 PyObject_Cmp
:int*:result
::
570 PyObject_Compare
:int:::
571 PyObject_Compare
:PyObject
*:o1
:0:
572 PyObject_Compare
:PyObject
*:o2
:0:
574 PyObject_DelAttr
:int:::
575 PyObject_DelAttr
:PyObject
*:o
:0:
576 PyObject_DelAttr
:PyObject
*:attr_name
:0:
578 PyObject_DelAttrString
:int:::
579 PyObject_DelAttrString
:PyObject
*:o
:0:
580 PyObject_DelAttrString
:char
*:attr_name
::
582 PyObject_DelItem
:int:::
583 PyObject_DelItem
:PyObject
*:o
:0:
584 PyObject_DelItem
:PyObject
*:key
:0:
586 PyObject_GetAttr
:PyObject
*::+1:
587 PyObject_GetAttr
:PyObject
*:o
:0:
588 PyObject_GetAttr
:PyObject
*:attr_name
:0:
590 PyObject_GetAttrString
:PyObject
*::+1:
591 PyObject_GetAttrString
:PyObject
*:o
:0:
592 PyObject_GetAttrString
:char
*:attr_name
::
594 PyObject_GetItem
:PyObject
*::+1:
595 PyObject_GetItem
:PyObject
*:o
:0:
596 PyObject_GetItem
:PyObject
*:key
:0:
598 PyObject_HasAttr
:int:::
599 PyObject_HasAttr
:PyObject
*:o
:0:
600 PyObject_HasAttr
:PyObject
*:attr_name
:0:
602 PyObject_HasAttrString
:int:::
603 PyObject_HasAttrString
:PyObject
*:o
:0:
604 PyObject_HasAttrString
:char
*:attr_name
:0:
607 PyObject_Hash
:PyObject
*:o
:0:
609 PyObject_IsTrue
:int:::
610 PyObject_IsTrue
:PyObject
*:o
:0:
612 PyObject_Length
:int:::
613 PyObject_Length
:PyObject
*:o
:0:
615 PyObject_Print
:int:::
616 PyObject_Print
:PyObject
*:o
:0:
617 PyObject_Print
:FILE
*:fp
::
618 PyObject_Print
:int:flags
::
620 PyObject_Repr
:PyObject
*::+1:
621 PyObject_Repr
:PyObject
*:o
:0:
623 PyObject_SetAttr
:int:::
624 PyObject_SetAttr
:PyObject
*:o
:0:
625 PyObject_SetAttr
:PyObject
*:attr_name
:0:
626 PyObject_SetAttr
:PyObject
*:v
:+1:
628 PyObject_SetAttrString
:int:::
629 PyObject_SetAttrString
:PyObject
*:o
:0:
630 PyObject_SetAttrString
:char
*:attr_name
::
631 PyObject_SetAttrString
:PyObject
*:v
:+1:
633 PyObject_SetItem
:int:::
634 PyObject_SetItem
:PyObject
*:o
:0:
635 PyObject_SetItem
:PyObject
*:key
:0:
636 PyObject_SetItem
:PyObject
*:v
:+1:
638 PyObject_Str
:PyObject
*::+1:
639 PyObject_Str
:PyObject
*:o
:0:
641 PyObject_Type
:PyObject
*::+1:
642 PyObject_Type
:PyObject
*:o
:0:
644 PyParser_SimpleParseFile
:struct _node
*:::
645 PyParser_SimpleParseFile
:FILE
*:fp
::
646 PyParser_SimpleParseFile
:char
*:filename
::
647 PyParser_SimpleParseFile
:int:start
::
649 PyParser_SimpleParseString
:struct _node
*:::
650 PyParser_SimpleParseString
:char
*:str
::
651 PyParser_SimpleParseString
:int:start
::
654 PyRun_AnyFile
:FILE
*:fp
::
655 PyRun_AnyFile
:char
*:filename
::
657 PyRun_File
:PyObject
*::+1:???
-- same as eval_code2
()
658 PyRun_File
:FILE
*:fp
::
659 PyRun_File
:char
*:filename
::
660 PyRun_File
:int:start
::
661 PyRun_File
:PyObject
*:globals
:0:
662 PyRun_File
:PyObject
*:locals
:0:
664 PyRun_InteractiveLoop
:int:::
665 PyRun_InteractiveLoop
:FILE
*:fp
::
666 PyRun_InteractiveLoop
:char
*:filename
::
668 PyRun_InteractiveOne
:int:::
669 PyRun_InteractiveOne
:FILE
*:fp
::
670 PyRun_InteractiveOne
:char
*:filename
::
672 PyRun_SimpleFile
:int:::
673 PyRun_SimpleFile
:FILE
*:fp
::
674 PyRun_SimpleFile
:char
*:filename
::
676 PyRun_SimpleString
:int:::
677 PyRun_SimpleString
:char
*:command
::
679 PyRun_String
:PyObject
*::+1:???
-- same as eval_code2
()
680 PyRun_String
:char
*:str
::
681 PyRun_String
:int:start
::
682 PyRun_String
:PyObject
*:globals
:0:
683 PyRun_String
:PyObject
*:locals
:0:
685 PySequence_Check
:int:::
686 PySequence_Check
:PyObject
*:o
:0:
688 PySequence_Concat
:PyObject
*::+1:
689 PySequence_Concat
:PyObject
*:o1
:0:
690 PySequence_Concat
:PyObject
*:o2
:0:
692 PySequence_Count
:int:::
693 PySequence_Count
:PyObject
*:o
:0:
694 PySequence_Count
:PyObject
*:value
:0:
696 PySequence_DelItem
:int:::
697 PySequence_DelItem
:PyObject
*:o
:0:
698 PySequence_DelItem
:int:i
::
700 PySequence_DelSlice
:int:::
701 PySequence_DelSlice
:PyObject
*:o
:0:
702 PySequence_DelSlice
:int:i1
::
703 PySequence_DelSlice
:int:i2
::
705 PySequence_GetItem
:PyObject
*::+1:
706 PySequence_GetItem
:PyObject
*:o
:0:
707 PySequence_GetItem
:int:i
::
709 PySequence_GetSlice
:PyObject
*::+1:
710 PySequence_GetSlice
:PyObject
*:o
:0:
711 PySequence_GetSlice
:int:i1
::
712 PySequence_GetSlice
:int:i2
::
715 PySequence_In
:PyObject
*:o
:0:
716 PySequence_In
:PyObject
*:value
:0:
718 PySequence_Index
:int:::
719 PySequence_Index
:PyObject
*:o
:0:
720 PySequence_Index
:PyObject
*:value
:0:
722 PySequence_Repeat
:PyObject
*::+1:
723 PySequence_Repeat
:PyObject
*:o
:0:
724 PySequence_Repeat
:int:count
::
726 PySequence_SetItem
:int:::
727 PySequence_SetItem
:PyObject
*:o
:0:
728 PySequence_SetItem
:int:i
::
729 PySequence_SetItem
:PyObject
*:v
:+1:
731 PySequence_SetSlice
:int:::
732 PySequence_SetSlice
:PyObject
*:o
:0:
733 PySequence_SetSlice
:int:i1
::
734 PySequence_SetSlice
:int:i2
::
735 PySequence_SetSlice
:PyObject
*:v
:+1:
737 PySequence_List
:PyObject
*::+1:
738 PySequence_List
:PyObject
*:o
:0:
740 PySequence_Tuple
:PyObject
*::+1:
741 PySequence_Tuple
:PyObject
*:o
:0:
743 PyString_AS_STRING
:char
*:::
744 PyString_AS_STRING
:PyObject
*:string
:0:
746 PyString_AsString
:char
*:::
747 PyString_AsString
:PyObject
*:string
:0:
749 PyString_Check
:int:::
750 PyString_Check
:PyObject
*:o
:0:
752 PyString_Concat
:void
:::
753 PyString_Concat
:PyObject
**:string
:0:???
-- replaces w
/ new string
or NULL
754 PyString_Concat
:PyObject
*:newpart
:0:
756 PyString_ConcatAndDel
:void
:::
757 PyString_ConcatAndDel
:PyObject
**:string
:0:???
-- replaces w
/ new string
or NULL
758 PyString_ConcatAndDel
:PyObject
*:newpart
:-1:
760 PyString_Format
:PyObject
*::+1:
761 PyString_Format
:PyObject
*:format
:0:
762 PyString_Format
:PyObject
*:args
:0:
764 PyString_FromString
:PyObject
*::+1:
765 PyString_FromString
:const char
*:v
::
767 PyString_FromStringAndSize
:PyObject
*::+1:
768 PyString_FromStringAndSize
:const char
*:v
::
769 PyString_FromStringAndSize
:int:len
::
771 PyString_GET_SIZE
:int:::
772 PyString_GET_SIZE
:PyObject
*:string
:0:
774 PyString_InternFromString
:PyObject
*::+1:
775 PyString_InternFromString
:const char
*:v
::
777 PyString_InternInPlace
:void
:::
778 PyString_InternInPlace
:PyObject
**:string
:+1:???
781 PyString_Size
:PyObject
*:string
:0:
783 PyString_Decode
:PyObject
*::+1:
784 PyString_Decode
:const char
*:s
::
785 PyString_Decode
:int:size
::
786 PyString_Decode
:const char
*:encoding
::
787 PyString_Decode
:const char
*:errors
::
789 PyString_Encode
:PyObject
*::+1:
790 PyString_Encode
:const char
*:s
::
791 PyString_Encode
:int:size
::
792 PyString_Encode
:const char
*:encoding
::
793 PyString_Encode
:const char
*:errors
::
795 PyString_AsEncodedString
:PyObject
*::+1:
796 PyString_AsEncodedString
:PyObject
*:str
::
797 PyString_AsEncodedString
:const char
*:encoding
::
798 PyString_AsEncodedString
:const char
*:errors
::
801 PySys_SetArgv
:int:argc
::
802 PySys_SetArgv
:char
**:argv
::
804 PyThreadState_Clear
:void
:::
805 PyThreadState_Clear
:PyThreadState
*:tstate
::
807 PyThreadState_Delete
:void
:::
808 PyThreadState_Delete
:PyThreadState
*:tstate
::
810 PyThreadState_Get
:PyThreadState
*:::
812 PyThreadState_New
:PyThreadState
*:::
813 PyThreadState_New
:PyInterpreterState
*:interp
::
815 PyThreadState_Swap
:PyThreadState
*:::
816 PyThreadState_Swap
:PyThreadState
*:tstate
::
819 PyTuple_Check
:PyObject
*:p
:0:
821 PyTuple_GET_ITEM
:PyObject
*::0:
822 PyTuple_GET_ITEM
:PyTupleObject
*:p
:0:
823 PyTuple_GET_ITEM
:int:pos
::
825 PyTuple_GetItem
:PyObject
*::0:
826 PyTuple_GetItem
:PyTupleObject
*:p
:0:
827 PyTuple_GetItem
:int:pos
::
829 PyTuple_GetSlice
:PyObject
*::+1:
830 PyTuple_GetSlice
:PyTupleObject
*:p
:0:
831 PyTuple_GetSlice
:int:low
::
832 PyTuple_GetSlice
:int:high
::
834 PyTuple_New
:PyObject
*::+1:
835 PyTuple_New
:int:len
::
837 PyTuple_SET_ITEM
:void
:::
838 PyTuple_SET_ITEM
:PyTupleObject
*:p
:0:
839 PyTuple_SET_ITEM
:int:pos
::
840 PyTuple_SET_ITEM
:PyObject
*:o
:0:
842 PyTuple_SetItem
:int:::
843 PyTuple_SetItem
:PyTupleObject
*:p
:0:
844 PyTuple_SetItem
:int:pos
::
845 PyTuple_SetItem
:PyObject
*:o
:0:
848 PyTuple_Size
:PyTupleObject
*:p
:0:
850 PyUnicode_Check
:int:::
851 PyUnicode_Check
:PyObject
*:o
:0:
853 PyUnicode_GET_SIZE
:int:::
854 PyUnicode_GET_SIZE
:PyObject
*:o
:0:
856 PyUnicode_GET_DATA_SIZE
:int:::
857 PyUnicode_GET_DATA_SIZE
:PyObject
*:o
:0:
859 PyUnicode_AS_UNICODE
:Py_UNICODE
*:::
860 PyUnicode_AS_UNICODE
:PyObject
*:o
:0:
862 PyUnicode_AS_DATA
:const char
*:::
863 PyUnicode_AS_DATA
:PyObject
*:o
:0:
865 Py_UNICODE_ISSPACE
:int:::
866 Py_UNICODE_ISSPACE
:Py_UNICODE
:ch
::
868 Py_UNICODE_ISLOWER
:int:::
869 Py_UNICODE_ISLOWER
:Py_UNICODE
:ch
::
871 Py_UNICODE_ISUPPER
:int:::
872 Py_UNICODE_ISUPPER
:Py_UNICODE
:ch
::
874 Py_UNICODE_ISTITLE
:int:::
875 Py_UNICODE_ISTITLE
:Py_UNICODE
:ch
::
877 Py_UNICODE_ISLINEBREAK
:int:::
878 Py_UNICODE_ISLINEBREAK
:Py_UNICODE
:ch
::
880 Py_UNICODE_ISDECIMAL
:int:::
881 Py_UNICODE_ISDECIMAL
:Py_UNICODE
:ch
::
883 Py_UNICODE_ISDIGIT
:int:::
884 Py_UNICODE_ISDIGIT
:Py_UNICODE
:ch
::
886 Py_UNICODE_ISNUMERIC
:int:::
887 Py_UNICODE_ISNUMERIC
:Py_UNICODE
:ch
::
889 Py_UNICODE_TOLOWER
:Py_UNICODE
:::
890 Py_UNICODE_TOLOWER
:Py_UNICODE
:ch
::
892 Py_UNICODE_TOUPPER
:Py_UNICODE
:::
893 Py_UNICODE_TOUPPER
:Py_UNICODE
:ch
::
895 Py_UNICODE_TOTITLE
:Py_UNICODE
:::
896 Py_UNICODE_TOTITLE
:Py_UNICODE
:ch
::
898 Py_UNICODE_TODECIMAL
:int:::
899 Py_UNICODE_TODECIMAL
:Py_UNICODE
:ch
::
901 Py_UNICODE_TODIGIT
:int:::
902 Py_UNICODE_TODIGIT
:Py_UNICODE
:ch
::
904 Py_UNICODE_TONUMERIC
:double
:::
905 Py_UNICODE_TONUMERIC
:Py_UNICODE
:ch
::
907 PyUnicode_FromUnicode
:PyObject
*::+1:
908 PyUnicode_FromUnicode
:const Py_UNICODE
*:u
::
909 PyUnicode_FromUnicode
:int:size
::
911 PyUnicode_AsUnicode
:Py_UNICODE
*:::
912 PyUnicode_AsUnicode
:PyObject
:*unicode
:0:
914 PyUnicode_GetSize
:int:::
915 PyUnicode_GetSize
:PyObject
:*unicode
:0:
917 PyUnicode_FromObject
:PyObject
*::+1:
918 PyUnicode_FromObject
:PyObject
*:*obj:0:
920 PyUnicode_FromEncodedObject
:PyObject
*::+1:
921 PyUnicode_FromEncodedObject
:PyObject
*:*obj:0:
922 PyUnicode_FromEncodedObject
:const char
*:encoding
::
923 PyUnicode_FromEncodedObject
:const char
*:errors
::
925 PyUnicode_FromWideChar
:PyObject
*::+1:
926 PyUnicode_FromWideChar
:const wchar_t
*:w
::
927 PyUnicode_FromWideChar
:int:size
::
929 PyUnicode_AsWideChar
:int:::
930 PyUnicode_AsWideChar
:PyObject
*:*unicode
:0:
931 PyUnicode_AsWideChar
:wchar_t
*:w
::
932 PyUnicode_AsWideChar
:int:size
::
934 PyUnicode_Decode
:PyObject
*::+1:
935 PyUnicode_Decode
:const char
*:s
::
936 PyUnicode_Decode
:int:size
::
937 PyUnicode_Decode
:const char
*:encoding
::
938 PyUnicode_Decode
:const char
*:errors
::
940 PyUnicode_Encode
:PyObject
*::+1:
941 PyUnicode_Encode
:const Py_UNICODE
*:s
::
942 PyUnicode_Encode
:int:size
::
943 PyUnicode_Encode
:const char
*:encoding
::
944 PyUnicode_Encode
:const char
*:errors
::
946 PyUnicode_AsEncodedString
:PyObject
*::+1:
947 PyUnicode_AsEncodedString
:PyObject
*:unicode
::
948 PyUnicode_AsEncodedString
:const char
*:encoding
::
949 PyUnicode_AsEncodedString
:const char
*:errors
::
951 PyUnicode_DecodeUTF8
:PyObject
*::+1:
952 PyUnicode_DecodeUTF8
:const char
*:s
::
953 PyUnicode_DecodeUTF8
:int:size
::
954 PyUnicode_DecodeUTF8
:const char
*:errors
::
956 PyUnicode_EncodeUTF8
:PyObject
*::+1:
957 PyUnicode_EncodeUTF8
:const Py_UNICODE
*:s
::
958 PyUnicode_EncodeUTF8
:int:size
::
959 PyUnicode_EncodeUTF8
:const char
*:errors
::
961 PyUnicode_AsUTF8String
:PyObject
*::+1:
962 PyUnicode_AsUTF8String
:PyObject
*:unicode
::
964 PyUnicode_DecodeUTF16
:PyObject
*::+1:
965 PyUnicode_DecodeUTF16
:const char
*:s
::
966 PyUnicode_DecodeUTF16
:int:size
::
967 PyUnicode_DecodeUTF16
:const char
*:errors
::
968 PyUnicode_DecodeUTF16
:int*:byteorder
::
970 PyUnicode_EncodeUTF16
:PyObject
*::+1:
971 PyUnicode_EncodeUTF16
:const Py_UNICODE
*:s
::
972 PyUnicode_EncodeUTF16
:int:size
::
973 PyUnicode_EncodeUTF16
:const char
*:errors
::
974 PyUnicode_EncodeUTF16
:int:byteorder
::
976 PyUnicode_AsUTF16String
:PyObject
*::+1:
977 PyUnicode_AsUTF16String
:PyObject
*:unicode
::
979 PyUnicode_DecodeUnicodeEscape
:PyObject
*::+1:
980 PyUnicode_DecodeUnicodeEscape
:const char
*:s
::
981 PyUnicode_DecodeUnicodeEscape
:int:size
::
982 PyUnicode_DecodeUnicodeEscape
:const char
*:errors
::
984 PyUnicode_EncodeUnicodeEscape
:PyObject
*::+1:
985 PyUnicode_EncodeUnicodeEscape
:const Py_UNICODE
*:s
::
986 PyUnicode_EncodeUnicodeEscape
:int:size
::
987 PyUnicode_EncodeUnicodeEscape
:const char
*:errors
::
989 PyUnicode_AsUnicodeEscapeString
:PyObject
*::+1:
990 PyUnicode_AsUnicodeEscapeString
:PyObject
*:unicode
::
992 PyUnicode_DecodeRawUnicodeEscape
:PyObject
*::+1:
993 PyUnicode_DecodeRawUnicodeEscape
:const char
*:s
::
994 PyUnicode_DecodeRawUnicodeEscape
:int:size
::
995 PyUnicode_DecodeRawUnicodeEscape
:const char
*:errors
::
997 PyUnicode_EncodeRawUnicodeEscape
:PyObject
*::+1:
998 PyUnicode_EncodeRawUnicodeEscape
:const Py_UNICODE
*:s
::
999 PyUnicode_EncodeRawUnicodeEscape
:int:size
::
1000 PyUnicode_EncodeRawUnicodeEscape
:const char
*:errors
::
1002 PyUnicode_AsRawUnicodeEscapeString
:PyObject
*::+1:
1003 PyUnicode_AsRawUnicodeEscapeString
:PyObject
*:unicode
::
1005 PyUnicode_DecodeLatin1
:PyObject
*::+1:
1006 PyUnicode_DecodeLatin1
:const char
*:s
::
1007 PyUnicode_DecodeLatin1
:int:size
::
1008 PyUnicode_DecodeLatin1
:const char
*:errors
::
1010 PyUnicode_EncodeLatin1
:PyObject
*::+1:
1011 PyUnicode_EncodeLatin1
:const Py_UNICODE
*:s
::
1012 PyUnicode_EncodeLatin1
:int:size
::
1013 PyUnicode_EncodeLatin1
:const char
*:errors
::
1015 PyUnicode_AsLatin1String
:PyObject
*::+1:
1016 PyUnicode_AsLatin1String
:PyObject
*:unicode
::
1018 PyUnicode_DecodeASCII
:PyObject
*::+1:
1019 PyUnicode_DecodeASCII
:const char
*:s
::
1020 PyUnicode_DecodeASCII
:int:size
::
1021 PyUnicode_DecodeASCII
:const char
*:errors
::
1023 PyUnicode_EncodeASCII
:PyObject
*::+1:
1024 PyUnicode_EncodeASCII
:const Py_UNICODE
*:s
::
1025 PyUnicode_EncodeASCII
:int:size
::
1026 PyUnicode_EncodeASCII
:const char
*:errors
::
1028 PyUnicode_AsASCIIString
:PyObject
*::+1:
1029 PyUnicode_AsASCIIString
:PyObject
*:unicode
::
1031 PyUnicode_DecodeCharmap
:PyObject
*::+1:
1032 PyUnicode_DecodeCharmap
:const char
*:s
::
1033 PyUnicode_DecodeCharmap
:int:size
::
1034 PyUnicode_DecodeCharmap
:PyObject
*:mapping
:0:
1035 PyUnicode_DecodeCharmap
:const char
*:errors
::
1037 PyUnicode_EncodeCharmap
:PyObject
*::+1:
1038 PyUnicode_EncodeCharmap
:const Py_UNICODE
*:s
::
1039 PyUnicode_EncodeCharmap
:int:size
::
1040 PyUnicode_EncodeCharmap
:PyObject
*:mapping
:0:
1041 PyUnicode_EncodeCharmap
:const char
*:errors
::
1043 PyUnicode_AsCharmapString
:PyObject
*::+1:
1044 PyUnicode_AsCharmapString
:PyObject
*:unicode
:0:
1045 PyUnicode_AsCharmapString
:PyObject
*:mapping
:0:
1047 PyUnicode_TranslateCharmap
:PyObject
*::+1:
1048 PyUnicode_TranslateCharmap
:const Py_UNICODE
*:s
::
1049 PyUnicode_TranslateCharmap
:int:size
::
1050 PyUnicode_TranslateCharmap
:PyObject
*:table
:0:
1051 PyUnicode_TranslateCharmap
:const char
*:errors
::
1053 PyUnicode_DecodeMBCS
:PyObject
*::+1:
1054 PyUnicode_DecodeMBCS
:const char
*:s
::
1055 PyUnicode_DecodeMBCS
:int:size
::
1056 PyUnicode_DecodeMBCS
:const char
*:errors
::
1058 PyUnicode_EncodeMBCS
:PyObject
*::+1:
1059 PyUnicode_EncodeMBCS
:const Py_UNICODE
*:s
::
1060 PyUnicode_EncodeMBCS
:int:size
::
1061 PyUnicode_EncodeMBCS
:const char
*:errors
::
1063 PyUnicode_AsMBCSString
:PyObject
*::+1:
1064 PyUnicode_AsMBCSString
:PyObject
*:unicode
::
1066 PyUnicode_Concat
:PyObject
*::+1:
1067 PyUnicode_Concat
:PyObject
*:left
:0:
1068 PyUnicode_Concat
:PyObject
*:right
:0:
1070 PyUnicode_Split
:PyObject
*::+1:
1071 PyUnicode_Split
:PyObject
*:left
:0:
1072 PyUnicode_Split
:PyObject
*:right
:0:
1073 PyUnicode_Split
:int:maxsplit
::
1075 PyUnicode_Splitlines
:PyObject
*::+1:
1076 PyUnicode_Splitlines
:PyObject
*:s
:0:
1077 PyUnicode_Splitlines
:int:maxsplit
::
1079 PyUnicode_Translate
:PyObject
*::+1:
1080 PyUnicode_Translate
:PyObject
*:str
:0:
1081 PyUnicode_Translate
:PyObject
*:table
:0:
1082 PyUnicode_Translate
:const char
*:errors
::
1084 PyUnicode_Join
:PyObject
*::+1:
1085 PyUnicode_Join
:PyObject
*:separator
:0:
1086 PyUnicode_Join
:PyObject
*:seq
:0:
1088 PyUnicode_Tailmatch
:PyObject
*::+1:
1089 PyUnicode_Tailmatch
:PyObject
*:str
:0:
1090 PyUnicode_Tailmatch
:PyObject
*:substr
:0:
1091 PyUnicode_Tailmatch
:int:start
::
1092 PyUnicode_Tailmatch
:int:end::
1093 PyUnicode_Tailmatch
:int:direction
::
1095 PyUnicode_Find
:PyObject
*::+1:
1096 PyUnicode_Find
:PyObject
*:str
:0:
1097 PyUnicode_Find
:PyObject
*:substr
:0:
1098 PyUnicode_Find
:int:start
::
1099 PyUnicode_Find
:int:end::
1100 PyUnicode_Find
:int:direction
::
1102 PyUnicode_Count
:PyObject
*::+1:
1103 PyUnicode_Count
:PyObject
*:str
:0:
1104 PyUnicode_Count
:PyObject
*:substr
:0:
1105 PyUnicode_Count
:int:start
::
1106 PyUnicode_Count
:int:end::
1108 PyUnicode_Replace
:PyObject
*::+1:
1109 PyUnicode_Replace
:PyObject
*:str
:0:
1110 PyUnicode_Replace
:PyObject
*:substr
:0:
1111 PyUnicode_Replace
:PyObject
*:replstr
:0:
1112 PyUnicode_Replace
:int:maxcount
::
1114 PyUnicode_Compare
:int:::
1115 PyUnicode_Compare
:PyObject
*:left
:0:
1116 PyUnicode_Compare
:PyObject
*:right
:0:
1118 PyUnicode_Format
:PyObject
*::+1:
1119 PyUnicode_Format
:PyObject
*:format
:0:
1120 PyUnicode_Format
:PyObject
*:args
:0:
1122 PyUnicode_Contains
:int:::
1123 PyUnicode_Contains
:PyObject
*:container
:0:
1124 PyUnicode_Contains
:PyObject
*:element
:0:
1127 Py_AtExit
:void
(*)():func
::
1129 Py_CompileString
:PyObject
*::+1:
1130 Py_CompileString
:char
*:str
::
1131 Py_CompileString
:char
*:filename
::
1132 Py_CompileString
:int:start
::
1135 Py_DECREF
:PyObject
*:o
:-1:
1137 Py_EndInterpreter
:void
:::
1138 Py_EndInterpreter
:PyThreadState
*:tstate
::
1141 Py_Exit
:int:status
::
1143 Py_FatalError
:void
:::
1144 Py_FatalError
:char
*:message
::
1146 Py_FdIsInteractive
:int:::
1147 Py_FdIsInteractive
:FILE
*:fp
::
1148 Py_FdIsInteractive
:char
*:filename
::
1152 Py_FindMethod
:PyObject
*::+1:
1153 Py_FindMethod
:PyMethodDef
[]:methods
::
1154 Py_FindMethod
:PyObject
*:self
:+1:
1155 Py_FindMethod
:char
*:name
::
1157 Py_GetBuildInfoconst
:char
*:::
1159 Py_GetCompilerconst
:char
*:::
1161 Py_GetCopyrightconst
:char
*:::
1163 Py_GetExecPrefix
:char
*:::
1167 Py_GetPlatformconst
:char
*:::
1169 Py_GetPrefix
:char
*:::
1171 Py_GetProgramFullPath
:char
*:::
1173 Py_GetProgramName
:char
*:::
1175 Py_GetVersionconst
:char
*:::
1178 Py_INCREF
:PyObject
*:o
:+1:
1180 Py_Initialize
:void
:::
1182 Py_IsInitialized
:int:::
1184 Py_NewInterpreter
:PyThreadState
*:::
1186 Py_SetProgramName
:void
:::
1187 Py_SetProgramName
:char
*:name
::
1190 Py_XDECREF
:PyObject
*:o
:-1:if o is
not NULL
1193 Py_XINCREF
:PyObject
*:o
:+1:if o is
not NULL
1195 _PyImport_FindExtension
:PyObject
*::0:??? see PyImport_AddModule
1196 _PyImport_FindExtension
:char
*:::
1197 _PyImport_FindExtension
:char
*:::
1199 _PyImport_Fini
:void
:::
1201 _PyImport_FixupExtension
:PyObject
*:::???
1202 _PyImport_FixupExtension
:char
*:::
1203 _PyImport_FixupExtension
:char
*:::
1205 _PyImport_Init
:void
:::
1207 _PyObject_New
:PyObject
*::+1:
1208 _PyObject_New
:PyTypeObject
*:type
:0:
1210 _PyObject_NewVar
:PyObject
*::+1:
1211 _PyObject_NewVar
:PyTypeObject
*:type
:0:
1212 _PyObject_NewVar
:int:size
::
1214 _PyString_Resize
:int:::
1215 _PyString_Resize
:PyObject
**:string
:+1:
1216 _PyString_Resize
:int:newsize
::
1218 _PyTuple_Resize
:int:::
1219 _PyTuple_Resize
:PyTupleObject
**:p
:+1:
1220 _PyTuple_Resize
:int:new
::
1221 _PyTuple_Resize
:int:last_is_sticky
::
1223 _Py_c_diff
:Py_complex
:::
1224 _Py_c_diff
:Py_complex
:left
::
1225 _Py_c_diff
:Py_complex
:right
::
1227 _Py_c_neg
:Py_complex
:::
1228 _Py_c_neg
:Py_complex
:complex
::
1230 _Py_c_pow
:Py_complex
:::
1231 _Py_c_pow
:Py_complex
:num
::
1232 _Py_c_pow
:Py_complex
:exp::
1234 _Py_c_prod
:Py_complex
:::
1235 _Py_c_prod
:Py_complex
:left
::
1236 _Py_c_prod
:Py_complex
:right
::
1238 _Py_c_quot
:Py_complex
:::
1239 _Py_c_quot
:Py_complex
:dividend
::
1240 _Py_c_quot
:Py_complex
:divisor
::
1242 _Py_c_sum
:Py_complex
:::
1243 _Py_c_sum
:Py_complex
:left
::
1244 _Py_c_sum
:Py_complex
:right
::