Add refcounts for PyErr_WarnEx
[pytest.git] / Doc / api / refcounts.dat
blobb8aaad543d0e7d6071ec596f605dc14ae95786ce
1 # Created by Skip Montanaro <skip@mojam.com>.
3 # Format:
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
22 # particular.
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
32 # code.
34 PyBool_FromLong:PyObject*::+1:
35 PyBool_FromLong:long:v:0:
37 PyBuffer_FromObject:PyObject*::+1:
38 PyBuffer_FromObject:PyObject*:base:+1:
39 PyBuffer_FromObject:int:offset::
40 PyBuffer_FromObject:int:size::
42 PyBuffer_FromReadWriteObject:PyObject*::+1:
43 PyBuffer_FromReadWriteObject:PyObject*:base:+1:
44 PyBuffer_FromReadWriteObject:int:offset::
45 PyBuffer_FromReadWriteObject:int:size::
47 PyBuffer_FromMemory:PyObject*::+1:
48 PyBuffer_FromMemory:void*:ptr::
49 PyBuffer_FromMemory:int:size::
51 PyBuffer_FromReadWriteMemory:PyObject*::+1:
52 PyBuffer_FromReadWriteMemory:void*:ptr::
53 PyBuffer_FromReadWriteMemory:int:size::
55 PyBuffer_New:PyObject*::+1:
56 PyBuffer_New:int:size::
58 PyCObject_AsVoidPtr:void*:::
59 PyCObject_AsVoidPtr:PyObject*:self:0:
61 PyCObject_FromVoidPtr:PyObject*::+1:
62 PyCObject_FromVoidPtr:void*:cobj::
63 PyCObject_FromVoidPtr::void (* destr)(void* )::
65 PyCObject_FromVoidPtrAndDesc:PyObject*::+1:
66 PyCObject_FromVoidPtrAndDesc:void*:cobj::
67 PyCObject_FromVoidPtrAndDesc:void*:desc::
68 PyCObject_FromVoidPtrAndDesc:void(*)(void*,void*):destr::
70 PyCObject_GetDesc:void*:::
71 PyCObject_GetDesc:PyObject*:self:0:
73 PyCell_New:PyObject*::+1:
74 PyCell_New:PyObject*:ob:0:
76 PyCell_GET:PyObject*::0:
77 PyCell_GET:PyObject*:ob:0:
79 PyCell_Get:PyObject*::+1:
80 PyCell_Get:PyObject*:cell:0:
82 PyCell_SET:void:::
83 PyCell_SET:PyObject*:cell:0:
84 PyCell_SET:PyObject*:value:0:
86 PyCell_Set:int:::
87 PyCell_Set:PyObject*:cell:0:
88 PyCell_Set:PyObject*:value:0:
90 PyCallIter_New:PyObject*::+1:
91 PyCallIter_New:PyObject*:callable::
92 PyCallIter_New:PyObject*:sentinel::
94 PyCallable_Check:int:::
95 PyCallable_Check:PyObject*:o:0:
97 PyComplex_AsCComplex:Py_complex:::
98 PyComplex_AsCComplex:PyObject*:op:0:
100 PyComplex_Check:int:::
101 PyComplex_Check:PyObject*:p:0:
103 PyComplex_FromCComplex:PyObject*::+1:
104 PyComplex_FromCComplex::Py_complex v::
106 PyComplex_FromDoubles:PyObject*::+1:
107 PyComplex_FromDoubles::double real::
108 PyComplex_FromDoubles::double imag::
110 PyComplex_ImagAsDouble:double:::
111 PyComplex_ImagAsDouble:PyObject*:op:0:
113 PyComplex_RealAsDouble:double:::
114 PyComplex_RealAsDouble:PyObject*:op:0:
116 PyDate_FromDate:PyObject*::+1:
117 PyDate_FromDate:int:year::
118 PyDate_FromDate:int:month::
119 PyDate_FromDate:int:day::
121 PyDate_FromTimestamp:PyObject*::+1:
122 PyDate_FromTimestamp:PyObject*:args:0:
124 PyDateTime_FromDateAndTime:PyObject*::+1:
125 PyDateTime_FromDateAndTime:int:year::
126 PyDateTime_FromDateAndTime:int:month::
127 PyDateTime_FromDateAndTime:int:day::
128 PyDateTime_FromDateAndTime:int:hour::
129 PyDateTime_FromDateAndTime:int:minute::
130 PyDateTime_FromDateAndTime:int:second::
131 PyDateTime_FromDateAndTime:int:usecond::
133 PyDateTime_FromTimestamp:PyObject*::+1:
134 PyDateTime_FromTimestamp:PyObject*:args:0:
136 PyDelta_FromDSU:PyObject*::+1:
137 PyDelta_FromDSU:int:days::
138 PyDelta_FromDSU:int:seconds::
139 PyDelta_FromDSU:int:useconds::
141 PyDescr_NewClassMethod:PyObject*::+1:
142 PyDescr_NewClassMethod:PyTypeObject*:type::
143 PyDescr_NewClassMethod:PyMethodDef*:method::
145 PyDescr_NewGetSet:PyObject*::+1:
146 PyDescr_NewGetSet:PyTypeObject*:type::
147 PyDescr_NewGetSet:PyGetSetDef*:getset::
149 PyDescr_NewMember:PyObject*::+1:
150 PyDescr_NewMember:PyTypeObject*:type::
151 PyDescr_NewMember:PyMemberDef*:member::
153 PyDescr_NewMethod:PyObject*::+1:
154 PyDescr_NewMethod:PyTypeObject*:type::
155 PyDescr_NewMethod:PyMethodDef*:meth::
157 PyDescr_NewWrapper:PyObject*::+1:
158 PyDescr_NewWrapper:PyTypeObject*:type::
159 PyDescr_NewWrapper:struct wrapperbase*:base::
160 PyDescr_NewWrapper:void*:wrapped::
162 PyDict_Check:int:::
163 PyDict_Check:PyObject*:p:0:
165 PyDict_Clear:void:::
166 PyDict_Clear:PyObject*:p:0:
168 PyDict_DelItem:int:::
169 PyDict_DelItem:PyObject*:p:0:
170 PyDict_DelItem:PyObject*:key:0:
172 PyDict_DelItemString:int:::
173 PyDict_DelItemString:PyObject*:p:0:
174 PyDict_DelItemString:char*:key::
176 PyDict_GetItem:PyObject*::0:0
177 PyDict_GetItem:PyObject*:p:0:
178 PyDict_GetItem:PyObject*:key:0:
180 PyDict_GetItemString:PyObject*::0:
181 PyDict_GetItemString:PyObject*:p:0:
182 PyDict_GetItemString:char*:key::
184 PyDict_Items:PyObject*::+1:
185 PyDict_Items:PyObject*:p:0:
187 PyDict_Keys:PyObject*::+1:
188 PyDict_Keys:PyObject*:p:0:
190 PyDict_New:PyObject*::+1:
192 PyDict_Copy:PyObject*::+1:
193 PyDict_Copy:PyObject*:p:0:
195 PyDict_Next:int:::
196 PyDict_Next:PyObject*:p:0:
197 PyDict_Next:int:ppos::
198 PyDict_Next:PyObject**:pkey:0:
199 PyDict_Next:PyObject**:pvalue:0:
201 PyDict_SetItem:int:::
202 PyDict_SetItem:PyObject*:p:0:
203 PyDict_SetItem:PyObject*:key:+1:
204 PyDict_SetItem:PyObject*:val:+1:
206 PyDict_SetItemString:int:::
207 PyDict_SetItemString:PyObject*:p:0:
208 PyDict_SetItemString:char*:key::
209 PyDict_SetItemString:PyObject*:val:+1:
211 PyDict_Size:int:::
212 PyDict_Size:PyObject*:p::
214 PyDict_Values:PyObject*::+1:
215 PyDict_Values:PyObject*:p:0:
217 PyDictProxy_New:PyObject*::+1:
218 PyDictProxy_New:PyObject*:dict:0:
220 PyErr_BadArgument:int:::
222 PyErr_BadInternalCall:void:::
224 PyErr_CheckSignals:int:::
226 PyErr_Clear:void:::
228 PyErr_ExceptionMatches:int:::
229 PyErr_ExceptionMatches:PyObject*:exc:0:
231 PyErr_Fetch:void:::
232 PyErr_Fetch:PyObject**:ptype:0:
233 PyErr_Fetch:PyObject**:pvalue:0:
234 PyErr_Fetch:PyObject**:ptraceback:0:
236 PyErr_GivenExceptionMatches:int:::
237 PyErr_GivenExceptionMatches:PyObject*:given:0:
238 PyErr_GivenExceptionMatches:PyObject*:exc:0:
240 PyErr_NewException:PyObject*::+1:
241 PyErr_NewException:char*:name::
242 PyErr_NewException:PyObject*:base:0:
243 PyErr_NewException:PyObject*:dict:0:
245 PyErr_NoMemory:PyObject*::null:
247 PyErr_NormalizeException:void:::
248 PyErr_NormalizeException:PyObject**:exc::???
249 PyErr_NormalizeException:PyObject**:val::???
250 PyErr_NormalizeException:PyObject**:tb::???
252 PyErr_Occurred:PyObject*::0:
254 PyErr_Print:void:::
256 PyErr_Restore:void:::
257 PyErr_Restore:PyObject*:type:-1:
258 PyErr_Restore:PyObject*:value:-1:
259 PyErr_Restore:PyObject*:traceback:-1:
261 PyErr_SetExcFromWindowsErr:PyObject*::null:
262 PyErr_SetExcFromWindowsErr:PyObject*:type:0:
263 PyErr_SetExcFromWindowsErr:int:ierr::
265 PyErr_SetExcFromWindowsErrWithFilename:PyObject*::null:
266 PyErr_SetExcFromWindowsErrWithFilename:PyObject*:type:0:
267 PyErr_SetExcFromWindowsErrWithFilename:int:ierr::
268 PyErr_SetExcFromWindowsErrWithFilename:char*:filename::
270 PyErr_SetFromErrno:PyObject*::null:
271 PyErr_SetFromErrno:PyObject*:type:0:
273 PyErr_SetFromErrnoWithFilename:PyObject*::null:
274 PyErr_SetFromErrnoWithFilename:PyObject*:type:0:
275 PyErr_SetFromErrnoWithFilename:char*:filename::
277 PyErr_SetFromWindowsErr:PyObject*::null:
278 PyErr_SetFromWindowsErr:int:ierr::
280 PyErr_SetFromWindowsErrWithFilename:PyObject*::null:
281 PyErr_SetFromWindowsErrWithFilename:int:ierr::
282 PyErr_SetFromWindowsErrWithFilename:char*:filename::
284 PyErr_SetInterrupt:void:::
286 PyErr_SetNone:void:::
287 PyErr_SetNone:PyObject*:type:+1:
289 PyErr_SetObject:void:::
290 PyErr_SetObject:PyObject*:type:+1:
291 PyErr_SetObject:PyObject*:value:+1:
293 PyErr_SetString:void:::
294 PyErr_SetString:PyObject*:type:+1:
295 PyErr_SetString:char*:message::
297 PyErr_Format:PyObject*::null:
298 PyErr_Format:PyObject*:exception:+1:
299 PyErr_Format:char*:format::
300 PyErr_Format::...::
302 PyErr_Warn:int:::
303 PyErr_Warn:PyObject*:category:0:
304 PyErr_Warn:char*:message::
306 PyErr_WarnEx:int:::
307 PyErr_WarnEx:PyObject*:category:0:
308 PyErr_WarnEx:const char*:message::
309 PyErr_WarnEx:Py_ssize_t:stack_level::
311 PyEval_AcquireLock:void:::
313 PyEval_AcquireThread:void:::
314 PyEval_AcquireThread:PyThreadState*:tstate::
316 PyEval_InitThreads:void:::
318 PyEval_ReleaseLock:void:::
320 PyEval_ReleaseThread:void:::
321 PyEval_ReleaseThread:PyThreadState*:tstate::
323 PyEval_RestoreThread:void:::
324 PyEval_RestoreThread:PyThreadState*:tstate::
326 PyEval_SaveThread:PyThreadState*:::
328 PyEval_EvalCode:PyObject*::+1:
329 PyEval_EvalCode:PyCodeObject*:co:0:
330 PyEval_EvalCode:PyObject*:globals:0:
331 PyEval_EvalCode:PyObject*:locals:0:
333 PyFile_AsFile:FILE*:::
334 PyFile_AsFile:PyFileObject*:p:0:
336 PyFile_Check:int:::
337 PyFile_Check:PyObject*:p:0:
339 PyFile_FromFile:PyObject*::+1:
340 PyFile_FromFile:FILE*:fp::
341 PyFile_FromFile:char*:name::
342 PyFile_FromFile:char*:mode::
343 PyFile_FromFile:int(*:close)::
345 PyFile_FromString:PyObject*::+1:
346 PyFile_FromString:char*:name::
347 PyFile_FromString:char*:mode::
349 PyFile_GetLine:PyObject*::+1:
350 PyFile_GetLine:PyObject*:p::
351 PyFile_GetLine:int:n::
353 PyFile_Name:PyObject*::0:
354 PyFile_Name:PyObject*:p:0:
356 PyFile_SetBufSize:void:::
357 PyFile_SetBufSize:PyFileObject*:p:0:
358 PyFile_SetBufSize:int:n::
360 PyFile_SoftSpace:int:::
361 PyFile_SoftSpace:PyFileObject*:p:0:
362 PyFile_SoftSpace:int:newflag::
364 PyFile_WriteObject:int:::
365 PyFile_WriteObject:PyObject*:obj:0:
366 PyFile_WriteObject:PyFileObject*:p:0:
367 PyFile_WriteObject:int:flags::
369 PyFile_WriteString:int:::
370 PyFile_WriteString:const char*:s::
371 PyFile_WriteString:PyFileObject*:p:0:
372 PyFile_WriteString:int:flags::
374 PyFloat_AS_DOUBLE:double:::
375 PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
377 PyFloat_AsDouble:double:::
378 PyFloat_AsDouble:PyObject*:pyfloat:0:
380 PyFloat_Check:int:::
381 PyFloat_Check:PyObject*:p:0:
383 PyFloat_FromDouble:PyObject*::+1:
384 PyFloat_FromDouble:double:v::
386 PyFloat_FromString:PyObject*::+1:
387 PyFloat_FromString:PyObject*:str:0:
388 PyFloat_FromString:char**:pend:0:ignored
390 PyFrozenSet_New:PyObject*::+1:
391 PyFrozenSet_New:PyObject*:iterable:0:
393 PyFunction_GetClosure:PyObject*::0:
394 PyFunction_GetClosure:PyObject*:op:0:
396 PyFunction_GetCode:PyObject*::0:
397 PyFunction_GetCode:PyObject*:op:0:
399 PyFunction_GetDefaults:PyObject*::0:
400 PyFunction_GetDefaults:PyObject*:op:0:
402 PyFunction_GetGlobals:PyObject*::0:
403 PyFunction_GetGlobals:PyObject*:op:0:
405 PyFunction_GetModule:PyObject*::0:
406 PyFunction_GetModule:PyObject*:op:0:
408 PyFunction_New:PyObject*::+1:
409 PyFunction_New:PyObject*:code:+1:
410 PyFunction_New:PyObject*:globals:+1:
412 PyFunction_SetClosure:int:::
413 PyFunction_SetClosure:PyObject*:op:0:
414 PyFunction_SetClosure:PyObject*:closure:+1:
416 PyFunction_SetDefaults:int:::
417 PyFunction_SetDefaults:PyObject*:op:0:
418 PyFunction_SetDefaults:PyObject*:defaults:+1:
420 PyGen_New:PyObject*::+1:
421 PyGen_New:PyFrameObject*:frame:0:
423 Py_InitModule:PyObject*::0:
424 Py_InitModule:char*:name::
425 Py_InitModule:PyMethodDef[]:methods::
427 Py_InitModule3:PyObject*::0:
428 Py_InitModule3:char*:name::
429 Py_InitModule3:PyMethodDef[]:methods::
430 Py_InitModule3:char*:doc::
432 Py_InitModule4:PyObject*::0:
433 Py_InitModule4:char*:name::
434 Py_InitModule4:PyMethodDef[]:methods::
435 Py_InitModule4:char*:doc::
436 Py_InitModule4:PyObject*:self::
437 Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
439 PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
440 PyImport_AddModule:char*:name::
442 PyImport_Cleanup:void:::
444 PyImport_ExecCodeModule:PyObject*::+1:
445 PyImport_ExecCodeModule:char*:name::
446 PyImport_ExecCodeModule:PyObject*:co:0:
448 PyImport_GetMagicNumber:long:::
450 PyImport_GetModuleDict:PyObject*::0:
452 PyImport_Import:PyObject*::+1:
453 PyImport_Import:PyObject*:name:0:
455 PyImport_ImportFrozenModule:int:::
456 PyImport_ImportFrozenModule:char*:::
458 PyImport_ImportModule:PyObject*::+1:
459 PyImport_ImportModule:char*:name::
461 PyImport_ImportModuleEx:PyObject*::+1:
462 PyImport_ImportModuleEx:char*:name::
463 PyImport_ImportModuleEx:PyObject*:globals:0:???
464 PyImport_ImportModuleEx:PyObject*:locals:0:???
465 PyImport_ImportModuleEx:PyObject*:fromlist:0:???
467 PyImport_ReloadModule:PyObject*::+1:
468 PyImport_ReloadModule:PyObject*:m:0:
470 PyInstance_New:PyObject*::+1:
471 PyInstance_New:PyObject*:klass:+1:
472 PyInstance_New:PyObject*:arg:0:
473 PyInstance_New:PyObject*:kw:0:
475 PyInstance_NewRaw:PyObject*::+1:
476 PyInstance_NewRaw:PyObject*:klass:+1:
477 PyInstance_NewRaw:PyObject*:dict:+1:
479 PyInt_AS_LONG:long:::
480 PyInt_AS_LONG:PyIntObject*:io:0:
482 PyInt_AsLong:long:::
483 PyInt_AsLong:PyObject*:io:0:
485 PyInt_Check:int:::
486 PyInt_Check:PyObject*:op:0:
488 PyInt_FromLong:PyObject*::+1:
489 PyInt_FromLong:long:ival::
491 PyInt_FromString:PyObject*::+1:
492 PyInt_FromString:char*:str:0:
493 PyInt_FromString:char**:pend:0:
494 PyInt_FromString:int:base:0:
496 PyInt_FromSsize_t:PyObject*::+1:
497 PyInt_FromSsize_t:Py_ssize_t:ival::
499 PyInt_GetMax:long:::
501 PyInterpreterState_Clear:void:::
502 PyInterpreterState_Clear:PyInterpreterState*:interp::
504 PyInterpreterState_Delete:void:::
505 PyInterpreterState_Delete:PyInterpreterState*:interp::
507 PyInterpreterState_New:PyInterpreterState*:::
509 PyIter_Check:int:o:0:
511 PyIter_Next:PyObject*::+1:
512 PyIter_Next:PyObject*:o:0:
514 PyList_Append:int:::
515 PyList_Append:PyObject*:list:0:
516 PyList_Append:PyObject*:item:+1:
518 PyList_AsTuple:PyObject*::+1:
519 PyList_AsTuple:PyObject*:list:0:
521 PyList_Check:int:::
522 PyList_Check:PyObject*:p:0:
524 PyList_GET_ITEM:PyObject*::0:
525 PyList_GET_ITEM:PyObject*:list:0:
526 PyList_GET_ITEM:int:i:0:
528 PyList_GET_SIZE:int:::
529 PyList_GET_SIZE:PyObject*:list:0:
531 PyList_GetItem:PyObject*::0:
532 PyList_GetItem:PyObject*:list:0:
533 PyList_GetItem:int:index::
535 PyList_GetSlice:PyObject*::+1:
536 PyList_GetSlice:PyObject*:list:0:
537 PyList_GetSlice:int:low::
538 PyList_GetSlice:int:high::
540 PyList_Insert:int:::
541 PyList_Insert:PyObject*:list:0:
542 PyList_Insert:int:index::
543 PyList_Insert:PyObject*:item:+1:
545 PyList_New:PyObject*::+1:
546 PyList_New:int:len::
548 PyList_Reverse:int:::
549 PyList_Reverse:PyObject*:list:0:
551 PyList_SET_ITEM:void:::
552 PyList_SET_ITEM:PyObject*:list:0:
553 PyList_SET_ITEM:int:i::
554 PyList_SET_ITEM:PyObject*:o:0:
556 PyList_SetItem:int:::
557 PyList_SetItem:PyObject*:list:0:
558 PyList_SetItem:int:index::
559 PyList_SetItem:PyObject*:item:0:
561 PyList_SetSlice:int:::
562 PyList_SetSlice:PyObject*:list:0:
563 PyList_SetSlice:int:low::
564 PyList_SetSlice:int:high::
565 PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
567 PyList_Size:int:::
568 PyList_Size:PyObject*:list:0:
570 PyList_Sort:int:::
571 PyList_Sort:PyObject*:list:0:
573 PyLong_AsDouble:double:::
574 PyLong_AsDouble:PyObject*:pylong:0:
576 PyLong_AsLong:long:::
577 PyLong_AsLong:PyObject*:pylong:0:
579 PyLong_AsUnsignedLong:unsigned long:::
580 PyLong_AsUnsignedLong:PyObject*:pylong:0:
582 PyLong_Check:int:::
583 PyLong_Check:PyObject*:p:0:
585 PyLong_FromDouble:PyObject*::+1:
586 PyLong_FromDouble:double:v::
588 PyLong_FromLong:PyObject*::+1:
589 PyLong_FromLong:long:v::
591 PyLong_FromLongLong:PyObject*::+1:
592 PyLong_FromLongLong:long long:v::
594 PyLong_FromUnsignedLongLong:PyObject*::+1:
595 PyLong_FromUnsignedLongLong:unsigned long long:v::
597 PyLong_FromString:PyObject*::+1:
598 PyLong_FromString:char*:str::
599 PyLong_FromString:char**:pend::
600 PyLong_FromString:int:base::
602 PyLong_FromUnicode:PyObject*::+1:
603 PyLong_FromUnicode:Py_UNICODE:u::
604 PyLong_FromUnicode:int:length::
605 PyLong_FromUnicode:int:base::
607 PyLong_FromUnsignedLong:PyObject*::+1:
608 PyLong_FromUnsignedLong:unsignedlong:v::
610 PyLong_FromVoidPtr:PyObject*::+1:
611 PyLong_FromVoidPtr:void*:p::
613 PyMapping_Check:int:::
614 PyMapping_Check:PyObject*:o:0:
616 PyMapping_DelItem:int:::
617 PyMapping_DelItem:PyObject*:o:0:
618 PyMapping_DelItem:PyObject*:key:0:
620 PyMapping_DelItemString:int:::
621 PyMapping_DelItemString:PyObject*:o:0:
622 PyMapping_DelItemString:char*:key::
624 PyMapping_GetItemString:PyObject*::+1:
625 PyMapping_GetItemString:PyObject*:o:0:
626 PyMapping_GetItemString:char*:key::
628 PyMapping_HasKey:int:::
629 PyMapping_HasKey:PyObject*:o:0:
630 PyMapping_HasKey:PyObject*:key::
632 PyMapping_HasKeyString:int:::
633 PyMapping_HasKeyString:PyObject*:o:0:
634 PyMapping_HasKeyString:char*:key::
636 PyMapping_Items:PyObject*::+1:
637 PyMapping_Items:PyObject*:o:0:
639 PyMapping_Keys:PyObject*::+1:
640 PyMapping_Keys:PyObject*:o:0:
642 PyMapping_Length:int:::
643 PyMapping_Length:PyObject*:o:0:
645 PyMapping_SetItemString:int:::
646 PyMapping_SetItemString:PyObject*:o:0:
647 PyMapping_SetItemString:char*:key::
648 PyMapping_SetItemString:PyObject*:v:+1:
650 PyMapping_Values:PyObject*::+1:
651 PyMapping_Values:PyObject*:o:0:
653 PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
654 PyMarshal_ReadLastObjectFromFile:FILE*:file::
656 PyMarshal_ReadObjectFromFile:PyObject*::+1:
657 PyMarshal_ReadObjectFromFile:FILE*:file::
659 PyMarshal_ReadObjectFromString:PyObject*::+1:
660 PyMarshal_ReadObjectFromString:char*:string::
661 PyMarshal_ReadObjectFromString:int:len::
663 PyMarshal_WriteObjectToString:PyObject*::+1:
664 PyMarshal_WriteObjectToString:PyObject*:value:0:
666 PyMethod_Class:PyObject*::0:
667 PyMethod_Class:PyObject*:im:0:
669 PyMethod_Function:PyObject*::0:
670 PyMethod_Function:PyObject*:im:0:
672 PyMethod_GET_CLASS:PyObject*::0:
673 PyMethod_GET_CLASS:PyObject*:im:0:
675 PyMethod_GET_FUNCTION:PyObject*::0:
676 PyMethod_GET_FUNCTION:PyObject*:im:0:
678 PyMethod_GET_SELF:PyObject*::0:
679 PyMethod_GET_SELF:PyObject*:im:0:
681 PyMethod_New:PyObject*::+1:
682 PyMethod_New:PyObject*:func:0:
683 PyMethod_New:PyObject*:self:0:
684 PyMethod_New:PyObject*:class:0:
686 PyMethod_Self:PyObject*::0:
687 PyMethod_Self:PyObject*:im:0:
689 PyModule_GetDict:PyObject*::0:
690 PyModule_GetDict::PyObject* module:0:
692 PyModule_GetFilename:char*:::
693 PyModule_GetFilename:PyObject*:module:0:
695 PyModule_GetName:char*:::
696 PyModule_GetName:PyObject*:module:0:
698 PyModule_New:PyObject*::+1:
699 PyModule_New::char* name::
701 PyNumber_Absolute:PyObject*::+1:
702 PyNumber_Absolute:PyObject*:o:0:
704 PyNumber_Add:PyObject*::+1:
705 PyNumber_Add:PyObject*:o1:0:
706 PyNumber_Add:PyObject*:o2:0:
708 PyNumber_And:PyObject*::+1:
709 PyNumber_And:PyObject*:o1:0:
710 PyNumber_And:PyObject*:o2:0:
712 PyNumber_Check:PyObject*:o:0:
713 PyNumber_Check:int:::
715 PyNumber_Coerce:int:::
716 PyNumber_Coerce:PyObject**:p1:+1:
717 PyNumber_Coerce:PyObject**:p2:+1:
719 PyNumber_Divide:PyObject*::+1:
720 PyNumber_Divide:PyObject*:o1:0:
721 PyNumber_Divide:PyObject*:o2:0:
723 PyNumber_Divmod:PyObject*::+1:
724 PyNumber_Divmod:PyObject*:o1:0:
725 PyNumber_Divmod:PyObject*:o2:0:
727 PyNumber_Float:PyObject*::+1:
728 PyNumber_Float:PyObject*:o:0:
730 PyNumber_FloorDivide:PyObject*::+1:
731 PyNumber_FloorDivide:PyObject*:v:0:
732 PyNumber_FloorDivide:PyObject*:w:0:
734 PyNumber_InPlaceAdd:PyObject*::+1:
735 PyNumber_InPlaceAdd:PyObject*:v:0:
736 PyNumber_InPlaceAdd:PyObject*:w:0:
738 PyNumber_InPlaceAnd:PyObject*::+1:
739 PyNumber_InPlaceAnd:PyObject*:v:0:
740 PyNumber_InPlaceAnd:PyObject*:w:0:
742 PyNumber_InPlaceDivide:PyObject*::+1:
743 PyNumber_InPlaceDivide:PyObject*:v:0:
744 PyNumber_InPlaceDivide:PyObject*:w:0:
746 PyNumber_InPlaceFloorDivide:PyObject*::+1:
747 PyNumber_InPlaceFloorDivide:PyObject*:v:0:
748 PyNumber_InPlaceFloorDivide:PyObject*:w:0:
750 PyNumber_InPlaceLshift:PyObject*::+1:
751 PyNumber_InPlaceLshift:PyObject*:v:0:
752 PyNumber_InPlaceLshift:PyObject*:w:0:
754 PyNumber_InPlaceMultiply:PyObject*::+1:
755 PyNumber_InPlaceMultiply:PyObject*:v:0:
756 PyNumber_InPlaceMultiply:PyObject*:w:0:
758 PyNumber_InPlaceOr:PyObject*::+1:
759 PyNumber_InPlaceOr:PyObject*:v:0:
760 PyNumber_InPlaceOr:PyObject*:w:0:
762 PyNumber_InPlacePower:PyObject*::+1:
763 PyNumber_InPlacePower:PyObject*:v:0:
764 PyNumber_InPlacePower:PyObject*:w:0:
765 PyNumber_InPlacePower:PyObject*:z:0:
767 PyNumber_InPlaceRemainder:PyObject*::+1:
768 PyNumber_InPlaceRemainder:PyObject*:v:0:
769 PyNumber_InPlaceRemainder:PyObject*:w:0:
771 PyNumber_InPlaceRshift:PyObject*::+1:
772 PyNumber_InPlaceRshift:PyObject*:v:0:
773 PyNumber_InPlaceRshift:PyObject*:w:0:
775 PyNumber_InPlaceSubtract:PyObject*::+1:
776 PyNumber_InPlaceSubtract:PyObject*:v:0:
777 PyNumber_InPlaceSubtract:PyObject*:w:0:
779 PyNumber_InPlaceTrueDivide:PyObject*::+1:
780 PyNumber_InPlaceTrueDivide:PyObject*:v:0:
781 PyNumber_InPlaceTrueDivide:PyObject*:w:0:
783 PyNumber_InPlaceXor:PyObject*::+1:
784 PyNumber_InPlaceXor:PyObject*:v:0:
785 PyNumber_InPlaceXor:PyObject*:w:0:
787 PyNumber_Int:PyObject*::+1:
788 PyNumber_Int:PyObject*:o:0:
790 PyNumber_Invert:PyObject*::+1:
791 PyNumber_Invert:PyObject*:o:0:
793 PyNumber_Long:PyObject*::+1:
794 PyNumber_Long:PyObject*:o:0:
796 PyNumber_Lshift:PyObject*::+1:
797 PyNumber_Lshift:PyObject*:o1:0:
798 PyNumber_Lshift:PyObject*:o2:0:
800 PyNumber_Multiply:PyObject*::+1:
801 PyNumber_Multiply:PyObject*:o1:0:
802 PyNumber_Multiply:PyObject*:o2:0:
804 PyNumber_Negative:PyObject*::+1:
805 PyNumber_Negative:PyObject*:o:0:
807 PyNumber_Or:PyObject*::+1:
808 PyNumber_Or:PyObject*:o1:0:
809 PyNumber_Or:PyObject*:o2:0:
811 PyNumber_Positive:PyObject*::+1:
812 PyNumber_Positive:PyObject*:o:0:
814 PyNumber_Power:PyObject*::+1:
815 PyNumber_Power:PyObject*:o1:0:
816 PyNumber_Power:PyObject*:o2:0:
817 PyNumber_Power:PyObject*:o3:0:
819 PyNumber_Remainder:PyObject*::+1:
820 PyNumber_Remainder:PyObject*:o1:0:
821 PyNumber_Remainder:PyObject*:o2:0:
823 PyNumber_Rshift:PyObject*::+1:
824 PyNumber_Rshift:PyObject*:o1:0:
825 PyNumber_Rshift:PyObject*:o2:0:
827 PyNumber_Subtract:PyObject*::+1:
828 PyNumber_Subtract:PyObject*:o1:0:
829 PyNumber_Subtract:PyObject*:o2:0:
831 PyNumber_TrueDivide:PyObject*::+1:
832 PyNumber_TrueDivide:PyObject*:v:0:
833 PyNumber_TrueDivide:PyObject*:w:0:
835 PyNumber_Xor:PyObject*::+1:
836 PyNumber_Xor:PyObject*:o1:0:
837 PyNumber_Xor:PyObject*:o2:0:
839 PyOS_GetLastModificationTime:long:::
840 PyOS_GetLastModificationTime:char*:filename::
842 PyObject_AsFileDescriptor:int:::
843 PyObject_AsFileDescriptor:PyObject*:o:0:
845 PyObject_Call:PyObject*::+1:
846 PyObject_Call:PyObject*:callable_object:0:
847 PyObject_Call:PyObject*:args:0:
848 PyObject_Call:PyObject*:kw:0:
850 PyObject_CallFunction:PyObject*::+1:
851 PyObject_CallFunction:PyObject*:callable_object:0:
852 PyObject_CallFunction:char*:format::
853 PyObject_CallFunction::...::
855 PyObject_CallFunctionObjArgs:PyObject*::+1:
856 PyObject_CallFunctionObjArgs:PyObject*:callable:0:
857 PyObject_CallFunctionObjArgs::...::
859 PyObject_CallMethod:PyObject*::+1:
860 PyObject_CallMethod:PyObject*:o:0:
861 PyObject_CallMethod:char*:m::
862 PyObject_CallMethod:char*:format::
863 PyObject_CallMethod::...::
865 PyObject_CallMethodObjArgs:PyObject*::+1:
866 PyObject_CallMethodObjArgs:PyObject*:o:0:
867 PyObject_CallMethodObjArgs:char*:name::
868 PyObject_CallMethodObjArgs::...::
870 PyObject_CallObject:PyObject*::+1:
871 PyObject_CallObject:PyObject*:callable_object:0:
872 PyObject_CallObject:PyObject*:args:0:
874 PyObject_Cmp:int:::
875 PyObject_Cmp:PyObject*:o1:0:
876 PyObject_Cmp:PyObject*:o2:0:
877 PyObject_Cmp:int*:result::
879 PyObject_Compare:int:::
880 PyObject_Compare:PyObject*:o1:0:
881 PyObject_Compare:PyObject*:o2:0:
883 PyObject_DelAttr:int:::
884 PyObject_DelAttr:PyObject*:o:0:
885 PyObject_DelAttr:PyObject*:attr_name:0:
887 PyObject_DelAttrString:int:::
888 PyObject_DelAttrString:PyObject*:o:0:
889 PyObject_DelAttrString:char*:attr_name::
891 PyObject_DelItem:int:::
892 PyObject_DelItem:PyObject*:o:0:
893 PyObject_DelItem:PyObject*:key:0:
895 PyObject_Dir:PyObject*::+1:
896 PyObject_Dir:PyObject*:o:0:
898 PyObject_GetAttr:PyObject*::+1:
899 PyObject_GetAttr:PyObject*:o:0:
900 PyObject_GetAttr:PyObject*:attr_name:0:
902 PyObject_GetAttrString:PyObject*::+1:
903 PyObject_GetAttrString:PyObject*:o:0:
904 PyObject_GetAttrString:char*:attr_name::
906 PyObject_GetItem:PyObject*::+1:
907 PyObject_GetItem:PyObject*:o:0:
908 PyObject_GetItem:PyObject*:key:0:
910 PyObject_GetIter:PyObject*::+1:
911 PyObject_GetIter:PyObject*:o:0:
913 PyObject_HasAttr:int:::
914 PyObject_HasAttr:PyObject*:o:0:
915 PyObject_HasAttr:PyObject*:attr_name:0:
917 PyObject_HasAttrString:int:::
918 PyObject_HasAttrString:PyObject*:o:0:
919 PyObject_HasAttrString:char*:attr_name:0:
921 PyObject_Hash:int:::
922 PyObject_Hash:PyObject*:o:0:
924 PyObject_IsTrue:int:::
925 PyObject_IsTrue:PyObject*:o:0:
927 PyObject_Init:PyObject*::0:
928 PyObject_Init:PyObject*:op:0:
930 PyObject_InitVar:PyVarObject*::0:
931 PyObject_InitVar:PyVarObject*:op:0:
933 PyObject_Length:int:::
934 PyObject_Length:PyObject*:o:0:
936 PyObject_NEW:PyObject*::+1:
938 PyObject_New:PyObject*::+1:
940 PyObject_NEW_VAR:PyObject*::+1:
942 PyObject_NewVar:PyObject*::+1:
944 PyObject_Print:int:::
945 PyObject_Print:PyObject*:o:0:
946 PyObject_Print:FILE*:fp::
947 PyObject_Print:int:flags::
949 PyObject_Repr:PyObject*::+1:
950 PyObject_Repr:PyObject*:o:0:
952 PyObject_RichCompare:PyObject*::+1:
953 PyObject_RichCompare:PyObject*:o1:0:
954 PyObject_RichCompare:PyObject*:o2:0:
955 PyObject_RichCompare:int:opid::
957 PyObject_RichCompareBool:int:::
958 PyObject_RichCompareBool:PyObject*:o1:0:
959 PyObject_RichCompareBool:PyObject*:o2:0:
960 PyObject_RichCompareBool:int:opid::
962 PyObject_SetAttr:int:::
963 PyObject_SetAttr:PyObject*:o:0:
964 PyObject_SetAttr:PyObject*:attr_name:0:
965 PyObject_SetAttr:PyObject*:v:+1:
967 PyObject_SetAttrString:int:::
968 PyObject_SetAttrString:PyObject*:o:0:
969 PyObject_SetAttrString:char*:attr_name::
970 PyObject_SetAttrString:PyObject*:v:+1:
972 PyObject_SetItem:int:::
973 PyObject_SetItem:PyObject*:o:0:
974 PyObject_SetItem:PyObject*:key:0:
975 PyObject_SetItem:PyObject*:v:+1:
977 PyObject_Str:PyObject*::+1:
978 PyObject_Str:PyObject*:o:0:
980 PyObject_Type:PyObject*::+1:
981 PyObject_Type:PyObject*:o:0:
983 PyObject_Unicode:PyObject*::+1:
984 PyObject_Unicode:PyObject*:o:0:
986 PyParser_SimpleParseFile:struct _node*:::
987 PyParser_SimpleParseFile:FILE*:fp::
988 PyParser_SimpleParseFile:char*:filename::
989 PyParser_SimpleParseFile:int:start::
991 PyParser_SimpleParseString:struct _node*:::
992 PyParser_SimpleParseString:char*:str::
993 PyParser_SimpleParseString:int:start::
995 PyRun_AnyFile:int:::
996 PyRun_AnyFile:FILE*:fp::
997 PyRun_AnyFile:char*:filename::
999 PyRun_File:PyObject*::+1:??? -- same as eval_code2()
1000 PyRun_File:FILE*:fp::
1001 PyRun_File:char*:filename::
1002 PyRun_File:int:start::
1003 PyRun_File:PyObject*:globals:0:
1004 PyRun_File:PyObject*:locals:0:
1006 PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1007 PyRun_FileEx:FILE*:fp::
1008 PyRun_FileEx:char*:filename::
1009 PyRun_FileEx:int:start::
1010 PyRun_FileEx:PyObject*:globals:0:
1011 PyRun_FileEx:PyObject*:locals:0:
1012 PyRun_FileEx:int:closeit::
1014 PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1015 PyRun_FileFlags:FILE*:fp::
1016 PyRun_FileFlags:char*:filename::
1017 PyRun_FileFlags:int:start::
1018 PyRun_FileFlags:PyObject*:globals:0:
1019 PyRun_FileFlags:PyObject*:locals:0:
1020 PyRun_FileFlags:PyCompilerFlags*:flags::
1022 PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1023 PyRun_FileExFlags:FILE*:fp::
1024 PyRun_FileExFlags:char*:filename::
1025 PyRun_FileExFlags:int:start::
1026 PyRun_FileExFlags:PyObject*:globals:0:
1027 PyRun_FileExFlags:PyObject*:locals:0:
1028 PyRun_FileExFlags:int:closeit::
1029 PyRun_FileExFlags:PyCompilerFlags*:flags::
1031 PyRun_InteractiveLoop:int:::
1032 PyRun_InteractiveLoop:FILE*:fp::
1033 PyRun_InteractiveLoop:char*:filename::
1035 PyRun_InteractiveOne:int:::
1036 PyRun_InteractiveOne:FILE*:fp::
1037 PyRun_InteractiveOne:char*:filename::
1039 PyRun_SimpleFile:int:::
1040 PyRun_SimpleFile:FILE*:fp::
1041 PyRun_SimpleFile:char*:filename::
1043 PyRun_SimpleString:int:::
1044 PyRun_SimpleString:char*:command::
1046 PyRun_String:PyObject*::+1:??? -- same as eval_code2()
1047 PyRun_String:char*:str::
1048 PyRun_String:int:start::
1049 PyRun_String:PyObject*:globals:0:
1050 PyRun_String:PyObject*:locals:0:
1052 PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
1053 PyRun_StringFlags:char*:str::
1054 PyRun_StringFlags:int:start::
1055 PyRun_StringFlags:PyObject*:globals:0:
1056 PyRun_StringFlags:PyObject*:locals:0:
1057 PyRun_StringFlags:PyCompilerFlags*:flags::
1059 PySeqIter_New:PyObject*::+1:
1060 PySeqIter_New:PyObject*:seq::
1062 PySequence_Check:int:::
1063 PySequence_Check:PyObject*:o:0:
1065 PySequence_Concat:PyObject*::+1:
1066 PySequence_Concat:PyObject*:o1:0:
1067 PySequence_Concat:PyObject*:o2:0:
1069 PySequence_Count:int:::
1070 PySequence_Count:PyObject*:o:0:
1071 PySequence_Count:PyObject*:value:0:
1073 PySequence_DelItem:int:::
1074 PySequence_DelItem:PyObject*:o:0:
1075 PySequence_DelItem:int:i::
1077 PySequence_DelSlice:int:::
1078 PySequence_DelSlice:PyObject*:o:0:
1079 PySequence_DelSlice:int:i1::
1080 PySequence_DelSlice:int:i2::
1082 PySequence_Fast:PyObject*::+1:
1083 PySequence_Fast:PyObject*:v:0:
1084 PySequence_Fast:const char*:m::
1086 PySequence_Fast_GET_ITEM:PyObject*::0:
1087 PySequence_Fast_GET_ITEM:PyObject*:o:0:
1088 PySequence_Fast_GET_ITEM:int:i::
1090 PySequence_GetItem:PyObject*::+1:
1091 PySequence_GetItem:PyObject*:o:0:
1092 PySequence_GetItem:int:i::
1094 PySequence_GetSlice:PyObject*::+1:
1095 PySequence_GetSlice:PyObject*:o:0:
1096 PySequence_GetSlice:int:i1::
1097 PySequence_GetSlice:int:i2::
1099 PySequence_In:int:::
1100 PySequence_In:PyObject*:o:0:
1101 PySequence_In:PyObject*:value:0:
1103 PySequence_Index:int:::
1104 PySequence_Index:PyObject*:o:0:
1105 PySequence_Index:PyObject*:value:0:
1107 PySequence_InPlaceConcat:PyObject*::+1:
1108 PySequence_InPlaceConcat:PyObject*:s:0:
1109 PySequence_InPlaceConcat:PyObject*:o:0:
1111 PySequence_InPlaceRepeat:PyObject*::+1:
1112 PySequence_InPlaceRepeat:PyObject*:s:0:
1113 PySequence_InPlaceRepeat:PyObject*:o:0:
1115 PySequence_ITEM:PyObject*::+1:
1116 PySequence_ITEM:PyObject*:o:0:
1117 PySequence_ITEM:int:i::
1119 PySequence_Repeat:PyObject*::+1:
1120 PySequence_Repeat:PyObject*:o:0:
1121 PySequence_Repeat:int:count::
1123 PySequence_SetItem:int:::
1124 PySequence_SetItem:PyObject*:o:0:
1125 PySequence_SetItem:int:i::
1126 PySequence_SetItem:PyObject*:v:+1:
1128 PySequence_SetSlice:int:::
1129 PySequence_SetSlice:PyObject*:o:0:
1130 PySequence_SetSlice:int:i1::
1131 PySequence_SetSlice:int:i2::
1132 PySequence_SetSlice:PyObject*:v:+1:
1134 PySequence_List:PyObject*::+1:
1135 PySequence_List:PyObject*:o:0:
1137 PySequence_Tuple:PyObject*::+1:
1138 PySequence_Tuple:PyObject*:o:0:
1140 PySet_Append:int:::
1141 PySet_Append:PyObject*:set:0:
1142 PySet_Append:PyObject*:key:+1:
1144 PySet_Contains:int:::
1145 PySet_Contains:PyObject*:anyset:0:
1146 PySet_Contains:PyObject*:key:0:
1148 PySet_Discard:int:::
1149 PySet_Discard:PyObject*:set:0:
1150 PySet_Discard:PyObject*:key:-1:no effect if key not found
1152 PySet_New:PyObject*::+1:
1153 PySet_New:PyObject*:iterable:0:
1155 PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
1156 PySet_Pop:PyObject*:set:0:
1158 PySet_Size:int:::
1159 PySet_Size:PyObject*:anyset:0:
1161 PySlice_Check:int:::
1162 PySlice_Check:PyObject*:ob:0:
1164 PySlice_New:PyObject*::+1:
1165 PySlice_New:PyObject*:start:0:
1166 PySlice_New:PyObject*:stop:0:
1167 PySlice_New:PyObject*:step:0:
1169 PyString_AS_STRING:char*:::
1170 PyString_AS_STRING:PyObject*:string:0:
1172 PyString_AsDecodedObject:PyObject*::+1:
1173 PyString_AsDecodedObject:PyObject*:str:0:
1174 PyString_AsDecodedObject:const char*:encoding::
1175 PyString_AsDecodedObject:const char*:errors::
1177 PyString_AsEncodedObject:PyObject*::+1:
1178 PyString_AsEncodedObject:PyObject*:str:0:
1179 PyString_AsEncodedObject:const char*:encoding::
1180 PyString_AsEncodedObject:const char*:errors::
1182 PyString_AsString:char*:::
1183 PyString_AsString:PyObject*:string:0:
1185 PyString_AsStringAndSize:int:::
1186 PyString_AsStringAndSize:PyObject*:obj:0:
1187 PyString_AsStringAndSize:char**:buffer::
1188 PyString_AsStringAndSize:int*:length::
1190 PyString_Check:int:::
1191 PyString_Check:PyObject*:o:0:
1193 PyString_Concat:void:::
1194 PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
1195 PyString_Concat:PyObject*:newpart:0:
1197 PyString_ConcatAndDel:void:::
1198 PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
1199 PyString_ConcatAndDel:PyObject*:newpart:-1:
1201 PyString_Format:PyObject*::+1:
1202 PyString_Format:PyObject*:format:0:
1203 PyString_Format:PyObject*:args:0:
1205 PyString_FromString:PyObject*::+1:
1206 PyString_FromString:const char*:v::
1208 PyString_FromStringAndSize:PyObject*::+1:
1209 PyString_FromStringAndSize:const char*:v::
1210 PyString_FromStringAndSize:int:len::
1212 PyString_FromFormat:PyObject*::+1:
1213 PyString_FromFormat:const char*:format::
1214 PyString_FromFormat::...::
1216 PyString_FromFormatV:PyObject*::+1:
1217 PyString_FromFormatV:const char*:format::
1218 PyString_FromFormatV:va_list:vargs::
1220 PyString_GET_SIZE:int:::
1221 PyString_GET_SIZE:PyObject*:string:0:
1223 PyString_InternFromString:PyObject*::+1:
1224 PyString_InternFromString:const char*:v::
1226 PyString_InternInPlace:void:::
1227 PyString_InternInPlace:PyObject**:string:+1:???
1229 PyString_Size:int:::
1230 PyString_Size:PyObject*:string:0:
1232 PyString_Decode:PyObject*::+1:
1233 PyString_Decode:const char*:s::
1234 PyString_Decode:int:size::
1235 PyString_Decode:const char*:encoding::
1236 PyString_Decode:const char*:errors::
1238 PyString_Encode:PyObject*::+1:
1239 PyString_Encode:const char*:s::
1240 PyString_Encode:int:size::
1241 PyString_Encode:const char*:encoding::
1242 PyString_Encode:const char*:errors::
1244 PyString_AsEncodedString:PyObject*::+1:
1245 PyString_AsEncodedString:PyObject*:str::
1246 PyString_AsEncodedString:const char*:encoding::
1247 PyString_AsEncodedString:const char*:errors::
1249 PySys_SetArgv:int:::
1250 PySys_SetArgv:int:argc::
1251 PySys_SetArgv:char**:argv::
1253 PyThreadState_Clear:void:::
1254 PyThreadState_Clear:PyThreadState*:tstate::
1256 PyThreadState_Delete:void:::
1257 PyThreadState_Delete:PyThreadState*:tstate::
1259 PyThreadState_Get:PyThreadState*:::
1261 PyThreadState_GetDict:PyObject*::0:
1263 PyThreadState_New:PyThreadState*:::
1264 PyThreadState_New:PyInterpreterState*:interp::
1266 PyThreadState_Swap:PyThreadState*:::
1267 PyThreadState_Swap:PyThreadState*:tstate::
1269 PyTime_FromTime:PyObject*::+1:
1270 PyTime_FromTime:int:hour::
1271 PyTime_FromTime:int:minute::
1272 PyTime_FromTime:int:second::
1273 PyTime_FromTime:int:usecond::
1275 PyTuple_Check:int:::
1276 PyTuple_Check:PyObject*:p:0:
1278 PyTuple_GET_ITEM:PyObject*::0:
1279 PyTuple_GET_ITEM:PyTupleObject*:p:0:
1280 PyTuple_GET_ITEM:int:pos::
1282 PyTuple_GetItem:PyObject*::0:
1283 PyTuple_GetItem:PyTupleObject*:p:0:
1284 PyTuple_GetItem:int:pos::
1286 PyTuple_GetSlice:PyObject*::+1:
1287 PyTuple_GetSlice:PyTupleObject*:p:0:
1288 PyTuple_GetSlice:int:low::
1289 PyTuple_GetSlice:int:high::
1291 PyTuple_New:PyObject*::+1:
1292 PyTuple_New:int:len::
1294 PyTuple_Pack:PyObject*::+1:
1295 PyTuple_Pack:int:len::
1296 PyTuple_Pack:PyObject*:...:0:
1298 PyTuple_SET_ITEM:void:::
1299 PyTuple_SET_ITEM:PyTupleObject*:p:0:
1300 PyTuple_SET_ITEM:int:pos::
1301 PyTuple_SET_ITEM:PyObject*:o:0:
1303 PyTuple_SetItem:int:::
1304 PyTuple_SetItem:PyTupleObject*:p:0:
1305 PyTuple_SetItem:int:pos::
1306 PyTuple_SetItem:PyObject*:o:0:
1308 PyTuple_Size:int:::
1309 PyTuple_Size:PyTupleObject*:p:0:
1311 PyType_GenericAlloc:PyObject*::+1:
1312 PyType_GenericAlloc:PyObject*:type:0:
1313 PyType_GenericAlloc:int:nitems:0:
1315 PyType_GenericNew:PyObject*::+1:
1316 PyType_GenericNew:PyObject*:type:0:
1317 PyType_GenericNew:PyObject*:args:0:
1318 PyType_GenericNew:PyObject*:kwds:0:
1320 PyUnicode_Check:int:::
1321 PyUnicode_Check:PyObject*:o:0:
1323 PyUnicode_GET_SIZE:int:::
1324 PyUnicode_GET_SIZE:PyObject*:o:0:
1326 PyUnicode_GET_DATA_SIZE:int:::
1327 PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1329 PyUnicode_AS_UNICODE:Py_UNICODE*:::
1330 PyUnicode_AS_UNICODE:PyObject*:o:0:
1332 PyUnicode_AS_DATA:const char*:::
1333 PyUnicode_AS_DATA:PyObject*:o:0:
1335 Py_UNICODE_ISSPACE:int:::
1336 Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1338 Py_UNICODE_ISLOWER:int:::
1339 Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1341 Py_UNICODE_ISUPPER:int:::
1342 Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1344 Py_UNICODE_ISTITLE:int:::
1345 Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1347 Py_UNICODE_ISLINEBREAK:int:::
1348 Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1350 Py_UNICODE_ISDECIMAL:int:::
1351 Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1353 Py_UNICODE_ISDIGIT:int:::
1354 Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1356 Py_UNICODE_ISNUMERIC:int:::
1357 Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1359 Py_UNICODE_TOLOWER:Py_UNICODE:::
1360 Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1362 Py_UNICODE_TOUPPER:Py_UNICODE:::
1363 Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1365 Py_UNICODE_TOTITLE:Py_UNICODE:::
1366 Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1368 Py_UNICODE_TODECIMAL:int:::
1369 Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1371 Py_UNICODE_TODIGIT:int:::
1372 Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1374 Py_UNICODE_TONUMERIC:double:::
1375 Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1377 PyUnicode_FromUnicode:PyObject*::+1:
1378 PyUnicode_FromUnicode:const Py_UNICODE*:u::
1379 PyUnicode_FromUnicode:int:size::
1381 PyUnicode_AsUnicode:Py_UNICODE*:::
1382 PyUnicode_AsUnicode:PyObject :*unicode:0:
1384 PyUnicode_GetSize:int:::
1385 PyUnicode_GetSize:PyObject :*unicode:0:
1387 PyUnicode_FromObject:PyObject*::+1:
1388 PyUnicode_FromObject:PyObject*:*obj:0:
1390 PyUnicode_FromEncodedObject:PyObject*::+1:
1391 PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1392 PyUnicode_FromEncodedObject:const char*:encoding::
1393 PyUnicode_FromEncodedObject:const char*:errors::
1395 PyUnicode_FromWideChar:PyObject*::+1:
1396 PyUnicode_FromWideChar:const wchar_t*:w::
1397 PyUnicode_FromWideChar:int:size::
1399 PyUnicode_AsWideChar:int:::
1400 PyUnicode_AsWideChar:PyObject*:*unicode:0:
1401 PyUnicode_AsWideChar:wchar_t*:w::
1402 PyUnicode_AsWideChar:int:size::
1404 PyUnicode_Decode:PyObject*::+1:
1405 PyUnicode_Decode:const char*:s::
1406 PyUnicode_Decode:int:size::
1407 PyUnicode_Decode:const char*:encoding::
1408 PyUnicode_Decode:const char*:errors::
1410 PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1411 PyUnicode_DecodeUTF16Stateful:const char*:s::
1412 PyUnicode_DecodeUTF16Stateful:int:size::
1413 PyUnicode_DecodeUTF16Stateful:const char*:errors::
1414 PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1415 PyUnicode_DecodeUTF16Stateful:int*:consumed::
1417 PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1418 PyUnicode_DecodeUTF8Stateful:const char*:s::
1419 PyUnicode_DecodeUTF8Stateful:int:size::
1420 PyUnicode_DecodeUTF8Stateful:const char*:errors::
1421 PyUnicode_DecodeUTF8Stateful:int*:consumed::
1423 PyUnicode_Encode:PyObject*::+1:
1424 PyUnicode_Encode:const Py_UNICODE*:s::
1425 PyUnicode_Encode:int:size::
1426 PyUnicode_Encode:const char*:encoding::
1427 PyUnicode_Encode:const char*:errors::
1429 PyUnicode_AsEncodedString:PyObject*::+1:
1430 PyUnicode_AsEncodedString:PyObject*:unicode::
1431 PyUnicode_AsEncodedString:const char*:encoding::
1432 PyUnicode_AsEncodedString:const char*:errors::
1434 PyUnicode_DecodeUTF8:PyObject*::+1:
1435 PyUnicode_DecodeUTF8:const char*:s::
1436 PyUnicode_DecodeUTF8:int:size::
1437 PyUnicode_DecodeUTF8:const char*:errors::
1439 PyUnicode_EncodeUTF8:PyObject*::+1:
1440 PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1441 PyUnicode_EncodeUTF8:int:size::
1442 PyUnicode_EncodeUTF8:const char*:errors::
1444 PyUnicode_AsUTF8String:PyObject*::+1:
1445 PyUnicode_AsUTF8String:PyObject*:unicode::
1447 PyUnicode_DecodeUTF16:PyObject*::+1:
1448 PyUnicode_DecodeUTF16:const char*:s::
1449 PyUnicode_DecodeUTF16:int:size::
1450 PyUnicode_DecodeUTF16:const char*:errors::
1451 PyUnicode_DecodeUTF16:int*:byteorder::
1453 PyUnicode_EncodeUTF16:PyObject*::+1:
1454 PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1455 PyUnicode_EncodeUTF16:int:size::
1456 PyUnicode_EncodeUTF16:const char*:errors::
1457 PyUnicode_EncodeUTF16:int:byteorder::
1459 PyUnicode_AsUTF16String:PyObject*::+1:
1460 PyUnicode_AsUTF16String:PyObject*:unicode::
1462 PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1463 PyUnicode_DecodeUnicodeEscape:const char*:s::
1464 PyUnicode_DecodeUnicodeEscape:int:size::
1465 PyUnicode_DecodeUnicodeEscape:const char*:errors::
1467 PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1468 PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1469 PyUnicode_EncodeUnicodeEscape:int:size::
1470 PyUnicode_EncodeUnicodeEscape:const char*:errors::
1472 PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1473 PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1475 PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1476 PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1477 PyUnicode_DecodeRawUnicodeEscape:int:size::
1478 PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1480 PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1481 PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1482 PyUnicode_EncodeRawUnicodeEscape:int:size::
1483 PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1485 PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1486 PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1488 PyUnicode_DecodeLatin1:PyObject*::+1:
1489 PyUnicode_DecodeLatin1:const char*:s::
1490 PyUnicode_DecodeLatin1:int:size::
1491 PyUnicode_DecodeLatin1:const char*:errors::
1493 PyUnicode_EncodeLatin1:PyObject*::+1:
1494 PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1495 PyUnicode_EncodeLatin1:int:size::
1496 PyUnicode_EncodeLatin1:const char*:errors::
1498 PyUnicode_AsLatin1String:PyObject*::+1:
1499 PyUnicode_AsLatin1String:PyObject*:unicode::
1501 PyUnicode_DecodeASCII:PyObject*::+1:
1502 PyUnicode_DecodeASCII:const char*:s::
1503 PyUnicode_DecodeASCII:int:size::
1504 PyUnicode_DecodeASCII:const char*:errors::
1506 PyUnicode_EncodeASCII:PyObject*::+1:
1507 PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1508 PyUnicode_EncodeASCII:int:size::
1509 PyUnicode_EncodeASCII:const char*:errors::
1511 PyUnicode_AsASCIIString:PyObject*::+1:
1512 PyUnicode_AsASCIIString:PyObject*:unicode::
1514 PyUnicode_DecodeCharmap:PyObject*::+1:
1515 PyUnicode_DecodeCharmap:const char*:s::
1516 PyUnicode_DecodeCharmap:int:size::
1517 PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1518 PyUnicode_DecodeCharmap:const char*:errors::
1520 PyUnicode_EncodeCharmap:PyObject*::+1:
1521 PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1522 PyUnicode_EncodeCharmap:int:size::
1523 PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1524 PyUnicode_EncodeCharmap:const char*:errors::
1526 PyUnicode_AsCharmapString:PyObject*::+1:
1527 PyUnicode_AsCharmapString:PyObject*:unicode:0:
1528 PyUnicode_AsCharmapString:PyObject*:mapping:0:
1530 PyUnicode_TranslateCharmap:PyObject*::+1:
1531 PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1532 PyUnicode_TranslateCharmap:int:size::
1533 PyUnicode_TranslateCharmap:PyObject*:table:0:
1534 PyUnicode_TranslateCharmap:const char*:errors::
1536 PyUnicode_DecodeMBCS:PyObject*::+1:
1537 PyUnicode_DecodeMBCS:const char*:s::
1538 PyUnicode_DecodeMBCS:int:size::
1539 PyUnicode_DecodeMBCS:const char*:errors::
1541 PyUnicode_EncodeMBCS:PyObject*::+1:
1542 PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1543 PyUnicode_EncodeMBCS:int:size::
1544 PyUnicode_EncodeMBCS:const char*:errors::
1546 PyUnicode_AsMBCSString:PyObject*::+1:
1547 PyUnicode_AsMBCSString:PyObject*:unicode::
1549 PyUnicode_Concat:PyObject*::+1:
1550 PyUnicode_Concat:PyObject*:left:0:
1551 PyUnicode_Concat:PyObject*:right:0:
1553 PyUnicode_Split:PyObject*::+1:
1554 PyUnicode_Split:PyObject*:left:0:
1555 PyUnicode_Split:PyObject*:right:0:
1556 PyUnicode_Split:int:maxsplit::
1558 PyUnicode_Splitlines:PyObject*::+1:
1559 PyUnicode_Splitlines:PyObject*:s:0:
1560 PyUnicode_Splitlines:int:maxsplit::
1562 PyUnicode_Translate:PyObject*::+1:
1563 PyUnicode_Translate:PyObject*:str:0:
1564 PyUnicode_Translate:PyObject*:table:0:
1565 PyUnicode_Translate:const char*:errors::
1567 PyUnicode_Join:PyObject*::+1:
1568 PyUnicode_Join:PyObject*:separator:0:
1569 PyUnicode_Join:PyObject*:seq:0:
1571 PyUnicode_Tailmatch:PyObject*::+1:
1572 PyUnicode_Tailmatch:PyObject*:str:0:
1573 PyUnicode_Tailmatch:PyObject*:substr:0:
1574 PyUnicode_Tailmatch:int:start::
1575 PyUnicode_Tailmatch:int:end::
1576 PyUnicode_Tailmatch:int:direction::
1578 PyUnicode_Find:int:::
1579 PyUnicode_Find:PyObject*:str:0:
1580 PyUnicode_Find:PyObject*:substr:0:
1581 PyUnicode_Find:int:start::
1582 PyUnicode_Find:int:end::
1583 PyUnicode_Find:int:direction::
1585 PyUnicode_Count:int:::
1586 PyUnicode_Count:PyObject*:str:0:
1587 PyUnicode_Count:PyObject*:substr:0:
1588 PyUnicode_Count:int:start::
1589 PyUnicode_Count:int:end::
1591 PyUnicode_Replace:PyObject*::+1:
1592 PyUnicode_Replace:PyObject*:str:0:
1593 PyUnicode_Replace:PyObject*:substr:0:
1594 PyUnicode_Replace:PyObject*:replstr:0:
1595 PyUnicode_Replace:int:maxcount::
1597 PyUnicode_Compare:int:::
1598 PyUnicode_Compare:PyObject*:left:0:
1599 PyUnicode_Compare:PyObject*:right:0:
1601 PyUnicode_Format:PyObject*::+1:
1602 PyUnicode_Format:PyObject*:format:0:
1603 PyUnicode_Format:PyObject*:args:0:
1605 PyUnicode_Contains:int:::
1606 PyUnicode_Contains:PyObject*:container:0:
1607 PyUnicode_Contains:PyObject*:element:0:
1609 PyWeakref_GET_OBJECT:PyObject*::0:
1610 PyWeakref_GET_OBJECT:PyObject*:ref:0:
1612 PyWeakref_GetObject:PyObject*::0:
1613 PyWeakref_GetObject:PyObject*:ref:0:
1615 PyWeakref_NewProxy:PyObject*::+1:
1616 PyWeakref_NewProxy:PyObject*:ob:0:
1617 PyWeakref_NewProxy:PyObject*:callback:0:
1619 PyWeakref_NewRef:PyObject*::+1:
1620 PyWeakref_NewRef:PyObject*:ob:0:
1621 PyWeakref_NewRef:PyObject*:callback:0:
1623 PyWrapper_New:PyObject*::+1:
1624 PyWrapper_New:PyObject*:d:0:
1625 PyWrapper_New:PyObject*:self:0:
1627 Py_AtExit:int:::
1628 Py_AtExit:void (*)():func::
1630 Py_BuildValue:PyObject*::+1:
1631 Py_BuildValue:char*:format::
1633 Py_CompileString:PyObject*::+1:
1634 Py_CompileString:char*:str::
1635 Py_CompileString:char*:filename::
1636 Py_CompileString:int:start::
1638 Py_CompileStringFlags:PyObject*::+1:
1639 Py_CompileStringFlags:char*:str::
1640 Py_CompileStringFlags:char*:filename::
1641 Py_CompileStringFlags:int:start::
1642 Py_CompileStringFlags:PyCompilerFlags*:flags::
1644 Py_DECREF:void:::
1645 Py_DECREF:PyObject*:o:-1:
1647 Py_EndInterpreter:void:::
1648 Py_EndInterpreter:PyThreadState*:tstate::
1650 Py_Exit:void:::
1651 Py_Exit:int:status::
1653 Py_FatalError:void:::
1654 Py_FatalError:char*:message::
1656 Py_FdIsInteractive:int:::
1657 Py_FdIsInteractive:FILE*:fp::
1658 Py_FdIsInteractive:char*:filename::
1660 Py_Finalize:void:::
1662 Py_FindMethod:PyObject*::+1:
1663 Py_FindMethod:PyMethodDef[]:methods::
1664 Py_FindMethod:PyObject*:self:+1:
1665 Py_FindMethod:char*:name::
1667 Py_GetBuildInfoconst:char*:::
1669 Py_GetCompilerconst:char*:::
1671 Py_GetCopyrightconst:char*:::
1673 Py_GetExecPrefix:char*:::
1675 Py_GetPath:char*:::
1677 Py_GetPlatformconst:char*:::
1679 Py_GetPrefix:char*:::
1681 Py_GetProgramFullPath:char*:::
1683 Py_GetProgramName:char*:::
1685 Py_GetVersionconst:char*:::
1687 Py_INCREF:void:::
1688 Py_INCREF:PyObject*:o:+1:
1690 Py_Initialize:void:::
1692 Py_IsInitialized:int:::
1694 Py_NewInterpreter:PyThreadState*:::
1696 Py_SetProgramName:void:::
1697 Py_SetProgramName:char*:name::
1699 Py_XDECREF:void:::
1700 Py_XDECREF:PyObject*:o:-1:if o is not NULL
1702 Py_XINCREF:void:::
1703 Py_XINCREF:PyObject*:o:+1:if o is not NULL
1705 _PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1706 _PyImport_FindExtension:char*:::
1707 _PyImport_FindExtension:char*:::
1709 _PyImport_Fini:void:::
1711 _PyImport_FixupExtension:PyObject*:::???
1712 _PyImport_FixupExtension:char*:::
1713 _PyImport_FixupExtension:char*:::
1715 _PyImport_Init:void:::
1717 _PyObject_Del:void:::
1718 _PyObject_Del:PyObject*:op:0:
1720 _PyObject_New:PyObject*::+1:
1721 _PyObject_New:PyTypeObject*:type:0:
1723 _PyObject_NewVar:PyObject*::+1:
1724 _PyObject_NewVar:PyTypeObject*:type:0:
1725 _PyObject_NewVar:int:size::
1727 _PyString_Resize:int:::
1728 _PyString_Resize:PyObject**:string:+1:
1729 _PyString_Resize:int:newsize::
1731 _PyTuple_Resize:int:::
1732 _PyTuple_Resize:PyTupleObject**:p:+1:
1733 _PyTuple_Resize:int:new::
1735 _Py_c_diff:Py_complex:::
1736 _Py_c_diff:Py_complex:left::
1737 _Py_c_diff:Py_complex:right::
1739 _Py_c_neg:Py_complex:::
1740 _Py_c_neg:Py_complex:complex::
1742 _Py_c_pow:Py_complex:::
1743 _Py_c_pow:Py_complex:num::
1744 _Py_c_pow:Py_complex:exp::
1746 _Py_c_prod:Py_complex:::
1747 _Py_c_prod:Py_complex:left::
1748 _Py_c_prod:Py_complex:right::
1750 _Py_c_quot:Py_complex:::
1751 _Py_c_quot:Py_complex:dividend::
1752 _Py_c_quot:Py_complex:divisor::
1754 _Py_c_sum:Py_complex:::
1755 _Py_c_sum:Py_complex:left::
1756 _Py_c_sum:Py_complex:right::