Merged release21-maint changes.
[python/dscho.git] / Doc / api / refcounts.dat
blob49c6dd51c561562fcd0227f59fabbe65f30a3f2f
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 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:
92 PyDict_Check:int:::
93 PyDict_Check:PyObject*:p:0:
95 PyDict_Clear:void:::
96 PyDict_Clear:PyObject*:p:0:
98 PyDict_DelItem:int:::
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:
125 PyDict_Next:int:::
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:
141 PyDict_Size:int:::
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:::
153 PyErr_Clear:void:::
155 PyErr_ExceptionMatches:int:::
156 PyErr_ExceptionMatches:PyObject*:exc:0:
158 PyErr_Fetch:void:::
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:
181 PyErr_Print:void:::
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::
207 PyErr_Format::...::
209 PyErr_Warn:int:::
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:
238 PyFile_Check:int:::
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:
282 PyFloat_Check:int:::
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:
347 PyInt_AsLong:long:::
348 PyInt_AsLong:PyObject*:io:0:
350 PyInt_Check:int:::
351 PyInt_Check:PyObject*::0:
353 PyInt_FromLong:PyObject*::+1:
354 PyInt_FromLong:long:ival::
356 PyInt_GetMax:long:::
358 PyInterpreterState_Clear:void:::
359 PyInterpreterState_Clear:PyInterpreterState*:interp::
361 PyInterpreterState_Delete:void:::
362 PyInterpreterState_Delete:PyInterpreterState*:interp::
364 PyInterpreterState_New:PyInterpreterState*:::
366 PyIter_Check:int:o:0:
368 PyIter_Next:PyObject*::+1:
369 PyIter_Next:PyObject*:o:0:
371 PyList_Append:int:::
372 PyList_Append:PyObject*:list:0:
373 PyList_Append:PyObject*:item:+1:
375 PyList_AsTuple:PyObject*::+1:
376 PyList_AsTuple:PyObject*:list:0:
378 PyList_Check:int:::
379 PyList_Check:PyObject*:p:0:
381 PyList_GET_ITEM:PyObject*::0:
382 PyList_GET_ITEM:PyObject*:list:0:
383 PyList_GET_ITEM:int:i:0:
385 PyList_GET_SIZE:int:::
386 PyList_GET_SIZE:PyObject*:list:0:
388 PyList_GetItem:PyObject*::0:
389 PyList_GetItem:PyObject*:list:0:
390 PyList_GetItem:int:index::
392 PyList_GetSlice:PyObject*::+1:
393 PyList_GetSlice:PyObject*:list:0:
394 PyList_GetSlice:int:low::
395 PyList_GetSlice:int:high::
397 PyList_Insert:int:::
398 PyList_Insert:PyObject*:list:0:
399 PyList_Insert:int:index::
400 PyList_Insert:PyObject*:item:+1:
402 PyList_New:PyObject*::+1:
403 PyList_New:int:len::
405 PyList_Reverse:int:::
406 PyList_Reverse:PyObject*:list:0:
408 PyList_SET_ITEM:void:::
409 PyList_SET_ITEM:PyObject*:list:0:
410 PyList_SET_ITEM:int:i::
411 PyList_SET_ITEM:PyObject*:o:0:
413 PyList_SetItem:int:::
414 PyList_SetItem:PyObject*:list:0:
415 PyList_SetItem:int:index::
416 PyList_SetItem:PyObject*:item:0:
418 PyList_SetSlice:int:::
419 PyList_SetSlice:PyObject*:list:0:
420 PyList_SetSlice:int:low::
421 PyList_SetSlice:int:high::
422 PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
424 PyList_Size:int:::
425 PyList_Size:PyObject*:list:0:
427 PyList_Sort:int:::
428 PyList_Sort:PyObject*:list:0:
430 PyLong_AsDouble:double:::
431 PyLong_AsDouble:PyObject*:pylong:0:
433 PyLong_AsLong:long:::
434 PyLong_AsLong:PyObject*:pylong:0:
436 PyLong_AsUnsignedLong:unsigned long:::
437 PyLong_AsUnsignedLong:PyObject*:pylong:0:
439 PyLong_Check:int:::
440 PyLong_Check:PyObject*:p:0:
442 PyLong_FromDouble:PyObject*::+1:
443 PyLong_FromDouble:double:v::
445 PyLong_FromLong:PyObject*::+1:
446 PyLong_FromLong:long:v::
448 PyLong_FromString:PyObject*::+1:
449 PyLong_FromString:char*:str::
450 PyLong_FromString:char**:pend::
451 PyLong_FromString:int:base::
453 PyLong_FromUnsignedLong:PyObject*::+1:
454 PyLong_FromUnsignedLong:unsignedlong:v::
456 PyMapping_Check:int:::
457 PyMapping_Check:PyObject*:o:0:
459 PyMapping_DelItem:int:::
460 PyMapping_DelItem:PyObject*:o:0:
461 PyMapping_DelItem:PyObject*:key:0:
463 PyMapping_DelItemString:int:::
464 PyMapping_DelItemString:PyObject*:o:0:
465 PyMapping_DelItemString:char*:key::
467 PyMapping_GetItemString:PyObject*::+1:
468 PyMapping_GetItemString:PyObject*:o:0:
469 PyMapping_GetItemString:char*:key::
471 PyMapping_HasKey:int:::
472 PyMapping_HasKey:PyObject*:o:0:
473 PyMapping_HasKey:PyObject*:key::
475 PyMapping_HasKeyString:int:::
476 PyMapping_HasKeyString:PyObject*:o:0:
477 PyMapping_HasKeyString:char*:key::
479 PyMapping_Items:PyObject*::+1:
480 PyMapping_Items:PyObject*:o:0:
482 PyMapping_Keys:PyObject*::+1:
483 PyMapping_Keys:PyObject*:o:0:
485 PyMapping_Length:int:::
486 PyMapping_Length:PyObject*:o:0:
488 PyMapping_SetItemString:int:::
489 PyMapping_SetItemString:PyObject*:o:0:
490 PyMapping_SetItemString:char*:key::
491 PyMapping_SetItemString:PyObject*:v:+1:
493 PyMapping_Values:PyObject*::+1:
494 PyMapping_Values:PyObject*:o:0:
496 PyModule_GetDict:PyObject*::0:
497 PyModule_GetDict::PyObject* module:0:
499 PyModule_GetFilename:char*:::
500 PyModule_GetFilename:PyObject*:module:0:
502 PyModule_GetName:char*:::
503 PyModule_GetName:PyObject*:module:0:
505 PyModule_New:PyObject*::+1:
506 PyModule_New::char* name::
508 PyNumber_Absolute:PyObject*::+1:
509 PyNumber_Absolute:PyObject*:o:0:
511 PyNumber_Add:PyObject*::+1:
512 PyNumber_Add:PyObject*:o1:0:
513 PyNumber_Add:PyObject*:o2:0:
515 PyNumber_And:PyObject*::+1:
516 PyNumber_And:PyObject*:o1:0:
517 PyNumber_And:PyObject*:o2:0:
519 PyNumber_Check:PyObject*:o:0:
520 PyNumber_Check:int:::
522 PyNumber_Coerce:int:::
523 PyNumber_Coerce:PyObject**:p1:+1:
524 PyNumber_Coerce:PyObject**:p2:+1:
526 PyNumber_Divide:PyObject*::+1:
527 PyNumber_Divide:PyObject*:o1:0:
528 PyNumber_Divide:PyObject*:o2:0:
530 PyNumber_Divmod:PyObject*::+1:
531 PyNumber_Divmod:PyObject*:o1:0:
532 PyNumber_Divmod:PyObject*:o2:0:
534 PyNumber_Float:PyObject*::+1:
535 PyNumber_Float:PyObject*:o:0:
537 PyNumber_FloorDivide:PyObject*::+1:
538 PyNumber_FloorDivide:PyObject*:v:0:
539 PyNumber_FloorDivide:PyObject*:w:0:
541 PyNumber_InPlaceAdd:PyObject*::+1:
542 PyNumber_InPlaceAdd:PyObject*:v:0:
543 PyNumber_InPlaceAdd:PyObject*:w:0:
545 PyNumber_InPlaceAnd:PyObject*::+1:
546 PyNumber_InPlaceAnd:PyObject*:v:0:
547 PyNumber_InPlaceAnd:PyObject*:w:0:
549 PyNumber_InPlaceDivide:PyObject*::+1:
550 PyNumber_InPlaceDivide:PyObject*:v:0:
551 PyNumber_InPlaceDivide:PyObject*:w:0:
553 PyNumber_InPlaceFloorDivide:PyObject*::+1:
554 PyNumber_InPlaceFloorDivide:PyObject*:v:0:
555 PyNumber_InPlaceFloorDivide:PyObject*:w:0:
557 PyNumber_InPlaceLshift:PyObject*::+1:
558 PyNumber_InPlaceLshift:PyObject*:v:0:
559 PyNumber_InPlaceLshift:PyObject*:w:0:
561 PyNumber_InPlaceMultiply:PyObject*::+1:
562 PyNumber_InPlaceMultiply:PyObject*:v:0:
563 PyNumber_InPlaceMultiply:PyObject*:w:0:
565 PyNumber_InPlaceOr:PyObject*::+1:
566 PyNumber_InPlaceOr:PyObject*:v:0:
567 PyNumber_InPlaceOr:PyObject*:w:0:
569 PyNumber_InPlacePower:PyObject*::+1:
570 PyNumber_InPlacePower:PyObject*:v:0:
571 PyNumber_InPlacePower:PyObject*:w:0:
572 PyNumber_InPlacePower:PyObject*:z:0:
574 PyNumber_InPlaceRemainder:PyObject*::+1:
575 PyNumber_InPlaceRemainder:PyObject*:v:0:
576 PyNumber_InPlaceRemainder:PyObject*:w:0:
578 PyNumber_InPlaceRshift:PyObject*::+1:
579 PyNumber_InPlaceRshift:PyObject*:v:0:
580 PyNumber_InPlaceRshift:PyObject*:w:0:
582 PyNumber_InPlaceSubtract:PyObject*::+1:
583 PyNumber_InPlaceSubtract:PyObject*:v:0:
584 PyNumber_InPlaceSubtract:PyObject*:w:0:
586 PyNumber_InPlaceTrueDivide:PyObject*::+1:
587 PyNumber_InPlaceTrueDivide:PyObject*:v:0:
588 PyNumber_InPlaceTrueDivide:PyObject*:w:0:
590 PyNumber_InPlaceXor:PyObject*::+1:
591 PyNumber_InPlaceXor:PyObject*:v:0:
592 PyNumber_InPlaceXor:PyObject*:w:0:
594 PyNumber_Int:PyObject*::+1:
595 PyNumber_Int:PyObject*:o:0:
597 PyNumber_Invert:PyObject*::+1:
598 PyNumber_Invert:PyObject*:o:0:
600 PyNumber_Long:PyObject*::+1:
601 PyNumber_Long:PyObject*:o:0:
603 PyNumber_Lshift:PyObject*::+1:
604 PyNumber_Lshift:PyObject*:o1:0:
605 PyNumber_Lshift:PyObject*:o2:0:
607 PyNumber_Multiply:PyObject*::+1:
608 PyNumber_Multiply:PyObject*:o1:0:
609 PyNumber_Multiply:PyObject*:o2:0:
611 PyNumber_Negative:PyObject*::+1:
612 PyNumber_Negative:PyObject*:o:0:
614 PyNumber_Or:PyObject*::+1:
615 PyNumber_Or:PyObject*:o1:0:
616 PyNumber_Or:PyObject*:o2:0:
618 PyNumber_Positive:PyObject*::+1:
619 PyNumber_Positive:PyObject*:o:0:
621 PyNumber_Power:PyObject*::+1:
622 PyNumber_Power:PyObject*:o1:0:
623 PyNumber_Power:PyObject*:o2:0:
624 PyNumber_Power:PyObject*:o3:0:
626 PyNumber_Remainder:PyObject*::+1:
627 PyNumber_Remainder:PyObject*:o1:0:
628 PyNumber_Remainder:PyObject*:o2:0:
630 PyNumber_Rshift:PyObject*::+1:
631 PyNumber_Rshift:PyObject*:o1:0:
632 PyNumber_Rshift:PyObject*:o2:0:
634 PyNumber_Subtract:PyObject*::+1:
635 PyNumber_Subtract:PyObject*:o1:0:
636 PyNumber_Subtract:PyObject*:o2:0:
638 PyNumber_TrueDivide:PyObject*::+1:
639 PyNumber_TrueDivide:PyObject*:v:0:
640 PyNumber_TrueDivide:PyObject*:w:0:
642 PyNumber_Xor:PyObject*::+1:
643 PyNumber_Xor:PyObject*:o1:0:
644 PyNumber_Xor:PyObject*:o2:0:
646 PyOS_GetLastModificationTime:long:::
647 PyOS_GetLastModificationTime:char*:filename::
649 PyObject_AsFileDescriptor:int:::
650 PyObject_AsFileDescriptor:PyObject*:o:0:
652 PyObject_CallFunction:PyObject*::+1:
653 PyObject_CallFunction:PyObject*:callable_object:0:
654 PyObject_CallFunction:char*:format::
655 PyObject_CallFunction::...::
657 PyObject_CallMethod:PyObject*::+1:
658 PyObject_CallMethod:PyObject*:o:0:
659 PyObject_CallMethod:char*:m::
660 PyObject_CallMethod:char*:format::
661 PyObject_CallMethod::...::
663 PyObject_CallObject:PyObject*::+1:
664 PyObject_CallObject:PyObject*:callable_object:0:
665 PyObject_CallObject:PyObject*:args:0:
667 PyObject_Cmp:int:::
668 PyObject_Cmp:PyObject*:o1:0:
669 PyObject_Cmp:PyObject*:o2:0:
670 PyObject_Cmp:int*:result::
672 PyObject_Compare:int:::
673 PyObject_Compare:PyObject*:o1:0:
674 PyObject_Compare:PyObject*:o2:0:
676 PyObject_DelAttr:int:::
677 PyObject_DelAttr:PyObject*:o:0:
678 PyObject_DelAttr:PyObject*:attr_name:0:
680 PyObject_DelAttrString:int:::
681 PyObject_DelAttrString:PyObject*:o:0:
682 PyObject_DelAttrString:char*:attr_name::
684 PyObject_DelItem:int:::
685 PyObject_DelItem:PyObject*:o:0:
686 PyObject_DelItem:PyObject*:key:0:
688 PyObject_GetAttr:PyObject*::+1:
689 PyObject_GetAttr:PyObject*:o:0:
690 PyObject_GetAttr:PyObject*:attr_name:0:
692 PyObject_GetAttrString:PyObject*::+1:
693 PyObject_GetAttrString:PyObject*:o:0:
694 PyObject_GetAttrString:char*:attr_name::
696 PyObject_GetItem:PyObject*::+1:
697 PyObject_GetItem:PyObject*:o:0:
698 PyObject_GetItem:PyObject*:key:0:
700 PyObject_HasAttr:int:::
701 PyObject_HasAttr:PyObject*:o:0:
702 PyObject_HasAttr:PyObject*:attr_name:0:
704 PyObject_HasAttrString:int:::
705 PyObject_HasAttrString:PyObject*:o:0:
706 PyObject_HasAttrString:char*:attr_name:0:
708 PyObject_Hash:int:::
709 PyObject_Hash:PyObject*:o:0:
711 PyObject_IsTrue:int:::
712 PyObject_IsTrue:PyObject*:o:0:
714 PyObject_Init:PyObject*::0:
715 PyObject_Init:PyObject*:op:0:
717 PyObject_InitVar:PyVarObject*::0:
718 PyObject_InitVar:PyVarObject*:op:0:
720 PyObject_Length:int:::
721 PyObject_Length:PyObject*:o:0:
723 PyObject_NEW:PyObject*::+1:
725 PyObject_New:PyObject*::+1:
727 PyObject_NEW_VAR:PyObject*::+1:
729 PyObject_NewVar:PyObject*::+1:
731 PyObject_Print:int:::
732 PyObject_Print:PyObject*:o:0:
733 PyObject_Print:FILE*:fp::
734 PyObject_Print:int:flags::
736 PyObject_Repr:PyObject*::+1:
737 PyObject_Repr:PyObject*:o:0:
739 PyObject_SetAttr:int:::
740 PyObject_SetAttr:PyObject*:o:0:
741 PyObject_SetAttr:PyObject*:attr_name:0:
742 PyObject_SetAttr:PyObject*:v:+1:
744 PyObject_SetAttrString:int:::
745 PyObject_SetAttrString:PyObject*:o:0:
746 PyObject_SetAttrString:char*:attr_name::
747 PyObject_SetAttrString:PyObject*:v:+1:
749 PyObject_SetItem:int:::
750 PyObject_SetItem:PyObject*:o:0:
751 PyObject_SetItem:PyObject*:key:0:
752 PyObject_SetItem:PyObject*:v:+1:
754 PyObject_Str:PyObject*::+1:
755 PyObject_Str:PyObject*:o:0:
757 PyObject_Type:PyObject*::+1:
758 PyObject_Type:PyObject*:o:0:
760 PyObject_Unicode:PyObject*::+1:
761 PyObject_Unicode:PyObject*:o:0:
763 PyParser_SimpleParseFile:struct _node*:::
764 PyParser_SimpleParseFile:FILE*:fp::
765 PyParser_SimpleParseFile:char*:filename::
766 PyParser_SimpleParseFile:int:start::
768 PyParser_SimpleParseString:struct _node*:::
769 PyParser_SimpleParseString:char*:str::
770 PyParser_SimpleParseString:int:start::
772 PyRun_AnyFile:int:::
773 PyRun_AnyFile:FILE*:fp::
774 PyRun_AnyFile:char*:filename::
776 PyRun_File:PyObject*::+1:??? -- same as eval_code2()
777 PyRun_File:FILE*:fp::
778 PyRun_File:char*:filename::
779 PyRun_File:int:start::
780 PyRun_File:PyObject*:globals:0:
781 PyRun_File:PyObject*:locals:0:
783 PyRun_InteractiveLoop:int:::
784 PyRun_InteractiveLoop:FILE*:fp::
785 PyRun_InteractiveLoop:char*:filename::
787 PyRun_InteractiveOne:int:::
788 PyRun_InteractiveOne:FILE*:fp::
789 PyRun_InteractiveOne:char*:filename::
791 PyRun_SimpleFile:int:::
792 PyRun_SimpleFile:FILE*:fp::
793 PyRun_SimpleFile:char*:filename::
795 PyRun_SimpleString:int:::
796 PyRun_SimpleString:char*:command::
798 PyRun_String:PyObject*::+1:??? -- same as eval_code2()
799 PyRun_String:char*:str::
800 PyRun_String:int:start::
801 PyRun_String:PyObject*:globals:0:
802 PyRun_String:PyObject*:locals:0:
804 PySequence_Check:int:::
805 PySequence_Check:PyObject*:o:0:
807 PySequence_Concat:PyObject*::+1:
808 PySequence_Concat:PyObject*:o1:0:
809 PySequence_Concat:PyObject*:o2:0:
811 PySequence_Count:int:::
812 PySequence_Count:PyObject*:o:0:
813 PySequence_Count:PyObject*:value:0:
815 PySequence_DelItem:int:::
816 PySequence_DelItem:PyObject*:o:0:
817 PySequence_DelItem:int:i::
819 PySequence_DelSlice:int:::
820 PySequence_DelSlice:PyObject*:o:0:
821 PySequence_DelSlice:int:i1::
822 PySequence_DelSlice:int:i2::
824 PySequence_Fast:PyObject*::+1:
825 PySequence_Fast:PyObject*:v:0:
826 PySequence_Fast:const char*:m::
828 PySequence_Fast_GET_ITEM:PyObject*::0:
829 PySequence_Fast_GET_ITEM:PyObject*:o:0:
830 PySequence_Fast_GET_ITEM:int:i::
832 PySequence_GetItem:PyObject*::+1:
833 PySequence_GetItem:PyObject*:o:0:
834 PySequence_GetItem:int:i::
836 PySequence_GetSlice:PyObject*::+1:
837 PySequence_GetSlice:PyObject*:o:0:
838 PySequence_GetSlice:int:i1::
839 PySequence_GetSlice:int:i2::
841 PySequence_In:int:::
842 PySequence_In:PyObject*:o:0:
843 PySequence_In:PyObject*:value:0:
845 PySequence_Index:int:::
846 PySequence_Index:PyObject*:o:0:
847 PySequence_Index:PyObject*:value:0:
849 PySequence_InPlaceConcat:PyObject*::+1:
850 PySequence_InPlaceConcat:PyObject*:s:0:
851 PySequence_InPlaceConcat:PyObject*:o:0:
853 PySequence_InPlaceRepeat:PyObject*::+1:
854 PySequence_InPlaceRepeat:PyObject*:s:0:
855 PySequence_InPlaceRepeat:PyObject*:o:0:
857 PySequence_Repeat:PyObject*::+1:
858 PySequence_Repeat:PyObject*:o:0:
859 PySequence_Repeat:int:count::
861 PySequence_SetItem:int:::
862 PySequence_SetItem:PyObject*:o:0:
863 PySequence_SetItem:int:i::
864 PySequence_SetItem:PyObject*:v:+1:
866 PySequence_SetSlice:int:::
867 PySequence_SetSlice:PyObject*:o:0:
868 PySequence_SetSlice:int:i1::
869 PySequence_SetSlice:int:i2::
870 PySequence_SetSlice:PyObject*:v:+1:
872 PySequence_List:PyObject*::+1:
873 PySequence_List:PyObject*:o:0:
875 PySequence_Tuple:PyObject*::+1:
876 PySequence_Tuple:PyObject*:o:0:
878 PyString_AS_STRING:char*:::
879 PyString_AS_STRING:PyObject*:string:0:
881 PyString_AsDecodedObject:PyObject*::+1:
882 PyString_AsDecodedObject:PyObject*:str:0:
883 PyString_AsDecodedObject:const char*:encoding::
884 PyString_AsDecodedObject:const char*:errors::
886 PyString_AsEncodedObject:PyObject*::+1:
887 PyString_AsEncodedObject:PyObject*:str:0:
888 PyString_AsEncodedObject:const char*:encoding::
889 PyString_AsEncodedObject:const char*:errors::
891 PyString_AsString:char*:::
892 PyString_AsString:PyObject*:string:0:
894 PyString_AsStringAndSize:int:::
895 PyString_AsStringAndSize:PyObject*:obj:0:
896 PyString_AsStringAndSize:char**:buffer::
897 PyString_AsStringAndSize:int*:length::
899 PyString_Check:int:::
900 PyString_Check:PyObject*:o:0:
902 PyString_Concat:void:::
903 PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
904 PyString_Concat:PyObject*:newpart:0:
906 PyString_ConcatAndDel:void:::
907 PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
908 PyString_ConcatAndDel:PyObject*:newpart:-1:
910 PyString_Format:PyObject*::+1:
911 PyString_Format:PyObject*:format:0:
912 PyString_Format:PyObject*:args:0:
914 PyString_FromString:PyObject*::+1:
915 PyString_FromString:const char*:v::
917 PyString_FromStringAndSize:PyObject*::+1:
918 PyString_FromStringAndSize:const char*:v::
919 PyString_FromStringAndSize:int:len::
921 PyString_GET_SIZE:int:::
922 PyString_GET_SIZE:PyObject*:string:0:
924 PyString_InternFromString:PyObject*::+1:
925 PyString_InternFromString:const char*:v::
927 PyString_InternInPlace:void:::
928 PyString_InternInPlace:PyObject**:string:+1:???
930 PyString_Size:int:::
931 PyString_Size:PyObject*:string:0:
933 PyString_Decode:PyObject*::+1:
934 PyString_Decode:const char*:s::
935 PyString_Decode:int:size::
936 PyString_Decode:const char*:encoding::
937 PyString_Decode:const char*:errors::
939 PyString_Encode:PyObject*::+1:
940 PyString_Encode:const char*:s::
941 PyString_Encode:int:size::
942 PyString_Encode:const char*:encoding::
943 PyString_Encode:const char*:errors::
945 PyString_AsEncodedString:PyObject*::+1:
946 PyString_AsEncodedString:PyObject*:str::
947 PyString_AsEncodedString:const char*:encoding::
948 PyString_AsEncodedString:const char*:errors::
950 PySys_SetArgv:int:::
951 PySys_SetArgv:int:argc::
952 PySys_SetArgv:char**:argv::
954 PyThreadState_Clear:void:::
955 PyThreadState_Clear:PyThreadState*:tstate::
957 PyThreadState_Delete:void:::
958 PyThreadState_Delete:PyThreadState*:tstate::
960 PyThreadState_Get:PyThreadState*:::
962 PyThreadState_GetDict:PyObject*::0:
964 PyThreadState_New:PyThreadState*:::
965 PyThreadState_New:PyInterpreterState*:interp::
967 PyThreadState_Swap:PyThreadState*:::
968 PyThreadState_Swap:PyThreadState*:tstate::
970 PyTuple_Check:int:::
971 PyTuple_Check:PyObject*:p:0:
973 PyTuple_GET_ITEM:PyObject*::0:
974 PyTuple_GET_ITEM:PyTupleObject*:p:0:
975 PyTuple_GET_ITEM:int:pos::
977 PyTuple_GetItem:PyObject*::0:
978 PyTuple_GetItem:PyTupleObject*:p:0:
979 PyTuple_GetItem:int:pos::
981 PyTuple_GetSlice:PyObject*::+1:
982 PyTuple_GetSlice:PyTupleObject*:p:0:
983 PyTuple_GetSlice:int:low::
984 PyTuple_GetSlice:int:high::
986 PyTuple_New:PyObject*::+1:
987 PyTuple_New:int:len::
989 PyTuple_SET_ITEM:void:::
990 PyTuple_SET_ITEM:PyTupleObject*:p:0:
991 PyTuple_SET_ITEM:int:pos::
992 PyTuple_SET_ITEM:PyObject*:o:0:
994 PyTuple_SetItem:int:::
995 PyTuple_SetItem:PyTupleObject*:p:0:
996 PyTuple_SetItem:int:pos::
997 PyTuple_SetItem:PyObject*:o:0:
999 PyTuple_Size:int:::
1000 PyTuple_Size:PyTupleObject*:p:0:
1002 PyUnicode_Check:int:::
1003 PyUnicode_Check:PyObject*:o:0:
1005 PyUnicode_GET_SIZE:int:::
1006 PyUnicode_GET_SIZE:PyObject*:o:0:
1008 PyUnicode_GET_DATA_SIZE:int:::
1009 PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1011 PyUnicode_AS_UNICODE:Py_UNICODE*:::
1012 PyUnicode_AS_UNICODE:PyObject*:o:0:
1014 PyUnicode_AS_DATA:const char*:::
1015 PyUnicode_AS_DATA:PyObject*:o:0:
1017 Py_UNICODE_ISSPACE:int:::
1018 Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1020 Py_UNICODE_ISLOWER:int:::
1021 Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1023 Py_UNICODE_ISUPPER:int:::
1024 Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1026 Py_UNICODE_ISTITLE:int:::
1027 Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1029 Py_UNICODE_ISLINEBREAK:int:::
1030 Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1032 Py_UNICODE_ISDECIMAL:int:::
1033 Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1035 Py_UNICODE_ISDIGIT:int:::
1036 Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1038 Py_UNICODE_ISNUMERIC:int:::
1039 Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1041 Py_UNICODE_TOLOWER:Py_UNICODE:::
1042 Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1044 Py_UNICODE_TOUPPER:Py_UNICODE:::
1045 Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1047 Py_UNICODE_TOTITLE:Py_UNICODE:::
1048 Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1050 Py_UNICODE_TODECIMAL:int:::
1051 Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1053 Py_UNICODE_TODIGIT:int:::
1054 Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1056 Py_UNICODE_TONUMERIC:double:::
1057 Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1059 PyUnicode_FromUnicode:PyObject*::+1:
1060 PyUnicode_FromUnicode:const Py_UNICODE*:u::
1061 PyUnicode_FromUnicode:int:size::
1063 PyUnicode_AsUnicode:Py_UNICODE*:::
1064 PyUnicode_AsUnicode:PyObject :*unicode:0:
1066 PyUnicode_GetSize:int:::
1067 PyUnicode_GetSize:PyObject :*unicode:0:
1069 PyUnicode_FromObject:PyObject*::+1:
1070 PyUnicode_FromObject:PyObject*:*obj:0:
1072 PyUnicode_FromEncodedObject:PyObject*::+1:
1073 PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1074 PyUnicode_FromEncodedObject:const char*:encoding::
1075 PyUnicode_FromEncodedObject:const char*:errors::
1077 PyUnicode_FromWideChar:PyObject*::+1:
1078 PyUnicode_FromWideChar:const wchar_t*:w::
1079 PyUnicode_FromWideChar:int:size::
1081 PyUnicode_AsWideChar:int:::
1082 PyUnicode_AsWideChar:PyObject*:*unicode:0:
1083 PyUnicode_AsWideChar:wchar_t*:w::
1084 PyUnicode_AsWideChar:int:size::
1086 PyUnicode_Decode:PyObject*::+1:
1087 PyUnicode_Decode:const char*:s::
1088 PyUnicode_Decode:int:size::
1089 PyUnicode_Decode:const char*:encoding::
1090 PyUnicode_Decode:const char*:errors::
1092 PyUnicode_Encode:PyObject*::+1:
1093 PyUnicode_Encode:const Py_UNICODE*:s::
1094 PyUnicode_Encode:int:size::
1095 PyUnicode_Encode:const char*:encoding::
1096 PyUnicode_Encode:const char*:errors::
1098 PyUnicode_AsEncodedString:PyObject*::+1:
1099 PyUnicode_AsEncodedString:PyObject*:unicode::
1100 PyUnicode_AsEncodedString:const char*:encoding::
1101 PyUnicode_AsEncodedString:const char*:errors::
1103 PyUnicode_DecodeUTF8:PyObject*::+1:
1104 PyUnicode_DecodeUTF8:const char*:s::
1105 PyUnicode_DecodeUTF8:int:size::
1106 PyUnicode_DecodeUTF8:const char*:errors::
1108 PyUnicode_EncodeUTF8:PyObject*::+1:
1109 PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1110 PyUnicode_EncodeUTF8:int:size::
1111 PyUnicode_EncodeUTF8:const char*:errors::
1113 PyUnicode_AsUTF8String:PyObject*::+1:
1114 PyUnicode_AsUTF8String:PyObject*:unicode::
1116 PyUnicode_DecodeUTF16:PyObject*::+1:
1117 PyUnicode_DecodeUTF16:const char*:s::
1118 PyUnicode_DecodeUTF16:int:size::
1119 PyUnicode_DecodeUTF16:const char*:errors::
1120 PyUnicode_DecodeUTF16:int*:byteorder::
1122 PyUnicode_EncodeUTF16:PyObject*::+1:
1123 PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1124 PyUnicode_EncodeUTF16:int:size::
1125 PyUnicode_EncodeUTF16:const char*:errors::
1126 PyUnicode_EncodeUTF16:int:byteorder::
1128 PyUnicode_AsUTF16String:PyObject*::+1:
1129 PyUnicode_AsUTF16String:PyObject*:unicode::
1131 PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1132 PyUnicode_DecodeUnicodeEscape:const char*:s::
1133 PyUnicode_DecodeUnicodeEscape:int:size::
1134 PyUnicode_DecodeUnicodeEscape:const char*:errors::
1136 PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1137 PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1138 PyUnicode_EncodeUnicodeEscape:int:size::
1139 PyUnicode_EncodeUnicodeEscape:const char*:errors::
1141 PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1142 PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1144 PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1145 PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1146 PyUnicode_DecodeRawUnicodeEscape:int:size::
1147 PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1149 PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1150 PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1151 PyUnicode_EncodeRawUnicodeEscape:int:size::
1152 PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1154 PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1155 PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1157 PyUnicode_DecodeLatin1:PyObject*::+1:
1158 PyUnicode_DecodeLatin1:const char*:s::
1159 PyUnicode_DecodeLatin1:int:size::
1160 PyUnicode_DecodeLatin1:const char*:errors::
1162 PyUnicode_EncodeLatin1:PyObject*::+1:
1163 PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1164 PyUnicode_EncodeLatin1:int:size::
1165 PyUnicode_EncodeLatin1:const char*:errors::
1167 PyUnicode_AsLatin1String:PyObject*::+1:
1168 PyUnicode_AsLatin1String:PyObject*:unicode::
1170 PyUnicode_DecodeASCII:PyObject*::+1:
1171 PyUnicode_DecodeASCII:const char*:s::
1172 PyUnicode_DecodeASCII:int:size::
1173 PyUnicode_DecodeASCII:const char*:errors::
1175 PyUnicode_EncodeASCII:PyObject*::+1:
1176 PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1177 PyUnicode_EncodeASCII:int:size::
1178 PyUnicode_EncodeASCII:const char*:errors::
1180 PyUnicode_AsASCIIString:PyObject*::+1:
1181 PyUnicode_AsASCIIString:PyObject*:unicode::
1183 PyUnicode_DecodeCharmap:PyObject*::+1:
1184 PyUnicode_DecodeCharmap:const char*:s::
1185 PyUnicode_DecodeCharmap:int:size::
1186 PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1187 PyUnicode_DecodeCharmap:const char*:errors::
1189 PyUnicode_EncodeCharmap:PyObject*::+1:
1190 PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1191 PyUnicode_EncodeCharmap:int:size::
1192 PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1193 PyUnicode_EncodeCharmap:const char*:errors::
1195 PyUnicode_AsCharmapString:PyObject*::+1:
1196 PyUnicode_AsCharmapString:PyObject*:unicode:0:
1197 PyUnicode_AsCharmapString:PyObject*:mapping:0:
1199 PyUnicode_TranslateCharmap:PyObject*::+1:
1200 PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1201 PyUnicode_TranslateCharmap:int:size::
1202 PyUnicode_TranslateCharmap:PyObject*:table:0:
1203 PyUnicode_TranslateCharmap:const char*:errors::
1205 PyUnicode_DecodeMBCS:PyObject*::+1:
1206 PyUnicode_DecodeMBCS:const char*:s::
1207 PyUnicode_DecodeMBCS:int:size::
1208 PyUnicode_DecodeMBCS:const char*:errors::
1210 PyUnicode_EncodeMBCS:PyObject*::+1:
1211 PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1212 PyUnicode_EncodeMBCS:int:size::
1213 PyUnicode_EncodeMBCS:const char*:errors::
1215 PyUnicode_AsMBCSString:PyObject*::+1:
1216 PyUnicode_AsMBCSString:PyObject*:unicode::
1218 PyUnicode_Concat:PyObject*::+1:
1219 PyUnicode_Concat:PyObject*:left:0:
1220 PyUnicode_Concat:PyObject*:right:0:
1222 PyUnicode_Split:PyObject*::+1:
1223 PyUnicode_Split:PyObject*:left:0:
1224 PyUnicode_Split:PyObject*:right:0:
1225 PyUnicode_Split:int:maxsplit::
1227 PyUnicode_Splitlines:PyObject*::+1:
1228 PyUnicode_Splitlines:PyObject*:s:0:
1229 PyUnicode_Splitlines:int:maxsplit::
1231 PyUnicode_Translate:PyObject*::+1:
1232 PyUnicode_Translate:PyObject*:str:0:
1233 PyUnicode_Translate:PyObject*:table:0:
1234 PyUnicode_Translate:const char*:errors::
1236 PyUnicode_Join:PyObject*::+1:
1237 PyUnicode_Join:PyObject*:separator:0:
1238 PyUnicode_Join:PyObject*:seq:0:
1240 PyUnicode_Tailmatch:PyObject*::+1:
1241 PyUnicode_Tailmatch:PyObject*:str:0:
1242 PyUnicode_Tailmatch:PyObject*:substr:0:
1243 PyUnicode_Tailmatch:int:start::
1244 PyUnicode_Tailmatch:int:end::
1245 PyUnicode_Tailmatch:int:direction::
1247 PyUnicode_Find:PyObject*::+1:
1248 PyUnicode_Find:PyObject*:str:0:
1249 PyUnicode_Find:PyObject*:substr:0:
1250 PyUnicode_Find:int:start::
1251 PyUnicode_Find:int:end::
1252 PyUnicode_Find:int:direction::
1254 PyUnicode_Count:PyObject*::+1:
1255 PyUnicode_Count:PyObject*:str:0:
1256 PyUnicode_Count:PyObject*:substr:0:
1257 PyUnicode_Count:int:start::
1258 PyUnicode_Count:int:end::
1260 PyUnicode_Replace:PyObject*::+1:
1261 PyUnicode_Replace:PyObject*:str:0:
1262 PyUnicode_Replace:PyObject*:substr:0:
1263 PyUnicode_Replace:PyObject*:replstr:0:
1264 PyUnicode_Replace:int:maxcount::
1266 PyUnicode_Compare:int:::
1267 PyUnicode_Compare:PyObject*:left:0:
1268 PyUnicode_Compare:PyObject*:right:0:
1270 PyUnicode_Format:PyObject*::+1:
1271 PyUnicode_Format:PyObject*:format:0:
1272 PyUnicode_Format:PyObject*:args:0:
1274 PyUnicode_Contains:int:::
1275 PyUnicode_Contains:PyObject*:container:0:
1276 PyUnicode_Contains:PyObject*:element:0:
1278 Py_AtExit:int:::
1279 Py_AtExit:void (*)():func::
1281 Py_BuildValue:PyObject*::+1:
1282 Py_BuildValue:char*:format::
1284 Py_CompileString:PyObject*::+1:
1285 Py_CompileString:char*:str::
1286 Py_CompileString:char*:filename::
1287 Py_CompileString:int:start::
1289 Py_DECREF:void:::
1290 Py_DECREF:PyObject*:o:-1:
1292 Py_EndInterpreter:void:::
1293 Py_EndInterpreter:PyThreadState*:tstate::
1295 Py_Exit:void:::
1296 Py_Exit:int:status::
1298 Py_FatalError:void:::
1299 Py_FatalError:char*:message::
1301 Py_FdIsInteractive:int:::
1302 Py_FdIsInteractive:FILE*:fp::
1303 Py_FdIsInteractive:char*:filename::
1305 Py_Finalize:void:::
1307 Py_FindMethod:PyObject*::+1:
1308 Py_FindMethod:PyMethodDef[]:methods::
1309 Py_FindMethod:PyObject*:self:+1:
1310 Py_FindMethod:char*:name::
1312 Py_GetBuildInfoconst:char*:::
1314 Py_GetCompilerconst:char*:::
1316 Py_GetCopyrightconst:char*:::
1318 Py_GetExecPrefix:char*:::
1320 Py_GetPath:char*:::
1322 Py_GetPlatformconst:char*:::
1324 Py_GetPrefix:char*:::
1326 Py_GetProgramFullPath:char*:::
1328 Py_GetProgramName:char*:::
1330 Py_GetVersionconst:char*:::
1332 Py_INCREF:void:::
1333 Py_INCREF:PyObject*:o:+1:
1335 Py_Initialize:void:::
1337 Py_IsInitialized:int:::
1339 Py_NewInterpreter:PyThreadState*:::
1341 Py_SetProgramName:void:::
1342 Py_SetProgramName:char*:name::
1344 Py_XDECREF:void:::
1345 Py_XDECREF:PyObject*:o:-1:if o is not NULL
1347 Py_XINCREF:void:::
1348 Py_XINCREF:PyObject*:o:+1:if o is not NULL
1350 _PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1351 _PyImport_FindExtension:char*:::
1352 _PyImport_FindExtension:char*:::
1354 _PyImport_Fini:void:::
1356 _PyImport_FixupExtension:PyObject*:::???
1357 _PyImport_FixupExtension:char*:::
1358 _PyImport_FixupExtension:char*:::
1360 _PyImport_Init:void:::
1362 _PyObject_Del:void:::
1363 _PyObject_Del:PyObject*:op:0:
1365 _PyObject_New:PyObject*::+1:
1366 _PyObject_New:PyTypeObject*:type:0:
1368 _PyObject_NewVar:PyObject*::+1:
1369 _PyObject_NewVar:PyTypeObject*:type:0:
1370 _PyObject_NewVar:int:size::
1372 _PyString_Resize:int:::
1373 _PyString_Resize:PyObject**:string:+1:
1374 _PyString_Resize:int:newsize::
1376 _PyTuple_Resize:int:::
1377 _PyTuple_Resize:PyTupleObject**:p:+1:
1378 _PyTuple_Resize:int:new::
1380 _Py_c_diff:Py_complex:::
1381 _Py_c_diff:Py_complex:left::
1382 _Py_c_diff:Py_complex:right::
1384 _Py_c_neg:Py_complex:::
1385 _Py_c_neg:Py_complex:complex::
1387 _Py_c_pow:Py_complex:::
1388 _Py_c_pow:Py_complex:num::
1389 _Py_c_pow:Py_complex:exp::
1391 _Py_c_prod:Py_complex:::
1392 _Py_c_prod:Py_complex:left::
1393 _Py_c_prod:Py_complex:right::
1395 _Py_c_quot:Py_complex:::
1396 _Py_c_quot:Py_complex:dividend::
1397 _Py_c_quot:Py_complex:divisor::
1399 _Py_c_sum:Py_complex:::
1400 _Py_c_sum:Py_complex:left::
1401 _Py_c_sum:Py_complex:right::