Issue #3366: Add gamma function to math module.
[python.git] / Doc / data / refcounts.dat
blobc8633c097c1458d8328d8aff3caacb41314756d5
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_GetBuiltins:PyObject*::0:
317 PyEval_GetLocals:PyObject*::0:
318 PyEval_GetGlobals:PyObject*::0:
319 PyEval_GetFrame:PyObject*::0:
321 PyEval_InitThreads:void:::
323 PyEval_ReleaseLock:void:::
325 PyEval_ReleaseThread:void:::
326 PyEval_ReleaseThread:PyThreadState*:tstate::
328 PyEval_RestoreThread:void:::
329 PyEval_RestoreThread:PyThreadState*:tstate::
331 PyEval_SaveThread:PyThreadState*:::
333 PyEval_EvalCode:PyObject*::+1:
334 PyEval_EvalCode:PyCodeObject*:co:0:
335 PyEval_EvalCode:PyObject*:globals:0:
336 PyEval_EvalCode:PyObject*:locals:0:
338 PyFile_AsFile:FILE*:::
339 PyFile_AsFile:PyFileObject*:p:0:
341 PyFile_Check:int:::
342 PyFile_Check:PyObject*:p:0:
344 PyFile_FromFile:PyObject*::+1:
345 PyFile_FromFile:FILE*:fp::
346 PyFile_FromFile:char*:name::
347 PyFile_FromFile:char*:mode::
348 PyFile_FromFile:int(*:close)::
350 PyFile_FromString:PyObject*::+1:
351 PyFile_FromString:char*:name::
352 PyFile_FromString:char*:mode::
354 PyFile_GetLine:PyObject*::+1:
355 PyFile_GetLine:PyObject*:p::
356 PyFile_GetLine:int:n::
358 PyFile_Name:PyObject*::0:
359 PyFile_Name:PyObject*:p:0:
361 PyFile_SetBufSize:void:::
362 PyFile_SetBufSize:PyFileObject*:p:0:
363 PyFile_SetBufSize:int:n::
365 PyFile_SoftSpace:int:::
366 PyFile_SoftSpace:PyFileObject*:p:0:
367 PyFile_SoftSpace:int:newflag::
369 PyFile_WriteObject:int:::
370 PyFile_WriteObject:PyObject*:obj:0:
371 PyFile_WriteObject:PyFileObject*:p:0:
372 PyFile_WriteObject:int:flags::
374 PyFile_WriteString:int:::
375 PyFile_WriteString:const char*:s::
376 PyFile_WriteString:PyFileObject*:p:0:
377 PyFile_WriteString:int:flags::
379 PyFloat_AS_DOUBLE:double:::
380 PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
382 PyFloat_AsDouble:double:::
383 PyFloat_AsDouble:PyObject*:pyfloat:0:
385 PyFloat_Check:int:::
386 PyFloat_Check:PyObject*:p:0:
388 PyFloat_FromDouble:PyObject*::+1:
389 PyFloat_FromDouble:double:v::
391 PyFloat_FromString:PyObject*::+1:
392 PyFloat_FromString:PyObject*:str:0:
393 PyFloat_FromString:char**:pend:0:ignored
395 PyFrozenSet_New:PyObject*::+1:
396 PyFrozenSet_New:PyObject*:iterable:0:
398 PyFunction_GetClosure:PyObject*::0:
399 PyFunction_GetClosure:PyObject*:op:0:
401 PyFunction_GetCode:PyObject*::0:
402 PyFunction_GetCode:PyObject*:op:0:
404 PyFunction_GetDefaults:PyObject*::0:
405 PyFunction_GetDefaults:PyObject*:op:0:
407 PyFunction_GetGlobals:PyObject*::0:
408 PyFunction_GetGlobals:PyObject*:op:0:
410 PyFunction_GetModule:PyObject*::0:
411 PyFunction_GetModule:PyObject*:op:0:
413 PyFunction_New:PyObject*::+1:
414 PyFunction_New:PyObject*:code:+1:
415 PyFunction_New:PyObject*:globals:+1:
417 PyFunction_SetClosure:int:::
418 PyFunction_SetClosure:PyObject*:op:0:
419 PyFunction_SetClosure:PyObject*:closure:+1:
421 PyFunction_SetDefaults:int:::
422 PyFunction_SetDefaults:PyObject*:op:0:
423 PyFunction_SetDefaults:PyObject*:defaults:+1:
425 PyGen_New:PyObject*::+1:
426 PyGen_New:PyFrameObject*:frame:0:
428 Py_InitModule:PyObject*::0:
429 Py_InitModule:char*:name::
430 Py_InitModule:PyMethodDef[]:methods::
432 Py_InitModule3:PyObject*::0:
433 Py_InitModule3:char*:name::
434 Py_InitModule3:PyMethodDef[]:methods::
435 Py_InitModule3:char*:doc::
437 Py_InitModule4:PyObject*::0:
438 Py_InitModule4:char*:name::
439 Py_InitModule4:PyMethodDef[]:methods::
440 Py_InitModule4:char*:doc::
441 Py_InitModule4:PyObject*:self::
442 Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
444 PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
445 PyImport_AddModule:char*:name::
447 PyImport_Cleanup:void:::
449 PyImport_ExecCodeModule:PyObject*::+1:
450 PyImport_ExecCodeModule:char*:name::
451 PyImport_ExecCodeModule:PyObject*:co:0:
453 PyImport_GetMagicNumber:long:::
455 PyImport_GetModuleDict:PyObject*::0:
457 PyImport_Import:PyObject*::+1:
458 PyImport_Import:PyObject*:name:0:
460 PyImport_ImportFrozenModule:int:::
461 PyImport_ImportFrozenModule:char*:::
463 PyImport_ImportModule:PyObject*::+1:
464 PyImport_ImportModule:char*:name::
466 PyImport_ImportModuleEx:PyObject*::+1:
467 PyImport_ImportModuleEx:char*:name::
468 PyImport_ImportModuleEx:PyObject*:globals:0:???
469 PyImport_ImportModuleEx:PyObject*:locals:0:???
470 PyImport_ImportModuleEx:PyObject*:fromlist:0:???
472 PyImport_ReloadModule:PyObject*::+1:
473 PyImport_ReloadModule:PyObject*:m:0:
475 PyInstance_New:PyObject*::+1:
476 PyInstance_New:PyObject*:klass:+1:
477 PyInstance_New:PyObject*:arg:0:
478 PyInstance_New:PyObject*:kw:0:
480 PyInstance_NewRaw:PyObject*::+1:
481 PyInstance_NewRaw:PyObject*:klass:+1:
482 PyInstance_NewRaw:PyObject*:dict:+1:
484 PyInt_AS_LONG:long:::
485 PyInt_AS_LONG:PyIntObject*:io:0:
487 PyInt_AsLong:long:::
488 PyInt_AsLong:PyObject*:io:0:
490 PyInt_Check:int:::
491 PyInt_Check:PyObject*:op:0:
493 PyInt_FromLong:PyObject*::+1:
494 PyInt_FromLong:long:ival::
496 PyInt_FromString:PyObject*::+1:
497 PyInt_FromString:char*:str:0:
498 PyInt_FromString:char**:pend:0:
499 PyInt_FromString:int:base:0:
501 PyInt_FromSsize_t:PyObject*::+1:
502 PyInt_FromSsize_t:Py_ssize_t:ival::
504 PyInt_GetMax:long:::
506 PyInterpreterState_Clear:void:::
507 PyInterpreterState_Clear:PyInterpreterState*:interp::
509 PyInterpreterState_Delete:void:::
510 PyInterpreterState_Delete:PyInterpreterState*:interp::
512 PyInterpreterState_New:PyInterpreterState*:::
514 PyIter_Check:int:o:0:
516 PyIter_Next:PyObject*::+1:
517 PyIter_Next:PyObject*:o:0:
519 PyList_Append:int:::
520 PyList_Append:PyObject*:list:0:
521 PyList_Append:PyObject*:item:+1:
523 PyList_AsTuple:PyObject*::+1:
524 PyList_AsTuple:PyObject*:list:0:
526 PyList_Check:int:::
527 PyList_Check:PyObject*:p:0:
529 PyList_GET_ITEM:PyObject*::0:
530 PyList_GET_ITEM:PyObject*:list:0:
531 PyList_GET_ITEM:int:i:0:
533 PyList_GET_SIZE:int:::
534 PyList_GET_SIZE:PyObject*:list:0:
536 PyList_GetItem:PyObject*::0:
537 PyList_GetItem:PyObject*:list:0:
538 PyList_GetItem:int:index::
540 PyList_GetSlice:PyObject*::+1:
541 PyList_GetSlice:PyObject*:list:0:
542 PyList_GetSlice:int:low::
543 PyList_GetSlice:int:high::
545 PyList_Insert:int:::
546 PyList_Insert:PyObject*:list:0:
547 PyList_Insert:int:index::
548 PyList_Insert:PyObject*:item:+1:
550 PyList_New:PyObject*::+1:
551 PyList_New:int:len::
553 PyList_Reverse:int:::
554 PyList_Reverse:PyObject*:list:0:
556 PyList_SET_ITEM:void:::
557 PyList_SET_ITEM:PyObject*:list:0:
558 PyList_SET_ITEM:int:i::
559 PyList_SET_ITEM:PyObject*:o:0:
561 PyList_SetItem:int:::
562 PyList_SetItem:PyObject*:list:0:
563 PyList_SetItem:int:index::
564 PyList_SetItem:PyObject*:item:0:
566 PyList_SetSlice:int:::
567 PyList_SetSlice:PyObject*:list:0:
568 PyList_SetSlice:int:low::
569 PyList_SetSlice:int:high::
570 PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
572 PyList_Size:int:::
573 PyList_Size:PyObject*:list:0:
575 PyList_Sort:int:::
576 PyList_Sort:PyObject*:list:0:
578 PyLong_AsDouble:double:::
579 PyLong_AsDouble:PyObject*:pylong:0:
581 PyLong_AsLong:long:::
582 PyLong_AsLong:PyObject*:pylong:0:
584 PyLong_AsUnsignedLong:unsigned long:::
585 PyLong_AsUnsignedLong:PyObject*:pylong:0:
587 PyLong_Check:int:::
588 PyLong_Check:PyObject*:p:0:
590 PyLong_FromDouble:PyObject*::+1:
591 PyLong_FromDouble:double:v::
593 PyLong_FromLong:PyObject*::+1:
594 PyLong_FromLong:long:v::
596 PyLong_FromLongLong:PyObject*::+1:
597 PyLong_FromLongLong:long long:v::
599 PyLong_FromUnsignedLongLong:PyObject*::+1:
600 PyLong_FromUnsignedLongLong:unsigned long long:v::
602 PyLong_FromString:PyObject*::+1:
603 PyLong_FromString:char*:str::
604 PyLong_FromString:char**:pend::
605 PyLong_FromString:int:base::
607 PyLong_FromUnicode:PyObject*::+1:
608 PyLong_FromUnicode:Py_UNICODE:u::
609 PyLong_FromUnicode:int:length::
610 PyLong_FromUnicode:int:base::
612 PyLong_FromUnsignedLong:PyObject*::+1:
613 PyLong_FromUnsignedLong:unsignedlong:v::
615 PyLong_FromVoidPtr:PyObject*::+1:
616 PyLong_FromVoidPtr:void*:p::
618 PyMapping_Check:int:::
619 PyMapping_Check:PyObject*:o:0:
621 PyMapping_DelItem:int:::
622 PyMapping_DelItem:PyObject*:o:0:
623 PyMapping_DelItem:PyObject*:key:0:
625 PyMapping_DelItemString:int:::
626 PyMapping_DelItemString:PyObject*:o:0:
627 PyMapping_DelItemString:char*:key::
629 PyMapping_GetItemString:PyObject*::+1:
630 PyMapping_GetItemString:PyObject*:o:0:
631 PyMapping_GetItemString:char*:key::
633 PyMapping_HasKey:int:::
634 PyMapping_HasKey:PyObject*:o:0:
635 PyMapping_HasKey:PyObject*:key::
637 PyMapping_HasKeyString:int:::
638 PyMapping_HasKeyString:PyObject*:o:0:
639 PyMapping_HasKeyString:char*:key::
641 PyMapping_Items:PyObject*::+1:
642 PyMapping_Items:PyObject*:o:0:
644 PyMapping_Keys:PyObject*::+1:
645 PyMapping_Keys:PyObject*:o:0:
647 PyMapping_Length:int:::
648 PyMapping_Length:PyObject*:o:0:
650 PyMapping_SetItemString:int:::
651 PyMapping_SetItemString:PyObject*:o:0:
652 PyMapping_SetItemString:char*:key::
653 PyMapping_SetItemString:PyObject*:v:+1:
655 PyMapping_Values:PyObject*::+1:
656 PyMapping_Values:PyObject*:o:0:
658 PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
659 PyMarshal_ReadLastObjectFromFile:FILE*:file::
661 PyMarshal_ReadObjectFromFile:PyObject*::+1:
662 PyMarshal_ReadObjectFromFile:FILE*:file::
664 PyMarshal_ReadObjectFromString:PyObject*::+1:
665 PyMarshal_ReadObjectFromString:char*:string::
666 PyMarshal_ReadObjectFromString:int:len::
668 PyMarshal_WriteObjectToString:PyObject*::+1:
669 PyMarshal_WriteObjectToString:PyObject*:value:0:
671 PyMethod_Class:PyObject*::0:
672 PyMethod_Class:PyObject*:im:0:
674 PyMethod_Function:PyObject*::0:
675 PyMethod_Function:PyObject*:im:0:
677 PyMethod_GET_CLASS:PyObject*::0:
678 PyMethod_GET_CLASS:PyObject*:im:0:
680 PyMethod_GET_FUNCTION:PyObject*::0:
681 PyMethod_GET_FUNCTION:PyObject*:im:0:
683 PyMethod_GET_SELF:PyObject*::0:
684 PyMethod_GET_SELF:PyObject*:im:0:
686 PyMethod_New:PyObject*::+1:
687 PyMethod_New:PyObject*:func:0:
688 PyMethod_New:PyObject*:self:0:
689 PyMethod_New:PyObject*:class:0:
691 PyMethod_Self:PyObject*::0:
692 PyMethod_Self:PyObject*:im:0:
694 PyModule_GetDict:PyObject*::0:
695 PyModule_GetDict::PyObject* module:0:
697 PyModule_GetFilename:char*:::
698 PyModule_GetFilename:PyObject*:module:0:
700 PyModule_GetName:char*:::
701 PyModule_GetName:PyObject*:module:0:
703 PyModule_New:PyObject*::+1:
704 PyModule_New::char* name::
706 PyNumber_Absolute:PyObject*::+1:
707 PyNumber_Absolute:PyObject*:o:0:
709 PyNumber_Add:PyObject*::+1:
710 PyNumber_Add:PyObject*:o1:0:
711 PyNumber_Add:PyObject*:o2:0:
713 PyNumber_And:PyObject*::+1:
714 PyNumber_And:PyObject*:o1:0:
715 PyNumber_And:PyObject*:o2:0:
717 PyNumber_Check:PyObject*:o:0:
718 PyNumber_Check:int:::
720 PyNumber_Coerce:int:::
721 PyNumber_Coerce:PyObject**:p1:+1:
722 PyNumber_Coerce:PyObject**:p2:+1:
724 PyNumber_Divide:PyObject*::+1:
725 PyNumber_Divide:PyObject*:o1:0:
726 PyNumber_Divide:PyObject*:o2:0:
728 PyNumber_Divmod:PyObject*::+1:
729 PyNumber_Divmod:PyObject*:o1:0:
730 PyNumber_Divmod:PyObject*:o2:0:
732 PyNumber_Float:PyObject*::+1:
733 PyNumber_Float:PyObject*:o:0:
735 PyNumber_FloorDivide:PyObject*::+1:
736 PyNumber_FloorDivide:PyObject*:v:0:
737 PyNumber_FloorDivide:PyObject*:w:0:
739 PyNumber_InPlaceAdd:PyObject*::+1:
740 PyNumber_InPlaceAdd:PyObject*:v:0:
741 PyNumber_InPlaceAdd:PyObject*:w:0:
743 PyNumber_InPlaceAnd:PyObject*::+1:
744 PyNumber_InPlaceAnd:PyObject*:v:0:
745 PyNumber_InPlaceAnd:PyObject*:w:0:
747 PyNumber_InPlaceDivide:PyObject*::+1:
748 PyNumber_InPlaceDivide:PyObject*:v:0:
749 PyNumber_InPlaceDivide:PyObject*:w:0:
751 PyNumber_InPlaceFloorDivide:PyObject*::+1:
752 PyNumber_InPlaceFloorDivide:PyObject*:v:0:
753 PyNumber_InPlaceFloorDivide:PyObject*:w:0:
755 PyNumber_InPlaceLshift:PyObject*::+1:
756 PyNumber_InPlaceLshift:PyObject*:v:0:
757 PyNumber_InPlaceLshift:PyObject*:w:0:
759 PyNumber_InPlaceMultiply:PyObject*::+1:
760 PyNumber_InPlaceMultiply:PyObject*:v:0:
761 PyNumber_InPlaceMultiply:PyObject*:w:0:
763 PyNumber_InPlaceOr:PyObject*::+1:
764 PyNumber_InPlaceOr:PyObject*:v:0:
765 PyNumber_InPlaceOr:PyObject*:w:0:
767 PyNumber_InPlacePower:PyObject*::+1:
768 PyNumber_InPlacePower:PyObject*:v:0:
769 PyNumber_InPlacePower:PyObject*:w:0:
770 PyNumber_InPlacePower:PyObject*:z:0:
772 PyNumber_InPlaceRemainder:PyObject*::+1:
773 PyNumber_InPlaceRemainder:PyObject*:v:0:
774 PyNumber_InPlaceRemainder:PyObject*:w:0:
776 PyNumber_InPlaceRshift:PyObject*::+1:
777 PyNumber_InPlaceRshift:PyObject*:v:0:
778 PyNumber_InPlaceRshift:PyObject*:w:0:
780 PyNumber_InPlaceSubtract:PyObject*::+1:
781 PyNumber_InPlaceSubtract:PyObject*:v:0:
782 PyNumber_InPlaceSubtract:PyObject*:w:0:
784 PyNumber_InPlaceTrueDivide:PyObject*::+1:
785 PyNumber_InPlaceTrueDivide:PyObject*:v:0:
786 PyNumber_InPlaceTrueDivide:PyObject*:w:0:
788 PyNumber_InPlaceXor:PyObject*::+1:
789 PyNumber_InPlaceXor:PyObject*:v:0:
790 PyNumber_InPlaceXor:PyObject*:w:0:
792 PyNumber_Int:PyObject*::+1:
793 PyNumber_Int:PyObject*:o:0:
795 PyNumber_Invert:PyObject*::+1:
796 PyNumber_Invert:PyObject*:o:0:
798 PyNumber_Long:PyObject*::+1:
799 PyNumber_Long:PyObject*:o:0:
801 PyNumber_Lshift:PyObject*::+1:
802 PyNumber_Lshift:PyObject*:o1:0:
803 PyNumber_Lshift:PyObject*:o2:0:
805 PyNumber_Multiply:PyObject*::+1:
806 PyNumber_Multiply:PyObject*:o1:0:
807 PyNumber_Multiply:PyObject*:o2:0:
809 PyNumber_Negative:PyObject*::+1:
810 PyNumber_Negative:PyObject*:o:0:
812 PyNumber_Or:PyObject*::+1:
813 PyNumber_Or:PyObject*:o1:0:
814 PyNumber_Or:PyObject*:o2:0:
816 PyNumber_Positive:PyObject*::+1:
817 PyNumber_Positive:PyObject*:o:0:
819 PyNumber_Power:PyObject*::+1:
820 PyNumber_Power:PyObject*:o1:0:
821 PyNumber_Power:PyObject*:o2:0:
822 PyNumber_Power:PyObject*:o3:0:
824 PyNumber_Remainder:PyObject*::+1:
825 PyNumber_Remainder:PyObject*:o1:0:
826 PyNumber_Remainder:PyObject*:o2:0:
828 PyNumber_Rshift:PyObject*::+1:
829 PyNumber_Rshift:PyObject*:o1:0:
830 PyNumber_Rshift:PyObject*:o2:0:
832 PyNumber_Subtract:PyObject*::+1:
833 PyNumber_Subtract:PyObject*:o1:0:
834 PyNumber_Subtract:PyObject*:o2:0:
836 PyNumber_TrueDivide:PyObject*::+1:
837 PyNumber_TrueDivide:PyObject*:v:0:
838 PyNumber_TrueDivide:PyObject*:w:0:
840 PyNumber_Xor:PyObject*::+1:
841 PyNumber_Xor:PyObject*:o1:0:
842 PyNumber_Xor:PyObject*:o2:0:
844 PyObject_AsFileDescriptor:int:::
845 PyObject_AsFileDescriptor:PyObject*:o:0:
847 PyObject_Call:PyObject*::+1:
848 PyObject_Call:PyObject*:callable_object:0:
849 PyObject_Call:PyObject*:args:0:
850 PyObject_Call:PyObject*:kw:0:
852 PyObject_CallFunction:PyObject*::+1:
853 PyObject_CallFunction:PyObject*:callable_object:0:
854 PyObject_CallFunction:char*:format::
855 PyObject_CallFunction::...::
857 PyObject_CallFunctionObjArgs:PyObject*::+1:
858 PyObject_CallFunctionObjArgs:PyObject*:callable:0:
859 PyObject_CallFunctionObjArgs::...::
861 PyObject_CallMethod:PyObject*::+1:
862 PyObject_CallMethod:PyObject*:o:0:
863 PyObject_CallMethod:char*:m::
864 PyObject_CallMethod:char*:format::
865 PyObject_CallMethod::...::
867 PyObject_CallMethodObjArgs:PyObject*::+1:
868 PyObject_CallMethodObjArgs:PyObject*:o:0:
869 PyObject_CallMethodObjArgs:char*:name::
870 PyObject_CallMethodObjArgs::...::
872 PyObject_CallObject:PyObject*::+1:
873 PyObject_CallObject:PyObject*:callable_object:0:
874 PyObject_CallObject:PyObject*:args:0:
876 PyObject_Cmp:int:::
877 PyObject_Cmp:PyObject*:o1:0:
878 PyObject_Cmp:PyObject*:o2:0:
879 PyObject_Cmp:int*:result::
881 PyObject_Compare:int:::
882 PyObject_Compare:PyObject*:o1:0:
883 PyObject_Compare:PyObject*:o2:0:
885 PyObject_DelAttr:int:::
886 PyObject_DelAttr:PyObject*:o:0:
887 PyObject_DelAttr:PyObject*:attr_name:0:
889 PyObject_DelAttrString:int:::
890 PyObject_DelAttrString:PyObject*:o:0:
891 PyObject_DelAttrString:char*:attr_name::
893 PyObject_DelItem:int:::
894 PyObject_DelItem:PyObject*:o:0:
895 PyObject_DelItem:PyObject*:key:0:
897 PyObject_Dir:PyObject*::+1:
898 PyObject_Dir:PyObject*:o:0:
900 PyObject_GetAttr:PyObject*::+1:
901 PyObject_GetAttr:PyObject*:o:0:
902 PyObject_GetAttr:PyObject*:attr_name:0:
904 PyObject_GetAttrString:PyObject*::+1:
905 PyObject_GetAttrString:PyObject*:o:0:
906 PyObject_GetAttrString:char*:attr_name::
908 PyObject_GetItem:PyObject*::+1:
909 PyObject_GetItem:PyObject*:o:0:
910 PyObject_GetItem:PyObject*:key:0:
912 PyObject_GetIter:PyObject*::+1:
913 PyObject_GetIter:PyObject*:o:0:
915 PyObject_HasAttr:int:::
916 PyObject_HasAttr:PyObject*:o:0:
917 PyObject_HasAttr:PyObject*:attr_name:0:
919 PyObject_HasAttrString:int:::
920 PyObject_HasAttrString:PyObject*:o:0:
921 PyObject_HasAttrString:char*:attr_name:0:
923 PyObject_Hash:int:::
924 PyObject_Hash:PyObject*:o:0:
926 PyObject_IsTrue:int:::
927 PyObject_IsTrue:PyObject*:o:0:
929 PyObject_Init:PyObject*::0:
930 PyObject_Init:PyObject*:op:0:
932 PyObject_InitVar:PyVarObject*::0:
933 PyObject_InitVar:PyVarObject*:op:0:
935 PyObject_Length:int:::
936 PyObject_Length:PyObject*:o:0:
938 PyObject_NEW:PyObject*::+1:
940 PyObject_New:PyObject*::+1:
942 PyObject_NEW_VAR:PyObject*::+1:
944 PyObject_NewVar:PyObject*::+1:
946 PyObject_Print:int:::
947 PyObject_Print:PyObject*:o:0:
948 PyObject_Print:FILE*:fp::
949 PyObject_Print:int:flags::
951 PyObject_Repr:PyObject*::+1:
952 PyObject_Repr:PyObject*:o:0:
954 PyObject_RichCompare:PyObject*::+1:
955 PyObject_RichCompare:PyObject*:o1:0:
956 PyObject_RichCompare:PyObject*:o2:0:
957 PyObject_RichCompare:int:opid::
959 PyObject_RichCompareBool:int:::
960 PyObject_RichCompareBool:PyObject*:o1:0:
961 PyObject_RichCompareBool:PyObject*:o2:0:
962 PyObject_RichCompareBool:int:opid::
964 PyObject_SetAttr:int:::
965 PyObject_SetAttr:PyObject*:o:0:
966 PyObject_SetAttr:PyObject*:attr_name:0:
967 PyObject_SetAttr:PyObject*:v:+1:
969 PyObject_SetAttrString:int:::
970 PyObject_SetAttrString:PyObject*:o:0:
971 PyObject_SetAttrString:char*:attr_name::
972 PyObject_SetAttrString:PyObject*:v:+1:
974 PyObject_SetItem:int:::
975 PyObject_SetItem:PyObject*:o:0:
976 PyObject_SetItem:PyObject*:key:0:
977 PyObject_SetItem:PyObject*:v:+1:
979 PyObject_Str:PyObject*::+1:
980 PyObject_Str:PyObject*:o:0:
982 PyObject_Type:PyObject*::+1:
983 PyObject_Type:PyObject*:o:0:
985 PyObject_Unicode:PyObject*::+1:
986 PyObject_Unicode:PyObject*:o:0:
988 PyParser_SimpleParseFile:struct _node*:::
989 PyParser_SimpleParseFile:FILE*:fp::
990 PyParser_SimpleParseFile:char*:filename::
991 PyParser_SimpleParseFile:int:start::
993 PyParser_SimpleParseString:struct _node*:::
994 PyParser_SimpleParseString:char*:str::
995 PyParser_SimpleParseString:int:start::
997 PyRun_AnyFile:int:::
998 PyRun_AnyFile:FILE*:fp::
999 PyRun_AnyFile:char*:filename::
1001 PyRun_File:PyObject*::+1:??? -- same as eval_code2()
1002 PyRun_File:FILE*:fp::
1003 PyRun_File:char*:filename::
1004 PyRun_File:int:start::
1005 PyRun_File:PyObject*:globals:0:
1006 PyRun_File:PyObject*:locals:0:
1008 PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1009 PyRun_FileEx:FILE*:fp::
1010 PyRun_FileEx:char*:filename::
1011 PyRun_FileEx:int:start::
1012 PyRun_FileEx:PyObject*:globals:0:
1013 PyRun_FileEx:PyObject*:locals:0:
1014 PyRun_FileEx:int:closeit::
1016 PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1017 PyRun_FileFlags:FILE*:fp::
1018 PyRun_FileFlags:char*:filename::
1019 PyRun_FileFlags:int:start::
1020 PyRun_FileFlags:PyObject*:globals:0:
1021 PyRun_FileFlags:PyObject*:locals:0:
1022 PyRun_FileFlags:PyCompilerFlags*:flags::
1024 PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1025 PyRun_FileExFlags:FILE*:fp::
1026 PyRun_FileExFlags:char*:filename::
1027 PyRun_FileExFlags:int:start::
1028 PyRun_FileExFlags:PyObject*:globals:0:
1029 PyRun_FileExFlags:PyObject*:locals:0:
1030 PyRun_FileExFlags:int:closeit::
1031 PyRun_FileExFlags:PyCompilerFlags*:flags::
1033 PyRun_InteractiveLoop:int:::
1034 PyRun_InteractiveLoop:FILE*:fp::
1035 PyRun_InteractiveLoop:char*:filename::
1037 PyRun_InteractiveOne:int:::
1038 PyRun_InteractiveOne:FILE*:fp::
1039 PyRun_InteractiveOne:char*:filename::
1041 PyRun_SimpleFile:int:::
1042 PyRun_SimpleFile:FILE*:fp::
1043 PyRun_SimpleFile:char*:filename::
1045 PyRun_SimpleString:int:::
1046 PyRun_SimpleString:char*:command::
1048 PyRun_String:PyObject*::+1:??? -- same as eval_code2()
1049 PyRun_String:char*:str::
1050 PyRun_String:int:start::
1051 PyRun_String:PyObject*:globals:0:
1052 PyRun_String:PyObject*:locals:0:
1054 PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
1055 PyRun_StringFlags:char*:str::
1056 PyRun_StringFlags:int:start::
1057 PyRun_StringFlags:PyObject*:globals:0:
1058 PyRun_StringFlags:PyObject*:locals:0:
1059 PyRun_StringFlags:PyCompilerFlags*:flags::
1061 PySeqIter_New:PyObject*::+1:
1062 PySeqIter_New:PyObject*:seq::
1064 PySequence_Check:int:::
1065 PySequence_Check:PyObject*:o:0:
1067 PySequence_Concat:PyObject*::+1:
1068 PySequence_Concat:PyObject*:o1:0:
1069 PySequence_Concat:PyObject*:o2:0:
1071 PySequence_Count:int:::
1072 PySequence_Count:PyObject*:o:0:
1073 PySequence_Count:PyObject*:value:0:
1075 PySequence_DelItem:int:::
1076 PySequence_DelItem:PyObject*:o:0:
1077 PySequence_DelItem:int:i::
1079 PySequence_DelSlice:int:::
1080 PySequence_DelSlice:PyObject*:o:0:
1081 PySequence_DelSlice:int:i1::
1082 PySequence_DelSlice:int:i2::
1084 PySequence_Fast:PyObject*::+1:
1085 PySequence_Fast:PyObject*:v:0:
1086 PySequence_Fast:const char*:m::
1088 PySequence_Fast_GET_ITEM:PyObject*::0:
1089 PySequence_Fast_GET_ITEM:PyObject*:o:0:
1090 PySequence_Fast_GET_ITEM:int:i::
1092 PySequence_GetItem:PyObject*::+1:
1093 PySequence_GetItem:PyObject*:o:0:
1094 PySequence_GetItem:int:i::
1096 PySequence_GetSlice:PyObject*::+1:
1097 PySequence_GetSlice:PyObject*:o:0:
1098 PySequence_GetSlice:int:i1::
1099 PySequence_GetSlice:int:i2::
1101 PySequence_In:int:::
1102 PySequence_In:PyObject*:o:0:
1103 PySequence_In:PyObject*:value:0:
1105 PySequence_Index:int:::
1106 PySequence_Index:PyObject*:o:0:
1107 PySequence_Index:PyObject*:value:0:
1109 PySequence_InPlaceConcat:PyObject*::+1:
1110 PySequence_InPlaceConcat:PyObject*:s:0:
1111 PySequence_InPlaceConcat:PyObject*:o:0:
1113 PySequence_InPlaceRepeat:PyObject*::+1:
1114 PySequence_InPlaceRepeat:PyObject*:s:0:
1115 PySequence_InPlaceRepeat:PyObject*:o:0:
1117 PySequence_ITEM:PyObject*::+1:
1118 PySequence_ITEM:PyObject*:o:0:
1119 PySequence_ITEM:int:i::
1121 PySequence_Repeat:PyObject*::+1:
1122 PySequence_Repeat:PyObject*:o:0:
1123 PySequence_Repeat:int:count::
1125 PySequence_SetItem:int:::
1126 PySequence_SetItem:PyObject*:o:0:
1127 PySequence_SetItem:int:i::
1128 PySequence_SetItem:PyObject*:v:+1:
1130 PySequence_SetSlice:int:::
1131 PySequence_SetSlice:PyObject*:o:0:
1132 PySequence_SetSlice:int:i1::
1133 PySequence_SetSlice:int:i2::
1134 PySequence_SetSlice:PyObject*:v:+1:
1136 PySequence_List:PyObject*::+1:
1137 PySequence_List:PyObject*:o:0:
1139 PySequence_Tuple:PyObject*::+1:
1140 PySequence_Tuple:PyObject*:o:0:
1142 PySet_Append:int:::
1143 PySet_Append:PyObject*:set:0:
1144 PySet_Append:PyObject*:key:+1:
1146 PySet_Contains:int:::
1147 PySet_Contains:PyObject*:anyset:0:
1148 PySet_Contains:PyObject*:key:0:
1150 PySet_Discard:int:::
1151 PySet_Discard:PyObject*:set:0:
1152 PySet_Discard:PyObject*:key:-1:no effect if key not found
1154 PySet_New:PyObject*::+1:
1155 PySet_New:PyObject*:iterable:0:
1157 PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
1158 PySet_Pop:PyObject*:set:0:
1160 PySet_Size:int:::
1161 PySet_Size:PyObject*:anyset:0:
1163 PySlice_Check:int:::
1164 PySlice_Check:PyObject*:ob:0:
1166 PySlice_New:PyObject*::+1:
1167 PySlice_New:PyObject*:start:0:
1168 PySlice_New:PyObject*:stop:0:
1169 PySlice_New:PyObject*:step:0:
1171 PyString_AS_STRING:char*:::
1172 PyString_AS_STRING:PyObject*:string:0:
1174 PyString_AsDecodedObject:PyObject*::+1:
1175 PyString_AsDecodedObject:PyObject*:str:0:
1176 PyString_AsDecodedObject:const char*:encoding::
1177 PyString_AsDecodedObject:const char*:errors::
1179 PyString_AsEncodedObject:PyObject*::+1:
1180 PyString_AsEncodedObject:PyObject*:str:0:
1181 PyString_AsEncodedObject:const char*:encoding::
1182 PyString_AsEncodedObject:const char*:errors::
1184 PyString_AsString:char*:::
1185 PyString_AsString:PyObject*:string:0:
1187 PyString_AsStringAndSize:int:::
1188 PyString_AsStringAndSize:PyObject*:obj:0:
1189 PyString_AsStringAndSize:char**:buffer::
1190 PyString_AsStringAndSize:int*:length::
1192 PyString_Check:int:::
1193 PyString_Check:PyObject*:o:0:
1195 PyString_Concat:void:::
1196 PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
1197 PyString_Concat:PyObject*:newpart:0:
1199 PyString_ConcatAndDel:void:::
1200 PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
1201 PyString_ConcatAndDel:PyObject*:newpart:-1:
1203 PyString_Format:PyObject*::+1:
1204 PyString_Format:PyObject*:format:0:
1205 PyString_Format:PyObject*:args:0:
1207 PyString_FromString:PyObject*::+1:
1208 PyString_FromString:const char*:v::
1210 PyString_FromStringAndSize:PyObject*::+1:
1211 PyString_FromStringAndSize:const char*:v::
1212 PyString_FromStringAndSize:int:len::
1214 PyString_FromFormat:PyObject*::+1:
1215 PyString_FromFormat:const char*:format::
1216 PyString_FromFormat::...::
1218 PyString_FromFormatV:PyObject*::+1:
1219 PyString_FromFormatV:const char*:format::
1220 PyString_FromFormatV:va_list:vargs::
1222 PyString_GET_SIZE:int:::
1223 PyString_GET_SIZE:PyObject*:string:0:
1225 PyString_InternFromString:PyObject*::+1:
1226 PyString_InternFromString:const char*:v::
1228 PyString_InternInPlace:void:::
1229 PyString_InternInPlace:PyObject**:string:+1:???
1231 PyString_Size:int:::
1232 PyString_Size:PyObject*:string:0:
1234 PyString_Decode:PyObject*::+1:
1235 PyString_Decode:const char*:s::
1236 PyString_Decode:int:size::
1237 PyString_Decode:const char*:encoding::
1238 PyString_Decode:const char*:errors::
1240 PyString_Encode:PyObject*::+1:
1241 PyString_Encode:const char*:s::
1242 PyString_Encode:int:size::
1243 PyString_Encode:const char*:encoding::
1244 PyString_Encode:const char*:errors::
1246 PyString_AsEncodedString:PyObject*::+1:
1247 PyString_AsEncodedString:PyObject*:str::
1248 PyString_AsEncodedString:const char*:encoding::
1249 PyString_AsEncodedString:const char*:errors::
1251 PySys_AddWarnOption:void:::
1252 PySys_AddWarnOption:char*:s::
1254 PySys_GetFile:FILE*:::
1255 PySys_GetFile:char*:name::
1256 PySys_GetFile:FILE*:def::
1258 PySys_GetObject:PyObject*::0:
1259 PySys_GetObject:char*:name::
1261 PySys_SetArgv:int:::
1262 PySys_SetArgv:int:argc::
1263 PySys_SetArgv:char**:argv::
1265 PySys_SetObject:int:::
1266 PySys_SetObject:char*:name::
1267 PySys_SetObject:PyObject*:v:+1:
1269 PySys_ResetWarnOptions:void:::
1271 PySys_WriteStdout:void:::
1272 PySys_WriteStdout:char*:format::
1274 PySys_WriteStderr:void:::
1275 PySys_WriteStderr:char*:format::
1277 PyThreadState_Clear:void:::
1278 PyThreadState_Clear:PyThreadState*:tstate::
1280 PyThreadState_Delete:void:::
1281 PyThreadState_Delete:PyThreadState*:tstate::
1283 PyThreadState_Get:PyThreadState*:::
1285 PyThreadState_GetDict:PyObject*::0:
1287 PyThreadState_New:PyThreadState*:::
1288 PyThreadState_New:PyInterpreterState*:interp::
1290 PyThreadState_Swap:PyThreadState*:::
1291 PyThreadState_Swap:PyThreadState*:tstate::
1293 PyTime_FromTime:PyObject*::+1:
1294 PyTime_FromTime:int:hour::
1295 PyTime_FromTime:int:minute::
1296 PyTime_FromTime:int:second::
1297 PyTime_FromTime:int:usecond::
1299 PyTuple_Check:int:::
1300 PyTuple_Check:PyObject*:p:0:
1302 PyTuple_GET_ITEM:PyObject*::0:
1303 PyTuple_GET_ITEM:PyTupleObject*:p:0:
1304 PyTuple_GET_ITEM:int:pos::
1306 PyTuple_GetItem:PyObject*::0:
1307 PyTuple_GetItem:PyTupleObject*:p:0:
1308 PyTuple_GetItem:int:pos::
1310 PyTuple_GetSlice:PyObject*::+1:
1311 PyTuple_GetSlice:PyTupleObject*:p:0:
1312 PyTuple_GetSlice:int:low::
1313 PyTuple_GetSlice:int:high::
1315 PyTuple_New:PyObject*::+1:
1316 PyTuple_New:int:len::
1318 PyTuple_Pack:PyObject*::+1:
1319 PyTuple_Pack:int:len::
1320 PyTuple_Pack:PyObject*:...:0:
1322 PyTuple_SET_ITEM:void:::
1323 PyTuple_SET_ITEM:PyTupleObject*:p:0:
1324 PyTuple_SET_ITEM:int:pos::
1325 PyTuple_SET_ITEM:PyObject*:o:0:
1327 PyTuple_SetItem:int:::
1328 PyTuple_SetItem:PyTupleObject*:p:0:
1329 PyTuple_SetItem:int:pos::
1330 PyTuple_SetItem:PyObject*:o:0:
1332 PyTuple_Size:int:::
1333 PyTuple_Size:PyTupleObject*:p:0:
1335 PyType_GenericAlloc:PyObject*::+1:
1336 PyType_GenericAlloc:PyObject*:type:0:
1337 PyType_GenericAlloc:int:nitems:0:
1339 PyType_GenericNew:PyObject*::+1:
1340 PyType_GenericNew:PyObject*:type:0:
1341 PyType_GenericNew:PyObject*:args:0:
1342 PyType_GenericNew:PyObject*:kwds:0:
1344 PyUnicode_Check:int:::
1345 PyUnicode_Check:PyObject*:o:0:
1347 PyUnicode_GET_SIZE:int:::
1348 PyUnicode_GET_SIZE:PyObject*:o:0:
1350 PyUnicode_GET_DATA_SIZE:int:::
1351 PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1353 PyUnicode_AS_UNICODE:Py_UNICODE*:::
1354 PyUnicode_AS_UNICODE:PyObject*:o:0:
1356 PyUnicode_AS_DATA:const char*:::
1357 PyUnicode_AS_DATA:PyObject*:o:0:
1359 Py_UNICODE_ISSPACE:int:::
1360 Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1362 Py_UNICODE_ISLOWER:int:::
1363 Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1365 Py_UNICODE_ISUPPER:int:::
1366 Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1368 Py_UNICODE_ISTITLE:int:::
1369 Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1371 Py_UNICODE_ISLINEBREAK:int:::
1372 Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1374 Py_UNICODE_ISDECIMAL:int:::
1375 Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1377 Py_UNICODE_ISDIGIT:int:::
1378 Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1380 Py_UNICODE_ISNUMERIC:int:::
1381 Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1383 Py_UNICODE_TOLOWER:Py_UNICODE:::
1384 Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1386 Py_UNICODE_TOUPPER:Py_UNICODE:::
1387 Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1389 Py_UNICODE_TOTITLE:Py_UNICODE:::
1390 Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1392 Py_UNICODE_TODECIMAL:int:::
1393 Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1395 Py_UNICODE_TODIGIT:int:::
1396 Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1398 Py_UNICODE_TONUMERIC:double:::
1399 Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1401 PyUnicode_FromUnicode:PyObject*::+1:
1402 PyUnicode_FromUnicode:const Py_UNICODE*:u::
1403 PyUnicode_FromUnicode:int:size::
1405 PyUnicode_AsUnicode:Py_UNICODE*:::
1406 PyUnicode_AsUnicode:PyObject :*unicode:0:
1408 PyUnicode_GetSize:int:::
1409 PyUnicode_GetSize:PyObject :*unicode:0:
1411 PyUnicode_FromObject:PyObject*::+1:
1412 PyUnicode_FromObject:PyObject*:*obj:0:
1414 PyUnicode_FromEncodedObject:PyObject*::+1:
1415 PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1416 PyUnicode_FromEncodedObject:const char*:encoding::
1417 PyUnicode_FromEncodedObject:const char*:errors::
1419 PyUnicode_FromWideChar:PyObject*::+1:
1420 PyUnicode_FromWideChar:const wchar_t*:w::
1421 PyUnicode_FromWideChar:int:size::
1423 PyUnicode_AsWideChar:int:::
1424 PyUnicode_AsWideChar:PyObject*:*unicode:0:
1425 PyUnicode_AsWideChar:wchar_t*:w::
1426 PyUnicode_AsWideChar:int:size::
1428 PyUnicode_Decode:PyObject*::+1:
1429 PyUnicode_Decode:const char*:s::
1430 PyUnicode_Decode:int:size::
1431 PyUnicode_Decode:const char*:encoding::
1432 PyUnicode_Decode:const char*:errors::
1434 PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1435 PyUnicode_DecodeUTF16Stateful:const char*:s::
1436 PyUnicode_DecodeUTF16Stateful:int:size::
1437 PyUnicode_DecodeUTF16Stateful:const char*:errors::
1438 PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1439 PyUnicode_DecodeUTF16Stateful:int*:consumed::
1441 PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1442 PyUnicode_DecodeUTF8Stateful:const char*:s::
1443 PyUnicode_DecodeUTF8Stateful:int:size::
1444 PyUnicode_DecodeUTF8Stateful:const char*:errors::
1445 PyUnicode_DecodeUTF8Stateful:int*:consumed::
1447 PyUnicode_Encode:PyObject*::+1:
1448 PyUnicode_Encode:const Py_UNICODE*:s::
1449 PyUnicode_Encode:int:size::
1450 PyUnicode_Encode:const char*:encoding::
1451 PyUnicode_Encode:const char*:errors::
1453 PyUnicode_AsEncodedString:PyObject*::+1:
1454 PyUnicode_AsEncodedString:PyObject*:unicode::
1455 PyUnicode_AsEncodedString:const char*:encoding::
1456 PyUnicode_AsEncodedString:const char*:errors::
1458 PyUnicode_DecodeUTF8:PyObject*::+1:
1459 PyUnicode_DecodeUTF8:const char*:s::
1460 PyUnicode_DecodeUTF8:int:size::
1461 PyUnicode_DecodeUTF8:const char*:errors::
1463 PyUnicode_EncodeUTF8:PyObject*::+1:
1464 PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1465 PyUnicode_EncodeUTF8:int:size::
1466 PyUnicode_EncodeUTF8:const char*:errors::
1468 PyUnicode_AsUTF8String:PyObject*::+1:
1469 PyUnicode_AsUTF8String:PyObject*:unicode::
1471 PyUnicode_DecodeUTF16:PyObject*::+1:
1472 PyUnicode_DecodeUTF16:const char*:s::
1473 PyUnicode_DecodeUTF16:int:size::
1474 PyUnicode_DecodeUTF16:const char*:errors::
1475 PyUnicode_DecodeUTF16:int*:byteorder::
1477 PyUnicode_EncodeUTF16:PyObject*::+1:
1478 PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1479 PyUnicode_EncodeUTF16:int:size::
1480 PyUnicode_EncodeUTF16:const char*:errors::
1481 PyUnicode_EncodeUTF16:int:byteorder::
1483 PyUnicode_AsUTF16String:PyObject*::+1:
1484 PyUnicode_AsUTF16String:PyObject*:unicode::
1486 PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1487 PyUnicode_DecodeUnicodeEscape:const char*:s::
1488 PyUnicode_DecodeUnicodeEscape:int:size::
1489 PyUnicode_DecodeUnicodeEscape:const char*:errors::
1491 PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1492 PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1493 PyUnicode_EncodeUnicodeEscape:int:size::
1494 PyUnicode_EncodeUnicodeEscape:const char*:errors::
1496 PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1497 PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1499 PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1500 PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1501 PyUnicode_DecodeRawUnicodeEscape:int:size::
1502 PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1504 PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1505 PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1506 PyUnicode_EncodeRawUnicodeEscape:int:size::
1507 PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1509 PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1510 PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1512 PyUnicode_DecodeLatin1:PyObject*::+1:
1513 PyUnicode_DecodeLatin1:const char*:s::
1514 PyUnicode_DecodeLatin1:int:size::
1515 PyUnicode_DecodeLatin1:const char*:errors::
1517 PyUnicode_EncodeLatin1:PyObject*::+1:
1518 PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1519 PyUnicode_EncodeLatin1:int:size::
1520 PyUnicode_EncodeLatin1:const char*:errors::
1522 PyUnicode_AsLatin1String:PyObject*::+1:
1523 PyUnicode_AsLatin1String:PyObject*:unicode::
1525 PyUnicode_DecodeASCII:PyObject*::+1:
1526 PyUnicode_DecodeASCII:const char*:s::
1527 PyUnicode_DecodeASCII:int:size::
1528 PyUnicode_DecodeASCII:const char*:errors::
1530 PyUnicode_EncodeASCII:PyObject*::+1:
1531 PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1532 PyUnicode_EncodeASCII:int:size::
1533 PyUnicode_EncodeASCII:const char*:errors::
1535 PyUnicode_AsASCIIString:PyObject*::+1:
1536 PyUnicode_AsASCIIString:PyObject*:unicode::
1538 PyUnicode_DecodeCharmap:PyObject*::+1:
1539 PyUnicode_DecodeCharmap:const char*:s::
1540 PyUnicode_DecodeCharmap:int:size::
1541 PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1542 PyUnicode_DecodeCharmap:const char*:errors::
1544 PyUnicode_EncodeCharmap:PyObject*::+1:
1545 PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1546 PyUnicode_EncodeCharmap:int:size::
1547 PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1548 PyUnicode_EncodeCharmap:const char*:errors::
1550 PyUnicode_AsCharmapString:PyObject*::+1:
1551 PyUnicode_AsCharmapString:PyObject*:unicode:0:
1552 PyUnicode_AsCharmapString:PyObject*:mapping:0:
1554 PyUnicode_TranslateCharmap:PyObject*::+1:
1555 PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1556 PyUnicode_TranslateCharmap:int:size::
1557 PyUnicode_TranslateCharmap:PyObject*:table:0:
1558 PyUnicode_TranslateCharmap:const char*:errors::
1560 PyUnicode_DecodeMBCS:PyObject*::+1:
1561 PyUnicode_DecodeMBCS:const char*:s::
1562 PyUnicode_DecodeMBCS:int:size::
1563 PyUnicode_DecodeMBCS:const char*:errors::
1565 PyUnicode_EncodeMBCS:PyObject*::+1:
1566 PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1567 PyUnicode_EncodeMBCS:int:size::
1568 PyUnicode_EncodeMBCS:const char*:errors::
1570 PyUnicode_AsMBCSString:PyObject*::+1:
1571 PyUnicode_AsMBCSString:PyObject*:unicode::
1573 PyUnicode_Concat:PyObject*::+1:
1574 PyUnicode_Concat:PyObject*:left:0:
1575 PyUnicode_Concat:PyObject*:right:0:
1577 PyUnicode_Split:PyObject*::+1:
1578 PyUnicode_Split:PyObject*:left:0:
1579 PyUnicode_Split:PyObject*:right:0:
1580 PyUnicode_Split:int:maxsplit::
1582 PyUnicode_Splitlines:PyObject*::+1:
1583 PyUnicode_Splitlines:PyObject*:s:0:
1584 PyUnicode_Splitlines:int:maxsplit::
1586 PyUnicode_Translate:PyObject*::+1:
1587 PyUnicode_Translate:PyObject*:str:0:
1588 PyUnicode_Translate:PyObject*:table:0:
1589 PyUnicode_Translate:const char*:errors::
1591 PyUnicode_Join:PyObject*::+1:
1592 PyUnicode_Join:PyObject*:separator:0:
1593 PyUnicode_Join:PyObject*:seq:0:
1595 PyUnicode_Tailmatch:PyObject*::+1:
1596 PyUnicode_Tailmatch:PyObject*:str:0:
1597 PyUnicode_Tailmatch:PyObject*:substr:0:
1598 PyUnicode_Tailmatch:int:start::
1599 PyUnicode_Tailmatch:int:end::
1600 PyUnicode_Tailmatch:int:direction::
1602 PyUnicode_Find:int:::
1603 PyUnicode_Find:PyObject*:str:0:
1604 PyUnicode_Find:PyObject*:substr:0:
1605 PyUnicode_Find:int:start::
1606 PyUnicode_Find:int:end::
1607 PyUnicode_Find:int:direction::
1609 PyUnicode_Count:int:::
1610 PyUnicode_Count:PyObject*:str:0:
1611 PyUnicode_Count:PyObject*:substr:0:
1612 PyUnicode_Count:int:start::
1613 PyUnicode_Count:int:end::
1615 PyUnicode_Replace:PyObject*::+1:
1616 PyUnicode_Replace:PyObject*:str:0:
1617 PyUnicode_Replace:PyObject*:substr:0:
1618 PyUnicode_Replace:PyObject*:replstr:0:
1619 PyUnicode_Replace:int:maxcount::
1621 PyUnicode_Compare:int:::
1622 PyUnicode_Compare:PyObject*:left:0:
1623 PyUnicode_Compare:PyObject*:right:0:
1625 PyUnicode_Format:PyObject*::+1:
1626 PyUnicode_Format:PyObject*:format:0:
1627 PyUnicode_Format:PyObject*:args:0:
1629 PyUnicode_Contains:int:::
1630 PyUnicode_Contains:PyObject*:container:0:
1631 PyUnicode_Contains:PyObject*:element:0:
1633 PyWeakref_GET_OBJECT:PyObject*::0:
1634 PyWeakref_GET_OBJECT:PyObject*:ref:0:
1636 PyWeakref_GetObject:PyObject*::0:
1637 PyWeakref_GetObject:PyObject*:ref:0:
1639 PyWeakref_NewProxy:PyObject*::+1:
1640 PyWeakref_NewProxy:PyObject*:ob:0:
1641 PyWeakref_NewProxy:PyObject*:callback:0:
1643 PyWeakref_NewRef:PyObject*::+1:
1644 PyWeakref_NewRef:PyObject*:ob:0:
1645 PyWeakref_NewRef:PyObject*:callback:0:
1647 PyWrapper_New:PyObject*::+1:
1648 PyWrapper_New:PyObject*:d:0:
1649 PyWrapper_New:PyObject*:self:0:
1651 Py_AtExit:int:::
1652 Py_AtExit:void (*)():func::
1654 Py_BuildValue:PyObject*::+1:
1655 Py_BuildValue:char*:format::
1657 Py_CompileString:PyObject*::+1:
1658 Py_CompileString:char*:str::
1659 Py_CompileString:char*:filename::
1660 Py_CompileString:int:start::
1662 Py_CompileStringFlags:PyObject*::+1:
1663 Py_CompileStringFlags:char*:str::
1664 Py_CompileStringFlags:char*:filename::
1665 Py_CompileStringFlags:int:start::
1666 Py_CompileStringFlags:PyCompilerFlags*:flags::
1668 Py_DECREF:void:::
1669 Py_DECREF:PyObject*:o:-1:
1671 Py_EndInterpreter:void:::
1672 Py_EndInterpreter:PyThreadState*:tstate::
1674 Py_Exit:void:::
1675 Py_Exit:int:status::
1677 Py_FatalError:void:::
1678 Py_FatalError:char*:message::
1680 Py_FdIsInteractive:int:::
1681 Py_FdIsInteractive:FILE*:fp::
1682 Py_FdIsInteractive:char*:filename::
1684 Py_Finalize:void:::
1686 Py_FindMethod:PyObject*::+1:
1687 Py_FindMethod:PyMethodDef[]:methods::
1688 Py_FindMethod:PyObject*:self:+1:
1689 Py_FindMethod:char*:name::
1691 Py_GetBuildInfoconst:char*:::
1693 Py_GetCompilerconst:char*:::
1695 Py_GetCopyrightconst:char*:::
1697 Py_GetExecPrefix:char*:::
1699 Py_GetPath:char*:::
1701 Py_GetPlatformconst:char*:::
1703 Py_GetPrefix:char*:::
1705 Py_GetProgramFullPath:char*:::
1707 Py_GetProgramName:char*:::
1709 Py_GetVersionconst:char*:::
1711 Py_INCREF:void:::
1712 Py_INCREF:PyObject*:o:+1:
1714 Py_Initialize:void:::
1716 Py_IsInitialized:int:::
1718 Py_NewInterpreter:PyThreadState*:::
1720 Py_SetProgramName:void:::
1721 Py_SetProgramName:char*:name::
1723 Py_XDECREF:void:::
1724 Py_XDECREF:PyObject*:o:-1:if o is not NULL
1726 Py_XINCREF:void:::
1727 Py_XINCREF:PyObject*:o:+1:if o is not NULL
1729 _PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1730 _PyImport_FindExtension:char*:::
1731 _PyImport_FindExtension:char*:::
1733 _PyImport_Fini:void:::
1735 _PyImport_FixupExtension:PyObject*:::???
1736 _PyImport_FixupExtension:char*:::
1737 _PyImport_FixupExtension:char*:::
1739 _PyImport_Init:void:::
1741 _PyObject_Del:void:::
1742 _PyObject_Del:PyObject*:op:0:
1744 _PyObject_New:PyObject*::+1:
1745 _PyObject_New:PyTypeObject*:type:0:
1747 _PyObject_NewVar:PyObject*::+1:
1748 _PyObject_NewVar:PyTypeObject*:type:0:
1749 _PyObject_NewVar:int:size::
1751 _PyString_Resize:int:::
1752 _PyString_Resize:PyObject**:string:+1:
1753 _PyString_Resize:int:newsize::
1755 _PyTuple_Resize:int:::
1756 _PyTuple_Resize:PyTupleObject**:p:+1:
1757 _PyTuple_Resize:int:new::
1759 _Py_c_diff:Py_complex:::
1760 _Py_c_diff:Py_complex:left::
1761 _Py_c_diff:Py_complex:right::
1763 _Py_c_neg:Py_complex:::
1764 _Py_c_neg:Py_complex:complex::
1766 _Py_c_pow:Py_complex:::
1767 _Py_c_pow:Py_complex:num::
1768 _Py_c_pow:Py_complex:exp::
1770 _Py_c_prod:Py_complex:::
1771 _Py_c_prod:Py_complex:left::
1772 _Py_c_prod:Py_complex:right::
1774 _Py_c_quot:Py_complex:::
1775 _Py_c_quot:Py_complex:dividend::
1776 _Py_c_quot:Py_complex:divisor::
1778 _Py_c_sum:Py_complex:::
1779 _Py_c_sum:Py_complex:left::
1780 _Py_c_sum:Py_complex:right::