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 # XXX NOTE: the 0/+1/-1 refcount information for arguments is
25 # confusing! Much more useful would be to indicate whether the
26 # function "steals" a reference to the argument or not. Take for
27 # example PyList_SetItem(list, i, item). This lists as a 0 change for
28 # both the list and the item arguments. However, in fact it steals a
29 # reference to the item argument!
31 # The parameter names are as they appear in the API manual, not the source
34 PyBuffer_FromObject
:PyObject
*::+1:
35 PyBuffer_FromObject
:PyObject
*:base
:+1:
36 PyBuffer_FromObject
:int:offset
::
37 PyBuffer_FromObject
:int:size
::
39 PyBuffer_FromReadWriteObject
:PyObject
*::+1:
40 PyBuffer_FromReadWriteObject
:PyObject
*:base
:+1:
41 PyBuffer_FromReadWriteObject
:int:offset
::
42 PyBuffer_FromReadWriteObject
:int:size
::
44 PyBuffer_FromMemory
:PyObject
*::+1:
45 PyBuffer_FromMemory
:void
*:ptr
::
46 PyBuffer_FromMemory
:int:size
::
48 PyBuffer_FromReadWriteMemory
:PyObject
*::+1:
49 PyBuffer_FromReadWriteMemory
:void
*:ptr
::
50 PyBuffer_FromReadWriteMemory
:int:size
::
52 PyBuffer_New
:PyObject
*::+1:
53 PyBuffer_New
:int:size
::
55 PyCObject_AsVoidPtr
:void
*:::
56 PyCObject_AsVoidPtr
:PyObject
*:self
:0:
58 PyCObject_FromVoidPtr
:PyObject
*::+1:
59 PyCObject_FromVoidPtr
:void
*:cobj
::
60 PyCObject_FromVoidPtr
::void
(* destr
)(void
* )::
62 PyCObject_FromVoidPtrAndDesc
:PyObject
*::+1:
63 PyCObject_FromVoidPtrAndDesc
:void
*:cobj
::
64 PyCObject_FromVoidPtrAndDesc
:void
*:desc
::
65 PyCObject_FromVoidPtrAndDesc
:void
(*)(void
*,void
*):destr
::
67 PyCObject_GetDesc
:void
*:::
68 PyCObject_GetDesc
:PyObject
*:self
:0:
70 PyCallable_Check
:int:::
71 PyCallable_Check
:PyObject
*:o
:0:
73 PyComplex_AsCComplex
:Py_complex
:::
74 PyComplex_AsCComplex
:PyObject
*:op
:0:
76 PyComplex_Check
:int:::
77 PyComplex_Check
:PyObject
*:p
:0:
79 PyComplex_FromCComplex
:PyObject
*::+1:
80 PyComplex_FromCComplex
::Py_complex v
::
82 PyComplex_FromDoubles
:PyObject
*::+1:
83 PyComplex_FromDoubles
::double real
::
84 PyComplex_FromDoubles
::double imag
::
86 PyComplex_ImagAsDouble
:double
:::
87 PyComplex_ImagAsDouble
:PyObject
*:op
:0:
89 PyComplex_RealAsDouble
:double
:::
90 PyComplex_RealAsDouble
:PyObject
*:op
:0:
93 PyDict_Check
:PyObject
*:p
:0:
96 PyDict_Clear
:PyObject
*:p
:0:
99 PyDict_DelItem
:PyObject
*:p
:0:
100 PyDict_DelItem
:PyObject
*:key
:0:
102 PyDict_DelItemString
:int:::
103 PyDict_DelItemString
:PyObject
*:p
:0:
104 PyDict_DelItemString
:char
*:key
::
106 PyDict_GetItem
:PyObject
*::0:0
107 PyDict_GetItem
:PyObject
*:p
:0:
108 PyDict_GetItem
:PyObject
*:key
:0:
110 PyDict_GetItemString
:PyObject
*::0:
111 PyDict_GetItemString
:PyObject
*:p
:0:
112 PyDict_GetItemString
:char
*:key
::
114 PyDict_Items
:PyObject
*::+1:
115 PyDict_Items
:PyObject
*:p
:0:
117 PyDict_Keys
:PyObject
*::+1:
118 PyDict_Keys
:PyObject
*:p
:0:
120 PyDict_New
:PyObject
*::+1:
122 PyDict_Copy
:PyObject
*::+1:
123 PyDict_Copy
:PyObject
*:p
:0:
126 PyDict_Next
:PyObject
*:p
:0:
127 PyDict_Next
:int:ppos
::
128 PyDict_Next
:PyObject
**:pkey
:0:
129 PyDict_Next
:PyObject
**:pvalue
:0:
131 PyDict_SetItem
:int:::
132 PyDict_SetItem
:PyObject
*:p
:0:
133 PyDict_SetItem
:PyObject
*:key
:+1:
134 PyDict_SetItem
:PyObject
*:val
:+1:
136 PyDict_SetItemString
:int:::
137 PyDict_SetItemString
:PyObject
*:p
:0:
138 PyDict_SetItemString
:char
*:key
::
139 PyDict_SetItemString
:PyObject
*:val
:+1:
142 PyDict_Size
:PyObject
*:p
::
144 PyDict_Values
:PyObject
*::+1:
145 PyDict_Values
:PyObject
*:p
:0:
147 PyErr_BadArgument
:int:::
149 PyErr_BadInternalCall
:void
:::
151 PyErr_CheckSignals
:int:::
155 PyErr_ExceptionMatches
:int:::
156 PyErr_ExceptionMatches
:PyObject
*:exc
:0:
159 PyErr_Fetch
:PyObject
**:ptype
:0:
160 PyErr_Fetch
:PyObject
**:pvalue
:0:
161 PyErr_Fetch
:PyObject
**:ptraceback
:0:
163 PyErr_GivenExceptionMatches
:int:::
164 PyErr_GivenExceptionMatches
:PyObject
*:given
:0:
165 PyErr_GivenExceptionMatches
:PyObject
*:exc
:0:
167 PyErr_NewException
:PyObject
*::+1:
168 PyErr_NewException
:char
*:name
::
169 PyErr_NewException
:PyObject
*:base
:0:
170 PyErr_NewException
:PyObject
*:dict
:0:
172 PyErr_NoMemory
:PyObject
*::null
:
174 PyErr_NormalizeException
:void
:::
175 PyErr_NormalizeException
:PyObject
**:exc
::???
176 PyErr_NormalizeException
:PyObject
**:val
::???
177 PyErr_NormalizeException
:PyObject
**:tb
::???
179 PyErr_Occurred
:PyObject
*::0:
183 PyErr_Restore
:void
:::
184 PyErr_Restore
:PyObject
*:type
:-1:
185 PyErr_Restore
:PyObject
*:value
:-1:
186 PyErr_Restore
:PyObject
*:traceback
:-1:
188 PyErr_SetFromErrno
:PyObject
*::null
:
189 PyErr_SetFromErrno
:PyObject
*:type
:0:
191 PyErr_SetInterrupt
:void
:::
193 PyErr_SetNone
:void
:::
194 PyErr_SetNone
:PyObject
*:type
:+1:
196 PyErr_SetObject
:void
:::
197 PyErr_SetObject
:PyObject
*:type
:+1:
198 PyErr_SetObject
:PyObject
*:value
:+1:
200 PyErr_SetString
:void
:::
201 PyErr_SetString
:PyObject
*:type
:+1:
202 PyErr_SetString
:char
*:message
::
204 PyErr_Format
:PyObject
*::null
:
205 PyErr_Format
:PyObject
*:exception
:+1:
206 PyErr_Format
:char
*:format
::
210 PyErr_Warn
:PyObject
*:category
:0:
211 PyErr_Warn
:char
*:message
::
213 PyEval_AcquireLock
:void
:::
215 PyEval_AcquireThread
:void
:::
216 PyEval_AcquireThread
:PyThreadState
*:tstate
::
218 PyEval_InitThreads
:void
:::
220 PyEval_ReleaseLock
:void
:::
222 PyEval_ReleaseThread
:void
:::
223 PyEval_ReleaseThread
:PyThreadState
*:tstate
::
225 PyEval_RestoreThread
:void
:::
226 PyEval_RestoreThread
:PyThreadState
*:tstate
::
228 PyEval_SaveThread
:PyThreadState
*:::
230 PyEval_EvalCode
:PyObject
*::+1:
231 PyEval_EvalCode
:PyCodeObject
*:co
:0:
232 PyEval_EvalCode
:PyObject
*:globals
:0:
233 PyEval_EvalCode
:PyObject
*:locals
:0:
235 PyFile_AsFile
:FILE
*:::
236 PyFile_AsFile
:PyFileObject
*:p
:0:
239 PyFile_Check
:PyObject
*:p
:0:
241 PyFile_FromFile
:PyObject
*::+1:
242 PyFile_FromFile
:FILE
*:fp
::
243 PyFile_FromFile
:char
*:name
::
244 PyFile_FromFile
:char
*:mode
::
245 PyFile_FromFile
:int(*:close)::
247 PyFile_FromString
:PyObject
*::+1:
248 PyFile_FromString
:char
*:name
::
249 PyFile_FromString
:char
*:mode
::
251 PyFile_GetLine
:PyObject
*::+1:
252 PyFile_GetLine
:PyObject
*:p
::
253 PyFile_GetLine
:int:n
::
255 PyFile_Name
:PyObject
*::0:
256 PyFile_Name
:PyObject
*:p
:0:
258 PyFile_SetBufSize
:void
:::
259 PyFile_SetBufSize
:PyFileObject
*:p
:0:
260 PyFile_SetBufSize
:int:n
::
262 PyFile_SoftSpace
:int:::
263 PyFile_SoftSpace
:PyFileObject
*:p
:0:
264 PyFile_SoftSpace
:int:newflag
::
266 PyFile_WriteObject
:int:::
267 PyFile_WriteObject
:PyObject
*:obj:0:
268 PyFile_WriteObject
:PyFileObject
*:p
:0:
269 PyFile_WriteObject
:int:flags
::
271 PyFile_WriteString
:int:::
272 PyFile_WriteString
:char
*:s
::
273 PyFile_WriteString
:PyFileObject
*:p
:0:
274 PyFile_WriteString
:int:flags
::
276 PyFloat_AS_DOUBLE
:double
:::
277 PyFloat_AS_DOUBLE
:PyObject
*:pyfloat
:0:
279 PyFloat_AsDouble
:double
:::
280 PyFloat_AsDouble
:PyObject
*:pyfloat
:0:
283 PyFloat_Check
:PyObject
*:p
:0:
285 PyFloat_FromDouble
:PyObject
*::+1:
286 PyFloat_FromDouble
:double
:v
::
288 Py_InitModule
:PyObject
*::0:
289 Py_InitModule
:name
:char
*::
290 Py_InitModule
:methods
:PyMethodDef
[]::
292 Py_InitModule3
:PyObject
*::0:
293 Py_InitModule3
:name
:char
*::
294 Py_InitModule3
:methods
:PyMethodDef
[]::
295 Py_InitModule3
:doc
:char
*::
297 Py_InitModule4
:PyObject
*::0:
298 Py_InitModule4
:name
:char
*::
299 Py_InitModule4
:methods
:PyMethodDef
[]::
300 Py_InitModule4
:doc
:char
*::
301 Py_InitModule4
:self
:PyObject
*::
302 Py_InitModule4
:apiver
:int::usually provided
by Py_InitModule
or Py_InitModule3
304 PyImport_AddModule
:PyObject
*::0:reference borrowed
from sys.modules
305 PyImport_AddModule
:char
*:name
::
307 PyImport_Cleanup
:void
:::
309 PyImport_ExecCodeModule
:PyObject
*::+1:
310 PyImport_ExecCodeModule
:char
*:name
::
311 PyImport_ExecCodeModule
:PyObject
*:co
:0:
313 PyImport_GetMagicNumber
:long
:::
315 PyImport_GetModuleDict
:PyObject
*::0:
317 PyImport_Import
:PyObject
*::+1:
318 PyImport_Import
:PyObject
*:name
:0:
320 PyImport_ImportFrozenModule
:int:::
321 PyImport_ImportFrozenModule
:char
*:::
323 PyImport_ImportModule
:PyObject
*::+1:
324 PyImport_ImportModule
:char
*:name
::
326 PyImport_ImportModuleEx
:PyObject
*::+1:
327 PyImport_ImportModuleEx
:char
*:name
::
328 PyImport_ImportModuleEx
:PyObject
*:globals
:0:???
329 PyImport_ImportModuleEx
:PyObject
*:locals
:0:???
330 PyImport_ImportModuleEx
:PyObject
*:fromlist
:0:???
332 PyImport_ReloadModule
:PyObject
*::+1:
333 PyImport_ReloadModule
:PyObject
*:m
:0:
335 PyInstance_New
:PyObject
*::+1:
336 PyInstance_New
:PyObject
*:klass
:+1:
337 PyInstance_New
:PyObject
*:arg
:0:
338 PyInstance_New
:PyObject
*:kw
:0:
340 PyInstance_NewRaw
:PyObject
*::+1:
341 PyInstance_NewRaw
:PyObject
*:klass
:+1:
342 PyInstance_NewRaw
:PyObject
*:dict
:+1:
344 PyInt_AS_LONG
:long
:::
345 PyInt_AS_LONG
:PyIntObject
*:io
:0:
348 PyInt_AsLong
:PyObject
*:io
:0:
351 PyInt_Check
:PyObject
*::0:
353 PyInt_FromLong
:PyObject
*::+1:
354 PyInt_FromLong
:long
:ival
::
358 PyInterpreterState_Clear
:void
:::
359 PyInterpreterState_Clear
:PyInterpreterState
*:interp
::
361 PyInterpreterState_Delete
:void
:::
362 PyInterpreterState_Delete
:PyInterpreterState
*:interp
::
364 PyInterpreterState_New
:PyInterpreterState
*:::
367 PyList_Append
:PyObject
*:list
:0:
368 PyList_Append
:PyObject
*:item
:+1:
370 PyList_AsTuple
:PyObject
*::+1:
371 PyList_AsTuple
:PyObject
*:list
:0:
374 PyList_Check
:PyObject
*:p
:0:
376 PyList_GET_ITEM
:PyObject
*::0:
377 PyList_GET_ITEM
:PyObject
*:list
:0:
378 PyList_GET_ITEM
:int:i
:0:
380 PyList_GET_SIZE
:int:::
381 PyList_GET_SIZE
:PyObject
*:list
:0:
383 PyList_GetItem
:PyObject
*::0:
384 PyList_GetItem
:PyObject
*:list
:0:
385 PyList_GetItem
:int:index
::
387 PyList_GetSlice
:PyObject
*::+1:
388 PyList_GetSlice
:PyObject
*:list
:0:
389 PyList_GetSlice
:int:low
::
390 PyList_GetSlice
:int:high
::
393 PyList_Insert
:PyObject
*:list
:0:
394 PyList_Insert
:int:index
::
395 PyList_Insert
:PyObject
*:item
:+1:
397 PyList_New
:PyObject
*::+1:
400 PyList_Reverse
:int:::
401 PyList_Reverse
:PyObject
*:list
:0:
403 PyList_SET_ITEM
:void
:::
404 PyList_SET_ITEM
:PyObject
*:list
:0:
405 PyList_SET_ITEM
:int:i
::
406 PyList_SET_ITEM
:PyObject
*:o
:0:
408 PyList_SetItem
:int:::
409 PyList_SetItem
:PyObject
*:list
:0:
410 PyList_SetItem
:int:index
::
411 PyList_SetItem
:PyObject
*:item
:0:
413 PyList_SetSlice
:int:::
414 PyList_SetSlice
:PyObject
*:list
:0:
415 PyList_SetSlice
:int:low
::
416 PyList_SetSlice
:int:high
::
417 PyList_SetSlice
:PyObject
*:itemlist
:0:but increfs its elements?
420 PyList_Size
:PyObject
*:list
:0:
423 PyList_Sort
:PyObject
*:list
:0:
425 PyLong_AsDouble
:double
:::
426 PyLong_AsDouble
:PyObject
*:pylong
:0:
428 PyLong_AsLong
:long
:::
429 PyLong_AsLong
:PyObject
*:pylong
:0:
431 PyLong_AsUnsignedLong
:unsigned long
:::
432 PyLong_AsUnsignedLong
:PyObject
*:pylong
:0:
435 PyLong_Check
:PyObject
*:p
:0:
437 PyLong_FromDouble
:PyObject
*::+1:
438 PyLong_FromDouble
:double
:v
::
440 PyLong_FromLong
:PyObject
*::+1:
441 PyLong_FromLong
:long
:v
::
443 PyLong_FromString
:PyObject
*::+1:
444 PyLong_FromString
:char
*:str
::
445 PyLong_FromString
:char
**:pend
::
446 PyLong_FromString
:int:base
::
448 PyLong_FromUnsignedLong
:PyObject
*::+1:
449 PyLong_FromUnsignedLong
:unsignedlong
:v
::
451 PyMapping_Check
:int:::
452 PyMapping_Check
:PyObject
*:o
:0:
454 PyMapping_DelItem
:int:::
455 PyMapping_DelItem
:PyObject
*:o
:0:
456 PyMapping_DelItem
:PyObject
*:key
:0:
458 PyMapping_DelItemString
:int:::
459 PyMapping_DelItemString
:PyObject
*:o
:0:
460 PyMapping_DelItemString
:char
*:key
::
462 PyMapping_GetItemString
:PyObject
*::+1:
463 PyMapping_GetItemString
:PyObject
*:o
:0:
464 PyMapping_GetItemString
:char
*:key
::
466 PyMapping_HasKey
:int:::
467 PyMapping_HasKey
:PyObject
*:o
:0:
468 PyMapping_HasKey
:PyObject
*:key
::
470 PyMapping_HasKeyString
:int:::
471 PyMapping_HasKeyString
:PyObject
*:o
:0:
472 PyMapping_HasKeyString
:char
*:key
::
474 PyMapping_Items
:PyObject
*::+1:
475 PyMapping_Items
:PyObject
*:o
:0:
477 PyMapping_Keys
:PyObject
*::+1:
478 PyMapping_Keys
:PyObject
*:o
:0:
480 PyMapping_Length
:int:::
481 PyMapping_Length
:PyObject
*:o
:0:
483 PyMapping_SetItemString
:int:::
484 PyMapping_SetItemString
:PyObject
*:o
:0:
485 PyMapping_SetItemString
:char
*:key
::
486 PyMapping_SetItemString
:PyObject
*:v
:+1:
488 PyMapping_Values
:PyObject
*::+1:
489 PyMapping_Values
:PyObject
*:o
:0:
491 PyModule_GetDict
:PyObject
*::0:
492 PyModule_GetDict
::PyObject
* module
:0:
494 PyModule_GetFilename
:char
*:::
495 PyModule_GetFilename
:PyObject
*:module
:0:
497 PyModule_GetName
:char
*:::
498 PyModule_GetName
:PyObject
*:module
:0:
500 PyModule_New
:PyObject
*::+1:
501 PyModule_New
::char
* name
::
503 PyNumber_Absolute
:PyObject
*::+1:
504 PyNumber_Absolute
:PyObject
*:o
:0:
506 PyNumber_Add
:PyObject
*::+1:
507 PyNumber_Add
:PyObject
*:o1
:0:
508 PyNumber_Add
:PyObject
*:o2
:0:
510 PyNumber_And
:PyObject
*::+1:
511 PyNumber_And
:PyObject
*:o1
:0:
512 PyNumber_And
:PyObject
*:o2
:0:
514 PyNumber_Check
:PyObject
*:o
:0:
515 PyNumber_Check
:int:::
517 PyNumber_Coerce
:int:::
518 PyNumber_Coerce
:PyObject
**:p1
:+1:
519 PyNumber_Coerce
:PyObject
**:p2
:+1:
521 PyNumber_Divide
:PyObject
*::+1:
522 PyNumber_Divide
:PyObject
*:o1
:0:
523 PyNumber_Divide
:PyObject
*:o2
:0:
525 PyNumber_Divmod
:PyObject
*::+1:
526 PyNumber_Divmod
:PyObject
*:o1
:0:
527 PyNumber_Divmod
:PyObject
*:o2
:0:
529 PyNumber_Float
:PyObject
*::+1:
530 PyNumber_Float
:PyObject
*:o
:0:
532 PyNumber_InPlaceAdd
:PyObject
*::+1:
533 PyNumber_InPlaceAdd
:PyObject
*:v
:0:
534 PyNumber_InPlaceAdd
:PyObject
*:w
:0:
536 PyNumber_InPlaceAnd
:PyObject
*::+1:
537 PyNumber_InPlaceAnd
:PyObject
*:v
:0:
538 PyNumber_InPlaceAnd
:PyObject
*:w
:0:
540 PyNumber_InPlaceDivide
:PyObject
*::+1:
541 PyNumber_InPlaceDivide
:PyObject
*:v
:0:
542 PyNumber_InPlaceDivide
:PyObject
*:w
:0:
544 PyNumber_InPlaceLshift
:PyObject
*::+1:
545 PyNumber_InPlaceLshift
:PyObject
*:v
:0:
546 PyNumber_InPlaceLshift
:PyObject
*:w
:0:
548 PyNumber_InPlaceMultiply
:PyObject
*::+1:
549 PyNumber_InPlaceMultiply
:PyObject
*:v
:0:
550 PyNumber_InPlaceMultiply
:PyObject
*:w
:0:
552 PyNumber_InPlaceOr
:PyObject
*::+1:
553 PyNumber_InPlaceOr
:PyObject
*:v
:0:
554 PyNumber_InPlaceOr
:PyObject
*:w
:0:
556 PyNumber_InPlacePower
:PyObject
*::+1:
557 PyNumber_InPlacePower
:PyObject
*:v
:0:
558 PyNumber_InPlacePower
:PyObject
*:w
:0:
559 PyNumber_InPlacePower
:PyObject
*:z
:0:
561 PyNumber_InPlaceRemainder
:PyObject
*::+1:
562 PyNumber_InPlaceRemainder
:PyObject
*:v
:0:
563 PyNumber_InPlaceRemainder
:PyObject
*:w
:0:
565 PyNumber_InPlaceRshift
:PyObject
*::+1:
566 PyNumber_InPlaceRshift
:PyObject
*:v
:0:
567 PyNumber_InPlaceRshift
:PyObject
*:w
:0:
569 PyNumber_InPlaceSubtract
:PyObject
*::+1:
570 PyNumber_InPlaceSubtract
:PyObject
*:v
:0:
571 PyNumber_InPlaceSubtract
:PyObject
*:w
:0:
573 PyNumber_InPlaceXor
:PyObject
*::+1:
574 PyNumber_InPlaceXor
:PyObject
*:v
:0:
575 PyNumber_InPlaceXor
:PyObject
*:w
:0:
577 PyNumber_Int
:PyObject
*::+1:
578 PyNumber_Int
:PyObject
*:o
:0:
580 PyNumber_Invert
:PyObject
*::+1:
581 PyNumber_Invert
:PyObject
*:o
:0:
583 PyNumber_Long
:PyObject
*::+1:
584 PyNumber_Long
:PyObject
*:o
:0:
586 PyNumber_Lshift
:PyObject
*::+1:
587 PyNumber_Lshift
:PyObject
*:o1
:0:
588 PyNumber_Lshift
:PyObject
*:o2
:0:
590 PyNumber_Multiply
:PyObject
*::+1:
591 PyNumber_Multiply
:PyObject
*:o1
:0:
592 PyNumber_Multiply
:PyObject
*:o2
:0:
594 PyNumber_Negative
:PyObject
*::+1:
595 PyNumber_Negative
:PyObject
*:o
:0:
597 PyNumber_Or
:PyObject
*::+1:
598 PyNumber_Or
:PyObject
*:o1
:0:
599 PyNumber_Or
:PyObject
*:o2
:0:
601 PyNumber_Positive
:PyObject
*::+1:
602 PyNumber_Positive
:PyObject
*:o
:0:
604 PyNumber_Power
:PyObject
*::+1:
605 PyNumber_Power
:PyObject
*:o1
:0:
606 PyNumber_Power
:PyObject
*:o2
:0:
607 PyNumber_Power
:PyObject
*:o3
:0:
609 PyNumber_Remainder
:PyObject
*::+1:
610 PyNumber_Remainder
:PyObject
*:o1
:0:
611 PyNumber_Remainder
:PyObject
*:o2
:0:
613 PyNumber_Rshift
:PyObject
*::+1:
614 PyNumber_Rshift
:PyObject
*:o1
:0:
615 PyNumber_Rshift
:PyObject
*:o2
:0:
617 PyNumber_Subtract
:PyObject
*::+1:
618 PyNumber_Subtract
:PyObject
*:o1
:0:
619 PyNumber_Subtract
:PyObject
*:o2
:0:
621 PyNumber_Xor
:PyObject
*::+1:
622 PyNumber_Xor
:PyObject
*:o1
:0:
623 PyNumber_Xor
:PyObject
*:o2
:0:
625 PyOS_GetLastModificationTime
:long
:::
626 PyOS_GetLastModificationTime
:char
*:filename
::
628 PyObject_AsFileDescriptor
:int:::
629 PyObject_AsFileDescriptor
:PyObject
*:o
:0:
631 PyObject_CallFunction
:PyObject
*::+1:
632 PyObject_CallFunction
:PyObject
*:callable_object
:0:
633 PyObject_CallFunction
:char
*:format
::
634 PyObject_CallFunction
::...
::
636 PyObject_CallMethod
:PyObject
*::+1:
637 PyObject_CallMethod
:PyObject
*:o
:0:
638 PyObject_CallMethod
:char
*:m
::
639 PyObject_CallMethod
:char
*:format
::
640 PyObject_CallMethod
::...
::
642 PyObject_CallObject
:PyObject
*::+1:
643 PyObject_CallObject
:PyObject
*:callable_object
:0:
644 PyObject_CallObject
:PyObject
*:args
:0:
647 PyObject_Cmp
:PyObject
*:o1
:0:
648 PyObject_Cmp
:PyObject
*:o2
:0:
649 PyObject_Cmp
:int*:result
::
651 PyObject_Compare
:int:::
652 PyObject_Compare
:PyObject
*:o1
:0:
653 PyObject_Compare
:PyObject
*:o2
:0:
655 PyObject_DelAttr
:int:::
656 PyObject_DelAttr
:PyObject
*:o
:0:
657 PyObject_DelAttr
:PyObject
*:attr_name
:0:
659 PyObject_DelAttrString
:int:::
660 PyObject_DelAttrString
:PyObject
*:o
:0:
661 PyObject_DelAttrString
:char
*:attr_name
::
663 PyObject_DelItem
:int:::
664 PyObject_DelItem
:PyObject
*:o
:0:
665 PyObject_DelItem
:PyObject
*:key
:0:
667 PyObject_GetAttr
:PyObject
*::+1:
668 PyObject_GetAttr
:PyObject
*:o
:0:
669 PyObject_GetAttr
:PyObject
*:attr_name
:0:
671 PyObject_GetAttrString
:PyObject
*::+1:
672 PyObject_GetAttrString
:PyObject
*:o
:0:
673 PyObject_GetAttrString
:char
*:attr_name
::
675 PyObject_GetItem
:PyObject
*::+1:
676 PyObject_GetItem
:PyObject
*:o
:0:
677 PyObject_GetItem
:PyObject
*:key
:0:
679 PyObject_HasAttr
:int:::
680 PyObject_HasAttr
:PyObject
*:o
:0:
681 PyObject_HasAttr
:PyObject
*:attr_name
:0:
683 PyObject_HasAttrString
:int:::
684 PyObject_HasAttrString
:PyObject
*:o
:0:
685 PyObject_HasAttrString
:char
*:attr_name
:0:
688 PyObject_Hash
:PyObject
*:o
:0:
690 PyObject_IsTrue
:int:::
691 PyObject_IsTrue
:PyObject
*:o
:0:
693 PyObject_Init
:PyObject
*::0:
694 PyObject_Init
:PyObject
*:op
:0:
696 PyObject_InitVar
:PyVarObject
*::0:
697 PyObject_InitVar
:PyVarObject
*:op
:0:
699 PyObject_Length
:int:::
700 PyObject_Length
:PyObject
*:o
:0:
702 PyObject_Print
:int:::
703 PyObject_Print
:PyObject
*:o
:0:
704 PyObject_Print
:FILE
*:fp
::
705 PyObject_Print
:int:flags
::
707 PyObject_Repr
:PyObject
*::+1:
708 PyObject_Repr
:PyObject
*:o
:0:
710 PyObject_SetAttr
:int:::
711 PyObject_SetAttr
:PyObject
*:o
:0:
712 PyObject_SetAttr
:PyObject
*:attr_name
:0:
713 PyObject_SetAttr
:PyObject
*:v
:+1:
715 PyObject_SetAttrString
:int:::
716 PyObject_SetAttrString
:PyObject
*:o
:0:
717 PyObject_SetAttrString
:char
*:attr_name
::
718 PyObject_SetAttrString
:PyObject
*:v
:+1:
720 PyObject_SetItem
:int:::
721 PyObject_SetItem
:PyObject
*:o
:0:
722 PyObject_SetItem
:PyObject
*:key
:0:
723 PyObject_SetItem
:PyObject
*:v
:+1:
725 PyObject_Str
:PyObject
*::+1:
726 PyObject_Str
:PyObject
*:o
:0:
728 PyObject_Type
:PyObject
*::+1:
729 PyObject_Type
:PyObject
*:o
:0:
731 PyParser_SimpleParseFile
:struct _node
*:::
732 PyParser_SimpleParseFile
:FILE
*:fp
::
733 PyParser_SimpleParseFile
:char
*:filename
::
734 PyParser_SimpleParseFile
:int:start
::
736 PyParser_SimpleParseString
:struct _node
*:::
737 PyParser_SimpleParseString
:char
*:str
::
738 PyParser_SimpleParseString
:int:start
::
741 PyRun_AnyFile
:FILE
*:fp
::
742 PyRun_AnyFile
:char
*:filename
::
744 PyRun_File
:PyObject
*::+1:???
-- same as eval_code2
()
745 PyRun_File
:FILE
*:fp
::
746 PyRun_File
:char
*:filename
::
747 PyRun_File
:int:start
::
748 PyRun_File
:PyObject
*:globals
:0:
749 PyRun_File
:PyObject
*:locals
:0:
751 PyRun_InteractiveLoop
:int:::
752 PyRun_InteractiveLoop
:FILE
*:fp
::
753 PyRun_InteractiveLoop
:char
*:filename
::
755 PyRun_InteractiveOne
:int:::
756 PyRun_InteractiveOne
:FILE
*:fp
::
757 PyRun_InteractiveOne
:char
*:filename
::
759 PyRun_SimpleFile
:int:::
760 PyRun_SimpleFile
:FILE
*:fp
::
761 PyRun_SimpleFile
:char
*:filename
::
763 PyRun_SimpleString
:int:::
764 PyRun_SimpleString
:char
*:command
::
766 PyRun_String
:PyObject
*::+1:???
-- same as eval_code2
()
767 PyRun_String
:char
*:str
::
768 PyRun_String
:int:start
::
769 PyRun_String
:PyObject
*:globals
:0:
770 PyRun_String
:PyObject
*:locals
:0:
772 PySequence_Check
:int:::
773 PySequence_Check
:PyObject
*:o
:0:
775 PySequence_Concat
:PyObject
*::+1:
776 PySequence_Concat
:PyObject
*:o1
:0:
777 PySequence_Concat
:PyObject
*:o2
:0:
779 PySequence_Count
:int:::
780 PySequence_Count
:PyObject
*:o
:0:
781 PySequence_Count
:PyObject
*:value
:0:
783 PySequence_DelItem
:int:::
784 PySequence_DelItem
:PyObject
*:o
:0:
785 PySequence_DelItem
:int:i
::
787 PySequence_DelSlice
:int:::
788 PySequence_DelSlice
:PyObject
*:o
:0:
789 PySequence_DelSlice
:int:i1
::
790 PySequence_DelSlice
:int:i2
::
792 PySequence_Fast
:PyObject
*::+1:
793 PySequence_Fast
:PyObject
*:v
:0:
794 PySequence_Fast
:const char
*:m
::
796 PySequence_Fast_GET_ITEM
:PyObject
*::0:
797 PySequence_Fast_GET_ITEM
:PyObject
*:o
:0:
798 PySequence_Fast_GET_ITEM
:int:i
::
800 PySequence_GetItem
:PyObject
*::+1:
801 PySequence_GetItem
:PyObject
*:o
:0:
802 PySequence_GetItem
:int:i
::
804 PySequence_GetSlice
:PyObject
*::+1:
805 PySequence_GetSlice
:PyObject
*:o
:0:
806 PySequence_GetSlice
:int:i1
::
807 PySequence_GetSlice
:int:i2
::
810 PySequence_In
:PyObject
*:o
:0:
811 PySequence_In
:PyObject
*:value
:0:
813 PySequence_Index
:int:::
814 PySequence_Index
:PyObject
*:o
:0:
815 PySequence_Index
:PyObject
*:value
:0:
817 PySequence_InPlaceConcat
:PyObject
*::+1:
818 PySequence_InPlaceConcat
:PyObject
*:s
:0:
819 PySequence_InPlaceConcat
:PyObject
*:o
:0:
821 PySequence_InPlaceRepeat
:PyObject
*::+1:
822 PySequence_InPlaceRepeat
:PyObject
*:s
:0:
823 PySequence_InPlaceRepeat
:PyObject
*:o
:0:
825 PySequence_Repeat
:PyObject
*::+1:
826 PySequence_Repeat
:PyObject
*:o
:0:
827 PySequence_Repeat
:int:count
::
829 PySequence_SetItem
:int:::
830 PySequence_SetItem
:PyObject
*:o
:0:
831 PySequence_SetItem
:int:i
::
832 PySequence_SetItem
:PyObject
*:v
:+1:
834 PySequence_SetSlice
:int:::
835 PySequence_SetSlice
:PyObject
*:o
:0:
836 PySequence_SetSlice
:int:i1
::
837 PySequence_SetSlice
:int:i2
::
838 PySequence_SetSlice
:PyObject
*:v
:+1:
840 PySequence_List
:PyObject
*::+1:
841 PySequence_List
:PyObject
*:o
:0:
843 PySequence_Tuple
:PyObject
*::+1:
844 PySequence_Tuple
:PyObject
*:o
:0:
846 PyString_AS_STRING
:char
*:::
847 PyString_AS_STRING
:PyObject
*:string
:0:
849 PyString_AsString
:char
*:::
850 PyString_AsString
:PyObject
*:string
:0:
852 PyString_AsStringAndSize
:int:::
853 PyString_AsStringAndSize
:PyObject
*:obj:0:
854 PyString_AsStringAndSize
:char
**:buffer
::
855 PyString_AsStringAndSize
:int*:length
::
857 PyString_Check
:int:::
858 PyString_Check
:PyObject
*:o
:0:
860 PyString_Concat
:void
:::
861 PyString_Concat
:PyObject
**:string
:0:???
-- replaces w
/ new string
or NULL
862 PyString_Concat
:PyObject
*:newpart
:0:
864 PyString_ConcatAndDel
:void
:::
865 PyString_ConcatAndDel
:PyObject
**:string
:0:???
-- replaces w
/ new string
or NULL
866 PyString_ConcatAndDel
:PyObject
*:newpart
:-1:
868 PyString_Format
:PyObject
*::+1:
869 PyString_Format
:PyObject
*:format
:0:
870 PyString_Format
:PyObject
*:args
:0:
872 PyString_FromString
:PyObject
*::+1:
873 PyString_FromString
:const char
*:v
::
875 PyString_FromStringAndSize
:PyObject
*::+1:
876 PyString_FromStringAndSize
:const char
*:v
::
877 PyString_FromStringAndSize
:int:len
::
879 PyString_GET_SIZE
:int:::
880 PyString_GET_SIZE
:PyObject
*:string
:0:
882 PyString_InternFromString
:PyObject
*::+1:
883 PyString_InternFromString
:const char
*:v
::
885 PyString_InternInPlace
:void
:::
886 PyString_InternInPlace
:PyObject
**:string
:+1:???
889 PyString_Size
:PyObject
*:string
:0:
891 PyString_Decode
:PyObject
*::+1:
892 PyString_Decode
:const char
*:s
::
893 PyString_Decode
:int:size
::
894 PyString_Decode
:const char
*:encoding
::
895 PyString_Decode
:const char
*:errors
::
897 PyString_Encode
:PyObject
*::+1:
898 PyString_Encode
:const char
*:s
::
899 PyString_Encode
:int:size
::
900 PyString_Encode
:const char
*:encoding
::
901 PyString_Encode
:const char
*:errors
::
903 PyString_AsEncodedString
:PyObject
*::+1:
904 PyString_AsEncodedString
:PyObject
*:str
::
905 PyString_AsEncodedString
:const char
*:encoding
::
906 PyString_AsEncodedString
:const char
*:errors
::
909 PySys_SetArgv
:int:argc
::
910 PySys_SetArgv
:char
**:argv
::
912 PyThreadState_Clear
:void
:::
913 PyThreadState_Clear
:PyThreadState
*:tstate
::
915 PyThreadState_Delete
:void
:::
916 PyThreadState_Delete
:PyThreadState
*:tstate
::
918 PyThreadState_Get
:PyThreadState
*:::
920 PyThreadState_New
:PyThreadState
*:::
921 PyThreadState_New
:PyInterpreterState
*:interp
::
923 PyThreadState_Swap
:PyThreadState
*:::
924 PyThreadState_Swap
:PyThreadState
*:tstate
::
927 PyTuple_Check
:PyObject
*:p
:0:
929 PyTuple_GET_ITEM
:PyObject
*::0:
930 PyTuple_GET_ITEM
:PyTupleObject
*:p
:0:
931 PyTuple_GET_ITEM
:int:pos
::
933 PyTuple_GetItem
:PyObject
*::0:
934 PyTuple_GetItem
:PyTupleObject
*:p
:0:
935 PyTuple_GetItem
:int:pos
::
937 PyTuple_GetSlice
:PyObject
*::+1:
938 PyTuple_GetSlice
:PyTupleObject
*:p
:0:
939 PyTuple_GetSlice
:int:low
::
940 PyTuple_GetSlice
:int:high
::
942 PyTuple_New
:PyObject
*::+1:
943 PyTuple_New
:int:len
::
945 PyTuple_SET_ITEM
:void
:::
946 PyTuple_SET_ITEM
:PyTupleObject
*:p
:0:
947 PyTuple_SET_ITEM
:int:pos
::
948 PyTuple_SET_ITEM
:PyObject
*:o
:0:
950 PyTuple_SetItem
:int:::
951 PyTuple_SetItem
:PyTupleObject
*:p
:0:
952 PyTuple_SetItem
:int:pos
::
953 PyTuple_SetItem
:PyObject
*:o
:0:
956 PyTuple_Size
:PyTupleObject
*:p
:0:
958 PyUnicode_Check
:int:::
959 PyUnicode_Check
:PyObject
*:o
:0:
961 PyUnicode_GET_SIZE
:int:::
962 PyUnicode_GET_SIZE
:PyObject
*:o
:0:
964 PyUnicode_GET_DATA_SIZE
:int:::
965 PyUnicode_GET_DATA_SIZE
:PyObject
*:o
:0:
967 PyUnicode_AS_UNICODE
:Py_UNICODE
*:::
968 PyUnicode_AS_UNICODE
:PyObject
*:o
:0:
970 PyUnicode_AS_DATA
:const char
*:::
971 PyUnicode_AS_DATA
:PyObject
*:o
:0:
973 Py_UNICODE_ISSPACE
:int:::
974 Py_UNICODE_ISSPACE
:Py_UNICODE
:ch
::
976 Py_UNICODE_ISLOWER
:int:::
977 Py_UNICODE_ISLOWER
:Py_UNICODE
:ch
::
979 Py_UNICODE_ISUPPER
:int:::
980 Py_UNICODE_ISUPPER
:Py_UNICODE
:ch
::
982 Py_UNICODE_ISTITLE
:int:::
983 Py_UNICODE_ISTITLE
:Py_UNICODE
:ch
::
985 Py_UNICODE_ISLINEBREAK
:int:::
986 Py_UNICODE_ISLINEBREAK
:Py_UNICODE
:ch
::
988 Py_UNICODE_ISDECIMAL
:int:::
989 Py_UNICODE_ISDECIMAL
:Py_UNICODE
:ch
::
991 Py_UNICODE_ISDIGIT
:int:::
992 Py_UNICODE_ISDIGIT
:Py_UNICODE
:ch
::
994 Py_UNICODE_ISNUMERIC
:int:::
995 Py_UNICODE_ISNUMERIC
:Py_UNICODE
:ch
::
997 Py_UNICODE_TOLOWER
:Py_UNICODE
:::
998 Py_UNICODE_TOLOWER
:Py_UNICODE
:ch
::
1000 Py_UNICODE_TOUPPER
:Py_UNICODE
:::
1001 Py_UNICODE_TOUPPER
:Py_UNICODE
:ch
::
1003 Py_UNICODE_TOTITLE
:Py_UNICODE
:::
1004 Py_UNICODE_TOTITLE
:Py_UNICODE
:ch
::
1006 Py_UNICODE_TODECIMAL
:int:::
1007 Py_UNICODE_TODECIMAL
:Py_UNICODE
:ch
::
1009 Py_UNICODE_TODIGIT
:int:::
1010 Py_UNICODE_TODIGIT
:Py_UNICODE
:ch
::
1012 Py_UNICODE_TONUMERIC
:double
:::
1013 Py_UNICODE_TONUMERIC
:Py_UNICODE
:ch
::
1015 PyUnicode_FromUnicode
:PyObject
*::+1:
1016 PyUnicode_FromUnicode
:const Py_UNICODE
*:u
::
1017 PyUnicode_FromUnicode
:int:size
::
1019 PyUnicode_AsUnicode
:Py_UNICODE
*:::
1020 PyUnicode_AsUnicode
:PyObject
:*unicode
:0:
1022 PyUnicode_GetSize
:int:::
1023 PyUnicode_GetSize
:PyObject
:*unicode
:0:
1025 PyUnicode_FromObject
:PyObject
*::+1:
1026 PyUnicode_FromObject
:PyObject
*:*obj:0:
1028 PyUnicode_FromEncodedObject
:PyObject
*::+1:
1029 PyUnicode_FromEncodedObject
:PyObject
*:*obj:0:
1030 PyUnicode_FromEncodedObject
:const char
*:encoding
::
1031 PyUnicode_FromEncodedObject
:const char
*:errors
::
1033 PyUnicode_FromWideChar
:PyObject
*::+1:
1034 PyUnicode_FromWideChar
:const wchar_t
*:w
::
1035 PyUnicode_FromWideChar
:int:size
::
1037 PyUnicode_AsWideChar
:int:::
1038 PyUnicode_AsWideChar
:PyObject
*:*unicode
:0:
1039 PyUnicode_AsWideChar
:wchar_t
*:w
::
1040 PyUnicode_AsWideChar
:int:size
::
1042 PyUnicode_Decode
:PyObject
*::+1:
1043 PyUnicode_Decode
:const char
*:s
::
1044 PyUnicode_Decode
:int:size
::
1045 PyUnicode_Decode
:const char
*:encoding
::
1046 PyUnicode_Decode
:const char
*:errors
::
1048 PyUnicode_Encode
:PyObject
*::+1:
1049 PyUnicode_Encode
:const Py_UNICODE
*:s
::
1050 PyUnicode_Encode
:int:size
::
1051 PyUnicode_Encode
:const char
*:encoding
::
1052 PyUnicode_Encode
:const char
*:errors
::
1054 PyUnicode_AsEncodedString
:PyObject
*::+1:
1055 PyUnicode_AsEncodedString
:PyObject
*:unicode
::
1056 PyUnicode_AsEncodedString
:const char
*:encoding
::
1057 PyUnicode_AsEncodedString
:const char
*:errors
::
1059 PyUnicode_DecodeUTF8
:PyObject
*::+1:
1060 PyUnicode_DecodeUTF8
:const char
*:s
::
1061 PyUnicode_DecodeUTF8
:int:size
::
1062 PyUnicode_DecodeUTF8
:const char
*:errors
::
1064 PyUnicode_EncodeUTF8
:PyObject
*::+1:
1065 PyUnicode_EncodeUTF8
:const Py_UNICODE
*:s
::
1066 PyUnicode_EncodeUTF8
:int:size
::
1067 PyUnicode_EncodeUTF8
:const char
*:errors
::
1069 PyUnicode_AsUTF8String
:PyObject
*::+1:
1070 PyUnicode_AsUTF8String
:PyObject
*:unicode
::
1072 PyUnicode_DecodeUTF16
:PyObject
*::+1:
1073 PyUnicode_DecodeUTF16
:const char
*:s
::
1074 PyUnicode_DecodeUTF16
:int:size
::
1075 PyUnicode_DecodeUTF16
:const char
*:errors
::
1076 PyUnicode_DecodeUTF16
:int*:byteorder
::
1078 PyUnicode_EncodeUTF16
:PyObject
*::+1:
1079 PyUnicode_EncodeUTF16
:const Py_UNICODE
*:s
::
1080 PyUnicode_EncodeUTF16
:int:size
::
1081 PyUnicode_EncodeUTF16
:const char
*:errors
::
1082 PyUnicode_EncodeUTF16
:int:byteorder
::
1084 PyUnicode_AsUTF16String
:PyObject
*::+1:
1085 PyUnicode_AsUTF16String
:PyObject
*:unicode
::
1087 PyUnicode_DecodeUnicodeEscape
:PyObject
*::+1:
1088 PyUnicode_DecodeUnicodeEscape
:const char
*:s
::
1089 PyUnicode_DecodeUnicodeEscape
:int:size
::
1090 PyUnicode_DecodeUnicodeEscape
:const char
*:errors
::
1092 PyUnicode_EncodeUnicodeEscape
:PyObject
*::+1:
1093 PyUnicode_EncodeUnicodeEscape
:const Py_UNICODE
*:s
::
1094 PyUnicode_EncodeUnicodeEscape
:int:size
::
1095 PyUnicode_EncodeUnicodeEscape
:const char
*:errors
::
1097 PyUnicode_AsUnicodeEscapeString
:PyObject
*::+1:
1098 PyUnicode_AsUnicodeEscapeString
:PyObject
*:unicode
::
1100 PyUnicode_DecodeRawUnicodeEscape
:PyObject
*::+1:
1101 PyUnicode_DecodeRawUnicodeEscape
:const char
*:s
::
1102 PyUnicode_DecodeRawUnicodeEscape
:int:size
::
1103 PyUnicode_DecodeRawUnicodeEscape
:const char
*:errors
::
1105 PyUnicode_EncodeRawUnicodeEscape
:PyObject
*::+1:
1106 PyUnicode_EncodeRawUnicodeEscape
:const Py_UNICODE
*:s
::
1107 PyUnicode_EncodeRawUnicodeEscape
:int:size
::
1108 PyUnicode_EncodeRawUnicodeEscape
:const char
*:errors
::
1110 PyUnicode_AsRawUnicodeEscapeString
:PyObject
*::+1:
1111 PyUnicode_AsRawUnicodeEscapeString
:PyObject
*:unicode
::
1113 PyUnicode_DecodeLatin1
:PyObject
*::+1:
1114 PyUnicode_DecodeLatin1
:const char
*:s
::
1115 PyUnicode_DecodeLatin1
:int:size
::
1116 PyUnicode_DecodeLatin1
:const char
*:errors
::
1118 PyUnicode_EncodeLatin1
:PyObject
*::+1:
1119 PyUnicode_EncodeLatin1
:const Py_UNICODE
*:s
::
1120 PyUnicode_EncodeLatin1
:int:size
::
1121 PyUnicode_EncodeLatin1
:const char
*:errors
::
1123 PyUnicode_AsLatin1String
:PyObject
*::+1:
1124 PyUnicode_AsLatin1String
:PyObject
*:unicode
::
1126 PyUnicode_DecodeASCII
:PyObject
*::+1:
1127 PyUnicode_DecodeASCII
:const char
*:s
::
1128 PyUnicode_DecodeASCII
:int:size
::
1129 PyUnicode_DecodeASCII
:const char
*:errors
::
1131 PyUnicode_EncodeASCII
:PyObject
*::+1:
1132 PyUnicode_EncodeASCII
:const Py_UNICODE
*:s
::
1133 PyUnicode_EncodeASCII
:int:size
::
1134 PyUnicode_EncodeASCII
:const char
*:errors
::
1136 PyUnicode_AsASCIIString
:PyObject
*::+1:
1137 PyUnicode_AsASCIIString
:PyObject
*:unicode
::
1139 PyUnicode_DecodeCharmap
:PyObject
*::+1:
1140 PyUnicode_DecodeCharmap
:const char
*:s
::
1141 PyUnicode_DecodeCharmap
:int:size
::
1142 PyUnicode_DecodeCharmap
:PyObject
*:mapping
:0:
1143 PyUnicode_DecodeCharmap
:const char
*:errors
::
1145 PyUnicode_EncodeCharmap
:PyObject
*::+1:
1146 PyUnicode_EncodeCharmap
:const Py_UNICODE
*:s
::
1147 PyUnicode_EncodeCharmap
:int:size
::
1148 PyUnicode_EncodeCharmap
:PyObject
*:mapping
:0:
1149 PyUnicode_EncodeCharmap
:const char
*:errors
::
1151 PyUnicode_AsCharmapString
:PyObject
*::+1:
1152 PyUnicode_AsCharmapString
:PyObject
*:unicode
:0:
1153 PyUnicode_AsCharmapString
:PyObject
*:mapping
:0:
1155 PyUnicode_TranslateCharmap
:PyObject
*::+1:
1156 PyUnicode_TranslateCharmap
:const Py_UNICODE
*:s
::
1157 PyUnicode_TranslateCharmap
:int:size
::
1158 PyUnicode_TranslateCharmap
:PyObject
*:table
:0:
1159 PyUnicode_TranslateCharmap
:const char
*:errors
::
1161 PyUnicode_DecodeMBCS
:PyObject
*::+1:
1162 PyUnicode_DecodeMBCS
:const char
*:s
::
1163 PyUnicode_DecodeMBCS
:int:size
::
1164 PyUnicode_DecodeMBCS
:const char
*:errors
::
1166 PyUnicode_EncodeMBCS
:PyObject
*::+1:
1167 PyUnicode_EncodeMBCS
:const Py_UNICODE
*:s
::
1168 PyUnicode_EncodeMBCS
:int:size
::
1169 PyUnicode_EncodeMBCS
:const char
*:errors
::
1171 PyUnicode_AsMBCSString
:PyObject
*::+1:
1172 PyUnicode_AsMBCSString
:PyObject
*:unicode
::
1174 PyUnicode_Concat
:PyObject
*::+1:
1175 PyUnicode_Concat
:PyObject
*:left
:0:
1176 PyUnicode_Concat
:PyObject
*:right
:0:
1178 PyUnicode_Split
:PyObject
*::+1:
1179 PyUnicode_Split
:PyObject
*:left
:0:
1180 PyUnicode_Split
:PyObject
*:right
:0:
1181 PyUnicode_Split
:int:maxsplit
::
1183 PyUnicode_Splitlines
:PyObject
*::+1:
1184 PyUnicode_Splitlines
:PyObject
*:s
:0:
1185 PyUnicode_Splitlines
:int:maxsplit
::
1187 PyUnicode_Translate
:PyObject
*::+1:
1188 PyUnicode_Translate
:PyObject
*:str
:0:
1189 PyUnicode_Translate
:PyObject
*:table
:0:
1190 PyUnicode_Translate
:const char
*:errors
::
1192 PyUnicode_Join
:PyObject
*::+1:
1193 PyUnicode_Join
:PyObject
*:separator
:0:
1194 PyUnicode_Join
:PyObject
*:seq
:0:
1196 PyUnicode_Tailmatch
:PyObject
*::+1:
1197 PyUnicode_Tailmatch
:PyObject
*:str
:0:
1198 PyUnicode_Tailmatch
:PyObject
*:substr
:0:
1199 PyUnicode_Tailmatch
:int:start
::
1200 PyUnicode_Tailmatch
:int:end::
1201 PyUnicode_Tailmatch
:int:direction
::
1203 PyUnicode_Find
:PyObject
*::+1:
1204 PyUnicode_Find
:PyObject
*:str
:0:
1205 PyUnicode_Find
:PyObject
*:substr
:0:
1206 PyUnicode_Find
:int:start
::
1207 PyUnicode_Find
:int:end::
1208 PyUnicode_Find
:int:direction
::
1210 PyUnicode_Count
:PyObject
*::+1:
1211 PyUnicode_Count
:PyObject
*:str
:0:
1212 PyUnicode_Count
:PyObject
*:substr
:0:
1213 PyUnicode_Count
:int:start
::
1214 PyUnicode_Count
:int:end::
1216 PyUnicode_Replace
:PyObject
*::+1:
1217 PyUnicode_Replace
:PyObject
*:str
:0:
1218 PyUnicode_Replace
:PyObject
*:substr
:0:
1219 PyUnicode_Replace
:PyObject
*:replstr
:0:
1220 PyUnicode_Replace
:int:maxcount
::
1222 PyUnicode_Compare
:int:::
1223 PyUnicode_Compare
:PyObject
*:left
:0:
1224 PyUnicode_Compare
:PyObject
*:right
:0:
1226 PyUnicode_Format
:PyObject
*::+1:
1227 PyUnicode_Format
:PyObject
*:format
:0:
1228 PyUnicode_Format
:PyObject
*:args
:0:
1230 PyUnicode_Contains
:int:::
1231 PyUnicode_Contains
:PyObject
*:container
:0:
1232 PyUnicode_Contains
:PyObject
*:element
:0:
1235 Py_AtExit
:void
(*)():func
::
1237 Py_CompileString
:PyObject
*::+1:
1238 Py_CompileString
:char
*:str
::
1239 Py_CompileString
:char
*:filename
::
1240 Py_CompileString
:int:start
::
1243 Py_DECREF
:PyObject
*:o
:-1:
1245 Py_EndInterpreter
:void
:::
1246 Py_EndInterpreter
:PyThreadState
*:tstate
::
1249 Py_Exit
:int:status
::
1251 Py_FatalError
:void
:::
1252 Py_FatalError
:char
*:message
::
1254 Py_FdIsInteractive
:int:::
1255 Py_FdIsInteractive
:FILE
*:fp
::
1256 Py_FdIsInteractive
:char
*:filename
::
1260 Py_FindMethod
:PyObject
*::+1:
1261 Py_FindMethod
:PyMethodDef
[]:methods
::
1262 Py_FindMethod
:PyObject
*:self
:+1:
1263 Py_FindMethod
:char
*:name
::
1265 Py_GetBuildInfoconst
:char
*:::
1267 Py_GetCompilerconst
:char
*:::
1269 Py_GetCopyrightconst
:char
*:::
1271 Py_GetExecPrefix
:char
*:::
1275 Py_GetPlatformconst
:char
*:::
1277 Py_GetPrefix
:char
*:::
1279 Py_GetProgramFullPath
:char
*:::
1281 Py_GetProgramName
:char
*:::
1283 Py_GetVersionconst
:char
*:::
1286 Py_INCREF
:PyObject
*:o
:+1:
1288 Py_Initialize
:void
:::
1290 Py_IsInitialized
:int:::
1292 Py_NewInterpreter
:PyThreadState
*:::
1294 Py_SetProgramName
:void
:::
1295 Py_SetProgramName
:char
*:name
::
1298 Py_XDECREF
:PyObject
*:o
:-1:if o is
not NULL
1301 Py_XINCREF
:PyObject
*:o
:+1:if o is
not NULL
1303 _PyImport_FindExtension
:PyObject
*::0:??? see PyImport_AddModule
1304 _PyImport_FindExtension
:char
*:::
1305 _PyImport_FindExtension
:char
*:::
1307 _PyImport_Fini
:void
:::
1309 _PyImport_FixupExtension
:PyObject
*:::???
1310 _PyImport_FixupExtension
:char
*:::
1311 _PyImport_FixupExtension
:char
*:::
1313 _PyImport_Init
:void
:::
1315 _PyObject_Del
:void
:::
1316 _PyObject_Del
:PyObject
*:op
:0:
1318 _PyObject_New
:PyObject
*::+1:
1319 _PyObject_New
:PyTypeObject
*:type
:0:
1321 _PyObject_NewVar
:PyVarObject
*::+1:
1322 _PyObject_NewVar
:PyTypeObject
*:type
:0:
1323 _PyObject_NewVar
:int:size
::
1325 _PyString_Resize
:int:::
1326 _PyString_Resize
:PyObject
**:string
:+1:
1327 _PyString_Resize
:int:newsize
::
1329 _PyTuple_Resize
:int:::
1330 _PyTuple_Resize
:PyTupleObject
**:p
:+1:
1331 _PyTuple_Resize
:int:new
::
1332 _PyTuple_Resize
:int:last_is_sticky
::
1334 _Py_c_diff
:Py_complex
:::
1335 _Py_c_diff
:Py_complex
:left
::
1336 _Py_c_diff
:Py_complex
:right
::
1338 _Py_c_neg
:Py_complex
:::
1339 _Py_c_neg
:Py_complex
:complex
::
1341 _Py_c_pow
:Py_complex
:::
1342 _Py_c_pow
:Py_complex
:num
::
1343 _Py_c_pow
:Py_complex
:exp::
1345 _Py_c_prod
:Py_complex
:::
1346 _Py_c_prod
:Py_complex
:left
::
1347 _Py_c_prod
:Py_complex
:right
::
1349 _Py_c_quot
:Py_complex
:::
1350 _Py_c_quot
:Py_complex
:dividend
::
1351 _Py_c_quot
:Py_complex
:divisor
::
1353 _Py_c_sum
:Py_complex
:::
1354 _Py_c_sum
:Py_complex
:left
::
1355 _Py_c_sum
:Py_complex
:right
::