1# Created by Skip Montanaro <skip@mojam.com>.
2
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.
7
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.
12
13# For readability, each function's lines are surrounded by a blank line.
14# The blocks are sorted alphabetically by function name.
15
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.
23
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!
30
31# The parameter names are as they appear in the API manual, not the source
32# code.
33
34PyBool_FromLong:PyObject*::+1:
35PyBool_FromLong:long:v:0:
36
37PyBuffer_FromObject:PyObject*::+1:
38PyBuffer_FromObject:PyObject*:base:+1:
39PyBuffer_FromObject:int:offset::
40PyBuffer_FromObject:int:size::
41
42PyBuffer_FromReadWriteObject:PyObject*::+1:
43PyBuffer_FromReadWriteObject:PyObject*:base:+1:
44PyBuffer_FromReadWriteObject:int:offset::
45PyBuffer_FromReadWriteObject:int:size::
46
47PyBuffer_FromMemory:PyObject*::+1:
48PyBuffer_FromMemory:void*:ptr::
49PyBuffer_FromMemory:int:size::
50
51PyBuffer_FromReadWriteMemory:PyObject*::+1:
52PyBuffer_FromReadWriteMemory:void*:ptr::
53PyBuffer_FromReadWriteMemory:int:size::
54
55PyBuffer_New:PyObject*::+1:
56PyBuffer_New:int:size::
57
58PyCapsule_GetContext:void *:::
59PyCapsule_GetContext:PyObject*:self:0:
60
61PyCapsule_GetDestructor:void (*)(PyObject *):::
62PyCapsule_GetDestructor:PyObject*:self:0:
63
64PyCapsule_GetName:const char *:::
65PyCapsule_GetName:PyObject*:self:0:
66
67PyCapsule_GetPointer:void*:::
68PyCapsule_GetPointer:PyObject*:self:0:
69PyCapsule_GetPointer:const char *:name::
70
71PyCapsule_Import:void *:::
72PyCapsule_Import:const char *:name::
73PyCapsule_Import:int:no_block::
74
75PyCapsule_New:PyObject*::+1:
76PyCapsule_New:void*:pointer::
77PyCapsule_New:const char *:name::
78PyCapsule_New::void (* destructor)(PyObject* )::
79
80PyCapsule_SetContext:int:::
81PyCapsule_SetContext:PyObject*:self:0:
82PyCapsule_SetContext:void *:context::
83
84PyCapsule_SetDestructor:int:::
85PyCapsule_SetDestructor:PyObject*:self:0:
86PyCapsule_SetDestructor:void (*)(PyObject *):destructor::
87
88PyCapsule_SetName:int:::
89PyCapsule_SetName:PyObject*:self:0:
90PyCapsule_SetName:const char *:name::
91
92PyCapsule_SetPointer:int:::
93PyCapsule_SetPointer:PyObject*:self:0:
94PyCapsule_SetPointer:void*:pointer::
95
96
97PyCObject_AsVoidPtr:void*:::
98PyCObject_AsVoidPtr:PyObject*:self:0:
99
100PyCObject_FromVoidPtr:PyObject*::+1:
101PyCObject_FromVoidPtr:void*:cobj::
102PyCObject_FromVoidPtr::void (* destr)(void* )::
103
104PyCObject_FromVoidPtrAndDesc:PyObject*::+1:
105PyCObject_FromVoidPtrAndDesc:void*:cobj::
106PyCObject_FromVoidPtrAndDesc:void*:desc::
107PyCObject_FromVoidPtrAndDesc:void(*)(void*,void*):destr::
108
109PyCObject_GetDesc:void*:::
110PyCObject_GetDesc:PyObject*:self:0:
111
112PyCell_New:PyObject*::+1:
113PyCell_New:PyObject*:ob:0:
114
115PyCell_GET:PyObject*::0:
116PyCell_GET:PyObject*:ob:0:
117
118PyCell_Get:PyObject*::+1:
119PyCell_Get:PyObject*:cell:0:
120
121PyCell_SET:void:::
122PyCell_SET:PyObject*:cell:0:
123PyCell_SET:PyObject*:value:0:
124
125PyCell_Set:int:::
126PyCell_Set:PyObject*:cell:0:
127PyCell_Set:PyObject*:value:0:
128
129PyCallIter_New:PyObject*::+1:
130PyCallIter_New:PyObject*:callable::
131PyCallIter_New:PyObject*:sentinel::
132
133PyCallable_Check:int:::
134PyCallable_Check:PyObject*:o:0:
135
136PyComplex_AsCComplex:Py_complex:::
137PyComplex_AsCComplex:PyObject*:op:0:
138
139PyComplex_Check:int:::
140PyComplex_Check:PyObject*:p:0:
141
142PyComplex_FromCComplex:PyObject*::+1:
143PyComplex_FromCComplex::Py_complex v::
144
145PyComplex_FromDoubles:PyObject*::+1:
146PyComplex_FromDoubles::double real::
147PyComplex_FromDoubles::double imag::
148
149PyComplex_ImagAsDouble:double:::
150PyComplex_ImagAsDouble:PyObject*:op:0:
151
152PyComplex_RealAsDouble:double:::
153PyComplex_RealAsDouble:PyObject*:op:0:
154
155PyDate_FromDate:PyObject*::+1:
156PyDate_FromDate:int:year::
157PyDate_FromDate:int:month::
158PyDate_FromDate:int:day::
159
160PyDate_FromTimestamp:PyObject*::+1:
161PyDate_FromTimestamp:PyObject*:args:0:
162
163PyDateTime_FromDateAndTime:PyObject*::+1:
164PyDateTime_FromDateAndTime:int:year::
165PyDateTime_FromDateAndTime:int:month::
166PyDateTime_FromDateAndTime:int:day::
167PyDateTime_FromDateAndTime:int:hour::
168PyDateTime_FromDateAndTime:int:minute::
169PyDateTime_FromDateAndTime:int:second::
170PyDateTime_FromDateAndTime:int:usecond::
171
172PyDateTime_FromTimestamp:PyObject*::+1:
173PyDateTime_FromTimestamp:PyObject*:args:0:
174
175PyDelta_FromDSU:PyObject*::+1:
176PyDelta_FromDSU:int:days::
177PyDelta_FromDSU:int:seconds::
178PyDelta_FromDSU:int:useconds::
179
180PyDescr_NewClassMethod:PyObject*::+1:
181PyDescr_NewClassMethod:PyTypeObject*:type::
182PyDescr_NewClassMethod:PyMethodDef*:method::
183
184PyDescr_NewGetSet:PyObject*::+1:
185PyDescr_NewGetSet:PyTypeObject*:type::
186PyDescr_NewGetSet:PyGetSetDef*:getset::
187
188PyDescr_NewMember:PyObject*::+1:
189PyDescr_NewMember:PyTypeObject*:type::
190PyDescr_NewMember:PyMemberDef*:member::
191
192PyDescr_NewMethod:PyObject*::+1:
193PyDescr_NewMethod:PyTypeObject*:type::
194PyDescr_NewMethod:PyMethodDef*:meth::
195
196PyDescr_NewWrapper:PyObject*::+1:
197PyDescr_NewWrapper:PyTypeObject*:type::
198PyDescr_NewWrapper:struct wrapperbase*:base::
199PyDescr_NewWrapper:void*:wrapped::
200
201PyDict_Check:int:::
202PyDict_Check:PyObject*:p:0:
203
204PyDict_Clear:void:::
205PyDict_Clear:PyObject*:p:0:
206
207PyDict_DelItem:int:::
208PyDict_DelItem:PyObject*:p:0:
209PyDict_DelItem:PyObject*:key:0:
210
211PyDict_DelItemString:int:::
212PyDict_DelItemString:PyObject*:p:0:
213PyDict_DelItemString:char*:key::
214
215PyDict_GetItem:PyObject*::0:0
216PyDict_GetItem:PyObject*:p:0:
217PyDict_GetItem:PyObject*:key:0:
218
219PyDict_GetItemString:PyObject*::0:
220PyDict_GetItemString:PyObject*:p:0:
221PyDict_GetItemString:char*:key::
222
223PyDict_Items:PyObject*::+1:
224PyDict_Items:PyObject*:p:0:
225
226PyDict_Keys:PyObject*::+1:
227PyDict_Keys:PyObject*:p:0:
228
229PyDict_New:PyObject*::+1:
230
231PyDict_Copy:PyObject*::+1:
232PyDict_Copy:PyObject*:p:0:
233
234PyDict_Next:int:::
235PyDict_Next:PyObject*:p:0:
236PyDict_Next:int:ppos::
237PyDict_Next:PyObject**:pkey:0:
238PyDict_Next:PyObject**:pvalue:0:
239
240PyDict_SetItem:int:::
241PyDict_SetItem:PyObject*:p:0:
242PyDict_SetItem:PyObject*:key:+1:
243PyDict_SetItem:PyObject*:val:+1:
244
245PyDict_SetItemString:int:::
246PyDict_SetItemString:PyObject*:p:0:
247PyDict_SetItemString:char*:key::
248PyDict_SetItemString:PyObject*:val:+1:
249
250PyDict_Size:int:::
251PyDict_Size:PyObject*:p::
252
253PyDict_Values:PyObject*::+1:
254PyDict_Values:PyObject*:p:0:
255
256PyDictProxy_New:PyObject*::+1:
257PyDictProxy_New:PyObject*:dict:0:
258
259PyErr_BadArgument:int:::
260
261PyErr_BadInternalCall:void:::
262
263PyErr_CheckSignals:int:::
264
265PyErr_Clear:void:::
266
267PyErr_ExceptionMatches:int:::
268PyErr_ExceptionMatches:PyObject*:exc:0:
269
270PyErr_Fetch:void:::
271PyErr_Fetch:PyObject**:ptype:0:
272PyErr_Fetch:PyObject**:pvalue:0:
273PyErr_Fetch:PyObject**:ptraceback:0:
274
275PyErr_GivenExceptionMatches:int:::
276PyErr_GivenExceptionMatches:PyObject*:given:0:
277PyErr_GivenExceptionMatches:PyObject*:exc:0:
278
279PyErr_NewException:PyObject*::+1:
280PyErr_NewException:char*:name::
281PyErr_NewException:PyObject*:base:0:
282PyErr_NewException:PyObject*:dict:0:
283
284PyErr_NewExceptionWithDoc:PyObject*::+1:
285PyErr_NewExceptionWithDoc:char*:name::
286PyErr_NewExceptionWithDoc:char*:doc::
287PyErr_NewExceptionWithDoc:PyObject*:base:0:
288PyErr_NewExceptionWithDoc:PyObject*:dict:0:
289
290PyErr_NoMemory:PyObject*::null:
291
292PyErr_NormalizeException:void:::
293PyErr_NormalizeException:PyObject**:exc::???
294PyErr_NormalizeException:PyObject**:val::???
295PyErr_NormalizeException:PyObject**:tb::???
296
297PyErr_Occurred:PyObject*::0:
298
299PyErr_Print:void:::
300
301PyErr_Restore:void:::
302PyErr_Restore:PyObject*:type:-1:
303PyErr_Restore:PyObject*:value:-1:
304PyErr_Restore:PyObject*:traceback:-1:
305
306PyErr_SetExcFromWindowsErr:PyObject*::null:
307PyErr_SetExcFromWindowsErr:PyObject*:type:0:
308PyErr_SetExcFromWindowsErr:int:ierr::
309
310PyErr_SetExcFromWindowsErrWithFilename:PyObject*::null:
311PyErr_SetExcFromWindowsErrWithFilename:PyObject*:type:0:
312PyErr_SetExcFromWindowsErrWithFilename:int:ierr::
313PyErr_SetExcFromWindowsErrWithFilename:char*:filename::
314
315PyErr_SetFromErrno:PyObject*::null:
316PyErr_SetFromErrno:PyObject*:type:0:
317
318PyErr_SetFromErrnoWithFilename:PyObject*::null:
319PyErr_SetFromErrnoWithFilename:PyObject*:type:0:
320PyErr_SetFromErrnoWithFilename:char*:filename::
321
322PyErr_SetFromWindowsErr:PyObject*::null:
323PyErr_SetFromWindowsErr:int:ierr::
324
325PyErr_SetFromWindowsErrWithFilename:PyObject*::null:
326PyErr_SetFromWindowsErrWithFilename:int:ierr::
327PyErr_SetFromWindowsErrWithFilename:char*:filename::
328
329PyErr_SetInterrupt:void:::
330
331PyErr_SetNone:void:::
332PyErr_SetNone:PyObject*:type:+1:
333
334PyErr_SetObject:void:::
335PyErr_SetObject:PyObject*:type:+1:
336PyErr_SetObject:PyObject*:value:+1:
337
338PyErr_SetString:void:::
339PyErr_SetString:PyObject*:type:+1:
340PyErr_SetString:char*:message::
341
342PyErr_Format:PyObject*::null:
343PyErr_Format:PyObject*:exception:+1:
344PyErr_Format:char*:format::
345PyErr_Format::...::
346
347PyErr_Warn:int:::
348PyErr_Warn:PyObject*:category:0:
349PyErr_Warn:char*:message::
350
351PyErr_WarnEx:int:::
352PyErr_WarnEx:PyObject*:category:0:
353PyErr_WarnEx:const char*:message::
354PyErr_WarnEx:Py_ssize_t:stack_level::
355
356PyEval_AcquireLock:void:::
357
358PyEval_AcquireThread:void:::
359PyEval_AcquireThread:PyThreadState*:tstate::
360
361PyEval_GetBuiltins:PyObject*::0:
362PyEval_GetLocals:PyObject*::0:
363PyEval_GetGlobals:PyObject*::0:
364PyEval_GetFrame:PyObject*::0:
365
366PyEval_InitThreads:void:::
367
368PyEval_ReleaseLock:void:::
369
370PyEval_ReleaseThread:void:::
371PyEval_ReleaseThread:PyThreadState*:tstate::
372
373PyEval_RestoreThread:void:::
374PyEval_RestoreThread:PyThreadState*:tstate::
375
376PyEval_SaveThread:PyThreadState*:::
377
378PyEval_EvalCode:PyObject*::+1:
379PyEval_EvalCode:PyCodeObject*:co:0:
380PyEval_EvalCode:PyObject*:globals:0:
381PyEval_EvalCode:PyObject*:locals:0:
382
383PyFile_AsFile:FILE*:::
384PyFile_AsFile:PyFileObject*:p:0:
385
386PyFile_Check:int:::
387PyFile_Check:PyObject*:p:0:
388
389PyFile_FromFile:PyObject*::+1:
390PyFile_FromFile:FILE*:fp::
391PyFile_FromFile:char*:name::
392PyFile_FromFile:char*:mode::
393PyFile_FromFile:int(*:close)::
394
395PyFile_FromString:PyObject*::+1:
396PyFile_FromString:char*:name::
397PyFile_FromString:char*:mode::
398
399PyFile_GetLine:PyObject*::+1:
400PyFile_GetLine:PyObject*:p::
401PyFile_GetLine:int:n::
402
403PyFile_Name:PyObject*::0:
404PyFile_Name:PyObject*:p:0:
405
406PyFile_SetBufSize:void:::
407PyFile_SetBufSize:PyFileObject*:p:0:
408PyFile_SetBufSize:int:n::
409
410PyFile_SoftSpace:int:::
411PyFile_SoftSpace:PyFileObject*:p:0:
412PyFile_SoftSpace:int:newflag::
413
414PyFile_WriteObject:int:::
415PyFile_WriteObject:PyObject*:obj:0:
416PyFile_WriteObject:PyFileObject*:p:0:
417PyFile_WriteObject:int:flags::
418
419PyFile_WriteString:int:::
420PyFile_WriteString:const char*:s::
421PyFile_WriteString:PyFileObject*:p:0:
422PyFile_WriteString:int:flags::
423
424PyFloat_AS_DOUBLE:double:::
425PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
426
427PyFloat_AsDouble:double:::
428PyFloat_AsDouble:PyObject*:pyfloat:0:
429
430PyFloat_Check:int:::
431PyFloat_Check:PyObject*:p:0:
432
433PyFloat_FromDouble:PyObject*::+1:
434PyFloat_FromDouble:double:v::
435
436PyFloat_FromString:PyObject*::+1:
437PyFloat_FromString:PyObject*:str:0:
438PyFloat_FromString:char**:pend:0:ignored
439
440PyFrozenSet_New:PyObject*::+1:
441PyFrozenSet_New:PyObject*:iterable:0:
442
443PyFunction_GetClosure:PyObject*::0:
444PyFunction_GetClosure:PyObject*:op:0:
445
446PyFunction_GetCode:PyObject*::0:
447PyFunction_GetCode:PyObject*:op:0:
448
449PyFunction_GetDefaults:PyObject*::0:
450PyFunction_GetDefaults:PyObject*:op:0:
451
452PyFunction_GetGlobals:PyObject*::0:
453PyFunction_GetGlobals:PyObject*:op:0:
454
455PyFunction_GetModule:PyObject*::0:
456PyFunction_GetModule:PyObject*:op:0:
457
458PyFunction_New:PyObject*::+1:
459PyFunction_New:PyObject*:code:+1:
460PyFunction_New:PyObject*:globals:+1:
461
462PyFunction_SetClosure:int:::
463PyFunction_SetClosure:PyObject*:op:0:
464PyFunction_SetClosure:PyObject*:closure:+1:
465
466PyFunction_SetDefaults:int:::
467PyFunction_SetDefaults:PyObject*:op:0:
468PyFunction_SetDefaults:PyObject*:defaults:+1:
469
470PyGen_New:PyObject*::+1:
471PyGen_New:PyFrameObject*:frame:0:
472
473Py_InitModule:PyObject*::0:
474Py_InitModule:char*:name::
475Py_InitModule:PyMethodDef[]:methods::
476
477Py_InitModule3:PyObject*::0:
478Py_InitModule3:char*:name::
479Py_InitModule3:PyMethodDef[]:methods::
480Py_InitModule3:char*:doc::
481
482Py_InitModule4:PyObject*::0:
483Py_InitModule4:char*:name::
484Py_InitModule4:PyMethodDef[]:methods::
485Py_InitModule4:char*:doc::
486Py_InitModule4:PyObject*:self::
487Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
488
489PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
490PyImport_AddModule:char*:name::
491
492PyImport_Cleanup:void:::
493
494PyImport_ExecCodeModule:PyObject*::+1:
495PyImport_ExecCodeModule:char*:name::
496PyImport_ExecCodeModule:PyObject*:co:0:
497
498PyImport_ExecCodeModuleEx:PyObject*::+1:
499PyImport_ExecCodeModuleEx:char*:name::
500PyImport_ExecCodeModuleEx:PyObject*:co:0:
501PyImport_ExecCodeModuleEx:char*:pathname::
502
503PyImport_GetMagicNumber:long:::
504
505PyImport_GetModuleDict:PyObject*::0:
506
507PyImport_Import:PyObject*::+1:
508PyImport_Import:PyObject*:name:0:
509
510PyImport_ImportFrozenModule:int:::
511PyImport_ImportFrozenModule:char*:::
512
513PyImport_ImportModule:PyObject*::+1:
514PyImport_ImportModule:char*:name::
515
516PyImport_ImportModuleEx:PyObject*::+1:
517PyImport_ImportModuleEx:char*:name::
518PyImport_ImportModuleEx:PyObject*:globals:0:???
519PyImport_ImportModuleEx:PyObject*:locals:0:???
520PyImport_ImportModuleEx:PyObject*:fromlist:0:???
521
522PyImport_ImportModuleLevel:PyObject*::+1:
523PyImport_ImportModuleLevel:char*:name::
524PyImport_ImportModuleLevel:PyObject*:globals:0:???
525PyImport_ImportModuleLevel:PyObject*:locals:0:???
526PyImport_ImportModuleLevel:PyObject*:fromlist:0:???
527PyImport_ImportModuleLevel:int:level::
528
529PyImport_ReloadModule:PyObject*::+1:
530PyImport_ReloadModule:PyObject*:m:0:
531
532PyInstance_New:PyObject*::+1:
533PyInstance_New:PyObject*:klass:+1:
534PyInstance_New:PyObject*:arg:0:
535PyInstance_New:PyObject*:kw:0:
536
537PyInstance_NewRaw:PyObject*::+1:
538PyInstance_NewRaw:PyObject*:klass:+1:
539PyInstance_NewRaw:PyObject*:dict:+1:
540
541PyInt_AS_LONG:long:::
542PyInt_AS_LONG:PyIntObject*:io:0:
543
544PyInt_AsLong:long:::
545PyInt_AsLong:PyObject*:io:0:
546
547PyInt_Check:int:::
548PyInt_Check:PyObject*:op:0:
549
550PyInt_FromLong:PyObject*::+1:
551PyInt_FromLong:long:ival::
552
553PyInt_FromString:PyObject*::+1:
554PyInt_FromString:char*:str:0:
555PyInt_FromString:char**:pend:0:
556PyInt_FromString:int:base:0:
557
558PyInt_FromSsize_t:PyObject*::+1:
559PyInt_FromSsize_t:Py_ssize_t:ival::
560
561PyInt_GetMax:long:::
562
563PyInterpreterState_Clear:void:::
564PyInterpreterState_Clear:PyInterpreterState*:interp::
565
566PyInterpreterState_Delete:void:::
567PyInterpreterState_Delete:PyInterpreterState*:interp::
568
569PyInterpreterState_New:PyInterpreterState*:::
570
571PyIter_Check:int:o:0:
572
573PyIter_Next:PyObject*::+1:
574PyIter_Next:PyObject*:o:0:
575
576PyList_Append:int:::
577PyList_Append:PyObject*:list:0:
578PyList_Append:PyObject*:item:+1:
579
580PyList_AsTuple:PyObject*::+1:
581PyList_AsTuple:PyObject*:list:0:
582
583PyList_Check:int:::
584PyList_Check:PyObject*:p:0:
585
586PyList_GET_ITEM:PyObject*::0:
587PyList_GET_ITEM:PyObject*:list:0:
588PyList_GET_ITEM:int:i:0:
589
590PyList_GET_SIZE:int:::
591PyList_GET_SIZE:PyObject*:list:0:
592
593PyList_GetItem:PyObject*::0:
594PyList_GetItem:PyObject*:list:0:
595PyList_GetItem:int:index::
596
597PyList_GetSlice:PyObject*::+1:
598PyList_GetSlice:PyObject*:list:0:
599PyList_GetSlice:int:low::
600PyList_GetSlice:int:high::
601
602PyList_Insert:int:::
603PyList_Insert:PyObject*:list:0:
604PyList_Insert:int:index::
605PyList_Insert:PyObject*:item:+1:
606
607PyList_New:PyObject*::+1:
608PyList_New:int:len::
609
610PyList_Reverse:int:::
611PyList_Reverse:PyObject*:list:0:
612
613PyList_SET_ITEM:void:::
614PyList_SET_ITEM:PyObject*:list:0:
615PyList_SET_ITEM:int:i::
616PyList_SET_ITEM:PyObject*:o:0:
617
618PyList_SetItem:int:::
619PyList_SetItem:PyObject*:list:0:
620PyList_SetItem:int:index::
621PyList_SetItem:PyObject*:item:0:
622
623PyList_SetSlice:int:::
624PyList_SetSlice:PyObject*:list:0:
625PyList_SetSlice:int:low::
626PyList_SetSlice:int:high::
627PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
628
629PyList_Size:int:::
630PyList_Size:PyObject*:list:0:
631
632PyList_Sort:int:::
633PyList_Sort:PyObject*:list:0:
634
635PyLong_AsDouble:double:::
636PyLong_AsDouble:PyObject*:pylong:0:
637
638PyLong_AsLong:long:::
639PyLong_AsLong:PyObject*:pylong:0:
640
641PyLong_AsSsize_t:ssize_t:::
642PyLong_AsSsize_t:PyObject*:pylong:0:
643
644PyLong_AsUnsignedLong:unsigned long:::
645PyLong_AsUnsignedLong:PyObject*:pylong:0:
646
647PyLong_Check:int:::
648PyLong_Check:PyObject*:p:0:
649
650PyLong_FromDouble:PyObject*::+1:
651PyLong_FromDouble:double:v::
652
653PyLong_FromLong:PyObject*::+1:
654PyLong_FromLong:long:v::
655
656PyLong_FromLongLong:PyObject*::+1:
657PyLong_FromLongLong:long long:v::
658
659PyLong_FromUnsignedLongLong:PyObject*::+1:
660PyLong_FromUnsignedLongLong:unsigned long long:v::
661
662PyLong_FromSize_t:PyObject*::+1:
663PyLong_FromSize_t:size_t:v::
664
665PyLong_FromSsize_t:PyObject*::+1:
666PyLong_FromSsize_t:ssize_t:v::
667
668PyLong_FromString:PyObject*::+1:
669PyLong_FromString:char*:str::
670PyLong_FromString:char**:pend::
671PyLong_FromString:int:base::
672
673PyLong_FromUnicode:PyObject*::+1:
674PyLong_FromUnicode:Py_UNICODE:u::
675PyLong_FromUnicode:int:length::
676PyLong_FromUnicode:int:base::
677
678PyLong_FromUnsignedLong:PyObject*::+1:
679PyLong_FromUnsignedLong:unsignedlong:v::
680
681PyLong_FromVoidPtr:PyObject*::+1:
682PyLong_FromVoidPtr:void*:p::
683
684PyMapping_Check:int:::
685PyMapping_Check:PyObject*:o:0:
686
687PyMapping_DelItem:int:::
688PyMapping_DelItem:PyObject*:o:0:
689PyMapping_DelItem:PyObject*:key:0:
690
691PyMapping_DelItemString:int:::
692PyMapping_DelItemString:PyObject*:o:0:
693PyMapping_DelItemString:char*:key::
694
695PyMapping_GetItemString:PyObject*::+1:
696PyMapping_GetItemString:PyObject*:o:0:
697PyMapping_GetItemString:char*:key::
698
699PyMapping_HasKey:int:::
700PyMapping_HasKey:PyObject*:o:0:
701PyMapping_HasKey:PyObject*:key::
702
703PyMapping_HasKeyString:int:::
704PyMapping_HasKeyString:PyObject*:o:0:
705PyMapping_HasKeyString:char*:key::
706
707PyMapping_Items:PyObject*::+1:
708PyMapping_Items:PyObject*:o:0:
709
710PyMapping_Keys:PyObject*::+1:
711PyMapping_Keys:PyObject*:o:0:
712
713PyMapping_Length:int:::
714PyMapping_Length:PyObject*:o:0:
715
716PyMapping_SetItemString:int:::
717PyMapping_SetItemString:PyObject*:o:0:
718PyMapping_SetItemString:char*:key::
719PyMapping_SetItemString:PyObject*:v:+1:
720
721PyMapping_Values:PyObject*::+1:
722PyMapping_Values:PyObject*:o:0:
723
724PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
725PyMarshal_ReadLastObjectFromFile:FILE*:file::
726
727PyMarshal_ReadObjectFromFile:PyObject*::+1:
728PyMarshal_ReadObjectFromFile:FILE*:file::
729
730PyMarshal_ReadObjectFromString:PyObject*::+1:
731PyMarshal_ReadObjectFromString:char*:string::
732PyMarshal_ReadObjectFromString:int:len::
733
734PyMarshal_WriteObjectToString:PyObject*::+1:
735PyMarshal_WriteObjectToString:PyObject*:value:0:
736
737PyMethod_Class:PyObject*::0:
738PyMethod_Class:PyObject*:im:0:
739
740PyMethod_Function:PyObject*::0:
741PyMethod_Function:PyObject*:im:0:
742
743PyMethod_GET_CLASS:PyObject*::0:
744PyMethod_GET_CLASS:PyObject*:im:0:
745
746PyMethod_GET_FUNCTION:PyObject*::0:
747PyMethod_GET_FUNCTION:PyObject*:im:0:
748
749PyMethod_GET_SELF:PyObject*::0:
750PyMethod_GET_SELF:PyObject*:im:0:
751
752PyMethod_New:PyObject*::+1:
753PyMethod_New:PyObject*:func:0:
754PyMethod_New:PyObject*:self:0:
755PyMethod_New:PyObject*:class:0:
756
757PyMethod_Self:PyObject*::0:
758PyMethod_Self:PyObject*:im:0:
759
760PyModule_GetDict:PyObject*::0:
761PyModule_GetDict::PyObject* module:0:
762
763PyModule_GetFilename:char*:::
764PyModule_GetFilename:PyObject*:module:0:
765
766PyModule_GetName:char*:::
767PyModule_GetName:PyObject*:module:0:
768
769PyModule_New:PyObject*::+1:
770PyModule_New::char* name::
771
772PyNumber_Absolute:PyObject*::+1:
773PyNumber_Absolute:PyObject*:o:0:
774
775PyNumber_Add:PyObject*::+1:
776PyNumber_Add:PyObject*:o1:0:
777PyNumber_Add:PyObject*:o2:0:
778
779PyNumber_And:PyObject*::+1:
780PyNumber_And:PyObject*:o1:0:
781PyNumber_And:PyObject*:o2:0:
782
783PyNumber_Check:PyObject*:o:0:
784PyNumber_Check:int:::
785
786PyNumber_Coerce:int:::
787PyNumber_Coerce:PyObject**:p1:+1:
788PyNumber_Coerce:PyObject**:p2:+1:
789
790PyNumber_Divide:PyObject*::+1:
791PyNumber_Divide:PyObject*:o1:0:
792PyNumber_Divide:PyObject*:o2:0:
793
794PyNumber_Divmod:PyObject*::+1:
795PyNumber_Divmod:PyObject*:o1:0:
796PyNumber_Divmod:PyObject*:o2:0:
797
798PyNumber_Float:PyObject*::+1:
799PyNumber_Float:PyObject*:o:0:
800
801PyNumber_FloorDivide:PyObject*::+1:
802PyNumber_FloorDivide:PyObject*:v:0:
803PyNumber_FloorDivide:PyObject*:w:0:
804
805PyNumber_InPlaceAdd:PyObject*::+1:
806PyNumber_InPlaceAdd:PyObject*:v:0:
807PyNumber_InPlaceAdd:PyObject*:w:0:
808
809PyNumber_InPlaceAnd:PyObject*::+1:
810PyNumber_InPlaceAnd:PyObject*:v:0:
811PyNumber_InPlaceAnd:PyObject*:w:0:
812
813PyNumber_InPlaceDivide:PyObject*::+1:
814PyNumber_InPlaceDivide:PyObject*:v:0:
815PyNumber_InPlaceDivide:PyObject*:w:0:
816
817PyNumber_InPlaceFloorDivide:PyObject*::+1:
818PyNumber_InPlaceFloorDivide:PyObject*:v:0:
819PyNumber_InPlaceFloorDivide:PyObject*:w:0:
820
821PyNumber_InPlaceLshift:PyObject*::+1:
822PyNumber_InPlaceLshift:PyObject*:v:0:
823PyNumber_InPlaceLshift:PyObject*:w:0:
824
825PyNumber_InPlaceMultiply:PyObject*::+1:
826PyNumber_InPlaceMultiply:PyObject*:v:0:
827PyNumber_InPlaceMultiply:PyObject*:w:0:
828
829PyNumber_InPlaceOr:PyObject*::+1:
830PyNumber_InPlaceOr:PyObject*:v:0:
831PyNumber_InPlaceOr:PyObject*:w:0:
832
833PyNumber_InPlacePower:PyObject*::+1:
834PyNumber_InPlacePower:PyObject*:v:0:
835PyNumber_InPlacePower:PyObject*:w:0:
836PyNumber_InPlacePower:PyObject*:z:0:
837
838PyNumber_InPlaceRemainder:PyObject*::+1:
839PyNumber_InPlaceRemainder:PyObject*:v:0:
840PyNumber_InPlaceRemainder:PyObject*:w:0:
841
842PyNumber_InPlaceRshift:PyObject*::+1:
843PyNumber_InPlaceRshift:PyObject*:v:0:
844PyNumber_InPlaceRshift:PyObject*:w:0:
845
846PyNumber_InPlaceSubtract:PyObject*::+1:
847PyNumber_InPlaceSubtract:PyObject*:v:0:
848PyNumber_InPlaceSubtract:PyObject*:w:0:
849
850PyNumber_InPlaceTrueDivide:PyObject*::+1:
851PyNumber_InPlaceTrueDivide:PyObject*:v:0:
852PyNumber_InPlaceTrueDivide:PyObject*:w:0:
853
854PyNumber_InPlaceXor:PyObject*::+1:
855PyNumber_InPlaceXor:PyObject*:v:0:
856PyNumber_InPlaceXor:PyObject*:w:0:
857
858PyNumber_Int:PyObject*::+1:
859PyNumber_Int:PyObject*:o:0:
860
861PyNumber_Invert:PyObject*::+1:
862PyNumber_Invert:PyObject*:o:0:
863
864PyNumber_Long:PyObject*::+1:
865PyNumber_Long:PyObject*:o:0:
866
867PyNumber_Lshift:PyObject*::+1:
868PyNumber_Lshift:PyObject*:o1:0:
869PyNumber_Lshift:PyObject*:o2:0:
870
871PyNumber_Multiply:PyObject*::+1:
872PyNumber_Multiply:PyObject*:o1:0:
873PyNumber_Multiply:PyObject*:o2:0:
874
875PyNumber_Negative:PyObject*::+1:
876PyNumber_Negative:PyObject*:o:0:
877
878PyNumber_Or:PyObject*::+1:
879PyNumber_Or:PyObject*:o1:0:
880PyNumber_Or:PyObject*:o2:0:
881
882PyNumber_Positive:PyObject*::+1:
883PyNumber_Positive:PyObject*:o:0:
884
885PyNumber_Power:PyObject*::+1:
886PyNumber_Power:PyObject*:o1:0:
887PyNumber_Power:PyObject*:o2:0:
888PyNumber_Power:PyObject*:o3:0:
889
890PyNumber_Remainder:PyObject*::+1:
891PyNumber_Remainder:PyObject*:o1:0:
892PyNumber_Remainder:PyObject*:o2:0:
893
894PyNumber_Rshift:PyObject*::+1:
895PyNumber_Rshift:PyObject*:o1:0:
896PyNumber_Rshift:PyObject*:o2:0:
897
898PyNumber_Subtract:PyObject*::+1:
899PyNumber_Subtract:PyObject*:o1:0:
900PyNumber_Subtract:PyObject*:o2:0:
901
902PyNumber_TrueDivide:PyObject*::+1:
903PyNumber_TrueDivide:PyObject*:v:0:
904PyNumber_TrueDivide:PyObject*:w:0:
905
906PyNumber_Xor:PyObject*::+1:
907PyNumber_Xor:PyObject*:o1:0:
908PyNumber_Xor:PyObject*:o2:0:
909
910PyObject_AsFileDescriptor:int:::
911PyObject_AsFileDescriptor:PyObject*:o:0:
912
913PyObject_Call:PyObject*::+1:
914PyObject_Call:PyObject*:callable_object:0:
915PyObject_Call:PyObject*:args:0:
916PyObject_Call:PyObject*:kw:0:
917
918PyObject_CallFunction:PyObject*::+1:
919PyObject_CallFunction:PyObject*:callable_object:0:
920PyObject_CallFunction:char*:format::
921PyObject_CallFunction::...::
922
923PyObject_CallFunctionObjArgs:PyObject*::+1:
924PyObject_CallFunctionObjArgs:PyObject*:callable:0:
925PyObject_CallFunctionObjArgs::...::
926
927PyObject_CallMethod:PyObject*::+1:
928PyObject_CallMethod:PyObject*:o:0:
929PyObject_CallMethod:char*:m::
930PyObject_CallMethod:char*:format::
931PyObject_CallMethod::...::
932
933PyObject_CallMethodObjArgs:PyObject*::+1:
934PyObject_CallMethodObjArgs:PyObject*:o:0:
935PyObject_CallMethodObjArgs:PyObject*:name:0:
936PyObject_CallMethodObjArgs::...::
937
938PyObject_CallObject:PyObject*::+1:
939PyObject_CallObject:PyObject*:callable_object:0:
940PyObject_CallObject:PyObject*:args:0:
941
942PyObject_Cmp:int:::
943PyObject_Cmp:PyObject*:o1:0:
944PyObject_Cmp:PyObject*:o2:0:
945PyObject_Cmp:int*:result::
946
947PyObject_Compare:int:::
948PyObject_Compare:PyObject*:o1:0:
949PyObject_Compare:PyObject*:o2:0:
950
951PyObject_DelAttr:int:::
952PyObject_DelAttr:PyObject*:o:0:
953PyObject_DelAttr:PyObject*:attr_name:0:
954
955PyObject_DelAttrString:int:::
956PyObject_DelAttrString:PyObject*:o:0:
957PyObject_DelAttrString:char*:attr_name::
958
959PyObject_DelItem:int:::
960PyObject_DelItem:PyObject*:o:0:
961PyObject_DelItem:PyObject*:key:0:
962
963PyObject_Dir:PyObject*::+1:
964PyObject_Dir:PyObject*:o:0:
965
966PyObject_GetAttr:PyObject*::+1:
967PyObject_GetAttr:PyObject*:o:0:
968PyObject_GetAttr:PyObject*:attr_name:0:
969
970PyObject_GetAttrString:PyObject*::+1:
971PyObject_GetAttrString:PyObject*:o:0:
972PyObject_GetAttrString:char*:attr_name::
973
974PyObject_GetItem:PyObject*::+1:
975PyObject_GetItem:PyObject*:o:0:
976PyObject_GetItem:PyObject*:key:0:
977
978PyObject_GetIter:PyObject*::+1:
979PyObject_GetIter:PyObject*:o:0:
980
981PyObject_HasAttr:int:::
982PyObject_HasAttr:PyObject*:o:0:
983PyObject_HasAttr:PyObject*:attr_name:0:
984
985PyObject_HasAttrString:int:::
986PyObject_HasAttrString:PyObject*:o:0:
987PyObject_HasAttrString:char*:attr_name:0:
988
989PyObject_Hash:int:::
990PyObject_Hash:PyObject*:o:0:
991
992PyObject_IsTrue:int:::
993PyObject_IsTrue:PyObject*:o:0:
994
995PyObject_Init:PyObject*::0:
996PyObject_Init:PyObject*:op:0:
997
998PyObject_InitVar:PyVarObject*::0:
999PyObject_InitVar:PyVarObject*:op:0:
1000
1001PyObject_Length:int:::
1002PyObject_Length:PyObject*:o:0:
1003
1004PyObject_NEW:PyObject*::+1:
1005
1006PyObject_New:PyObject*::+1:
1007
1008PyObject_NEW_VAR:PyObject*::+1:
1009
1010PyObject_NewVar:PyObject*::+1:
1011
1012PyObject_Print:int:::
1013PyObject_Print:PyObject*:o:0:
1014PyObject_Print:FILE*:fp::
1015PyObject_Print:int:flags::
1016
1017PyObject_Repr:PyObject*::+1:
1018PyObject_Repr:PyObject*:o:0:
1019
1020PyObject_RichCompare:PyObject*::+1:
1021PyObject_RichCompare:PyObject*:o1:0:
1022PyObject_RichCompare:PyObject*:o2:0:
1023PyObject_RichCompare:int:opid::
1024
1025PyObject_RichCompareBool:int:::
1026PyObject_RichCompareBool:PyObject*:o1:0:
1027PyObject_RichCompareBool:PyObject*:o2:0:
1028PyObject_RichCompareBool:int:opid::
1029
1030PyObject_SetAttr:int:::
1031PyObject_SetAttr:PyObject*:o:0:
1032PyObject_SetAttr:PyObject*:attr_name:0:
1033PyObject_SetAttr:PyObject*:v:+1:
1034
1035PyObject_SetAttrString:int:::
1036PyObject_SetAttrString:PyObject*:o:0:
1037PyObject_SetAttrString:char*:attr_name::
1038PyObject_SetAttrString:PyObject*:v:+1:
1039
1040PyObject_SetItem:int:::
1041PyObject_SetItem:PyObject*:o:0:
1042PyObject_SetItem:PyObject*:key:0:
1043PyObject_SetItem:PyObject*:v:+1:
1044
1045PyObject_Str:PyObject*::+1:
1046PyObject_Str:PyObject*:o:0:
1047
1048PyObject_Type:PyObject*::+1:
1049PyObject_Type:PyObject*:o:0:
1050
1051PyObject_Unicode:PyObject*::+1:
1052PyObject_Unicode:PyObject*:o:0:
1053
1054PyParser_SimpleParseFile:struct _node*:::
1055PyParser_SimpleParseFile:FILE*:fp::
1056PyParser_SimpleParseFile:char*:filename::
1057PyParser_SimpleParseFile:int:start::
1058
1059PyParser_SimpleParseString:struct _node*:::
1060PyParser_SimpleParseString:char*:str::
1061PyParser_SimpleParseString:int:start::
1062
1063PyRun_AnyFile:int:::
1064PyRun_AnyFile:FILE*:fp::
1065PyRun_AnyFile:char*:filename::
1066
1067PyRun_File:PyObject*::+1:??? -- same as eval_code2()
1068PyRun_File:FILE*:fp::
1069PyRun_File:char*:filename::
1070PyRun_File:int:start::
1071PyRun_File:PyObject*:globals:0:
1072PyRun_File:PyObject*:locals:0:
1073
1074PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1075PyRun_FileEx:FILE*:fp::
1076PyRun_FileEx:char*:filename::
1077PyRun_FileEx:int:start::
1078PyRun_FileEx:PyObject*:globals:0:
1079PyRun_FileEx:PyObject*:locals:0:
1080PyRun_FileEx:int:closeit::
1081
1082PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1083PyRun_FileFlags:FILE*:fp::
1084PyRun_FileFlags:char*:filename::
1085PyRun_FileFlags:int:start::
1086PyRun_FileFlags:PyObject*:globals:0:
1087PyRun_FileFlags:PyObject*:locals:0:
1088PyRun_FileFlags:PyCompilerFlags*:flags::
1089
1090PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1091PyRun_FileExFlags:FILE*:fp::
1092PyRun_FileExFlags:char*:filename::
1093PyRun_FileExFlags:int:start::
1094PyRun_FileExFlags:PyObject*:globals:0:
1095PyRun_FileExFlags:PyObject*:locals:0:
1096PyRun_FileExFlags:int:closeit::
1097PyRun_FileExFlags:PyCompilerFlags*:flags::
1098
1099PyRun_InteractiveLoop:int:::
1100PyRun_InteractiveLoop:FILE*:fp::
1101PyRun_InteractiveLoop:char*:filename::
1102
1103PyRun_InteractiveOne:int:::
1104PyRun_InteractiveOne:FILE*:fp::
1105PyRun_InteractiveOne:char*:filename::
1106
1107PyRun_SimpleFile:int:::
1108PyRun_SimpleFile:FILE*:fp::
1109PyRun_SimpleFile:char*:filename::
1110
1111PyRun_SimpleString:int:::
1112PyRun_SimpleString:char*:command::
1113
1114PyRun_String:PyObject*::+1:??? -- same as eval_code2()
1115PyRun_String:char*:str::
1116PyRun_String:int:start::
1117PyRun_String:PyObject*:globals:0:
1118PyRun_String:PyObject*:locals:0:
1119
1120PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
1121PyRun_StringFlags:char*:str::
1122PyRun_StringFlags:int:start::
1123PyRun_StringFlags:PyObject*:globals:0:
1124PyRun_StringFlags:PyObject*:locals:0:
1125PyRun_StringFlags:PyCompilerFlags*:flags::
1126
1127PySeqIter_New:PyObject*::+1:
1128PySeqIter_New:PyObject*:seq::
1129
1130PySequence_Check:int:::
1131PySequence_Check:PyObject*:o:0:
1132
1133PySequence_Concat:PyObject*::+1:
1134PySequence_Concat:PyObject*:o1:0:
1135PySequence_Concat:PyObject*:o2:0:
1136
1137PySequence_Count:int:::
1138PySequence_Count:PyObject*:o:0:
1139PySequence_Count:PyObject*:value:0:
1140
1141PySequence_DelItem:int:::
1142PySequence_DelItem:PyObject*:o:0:
1143PySequence_DelItem:int:i::
1144
1145PySequence_DelSlice:int:::
1146PySequence_DelSlice:PyObject*:o:0:
1147PySequence_DelSlice:int:i1::
1148PySequence_DelSlice:int:i2::
1149
1150PySequence_Fast:PyObject*::+1:
1151PySequence_Fast:PyObject*:v:0:
1152PySequence_Fast:const char*:m::
1153
1154PySequence_Fast_GET_ITEM:PyObject*::0:
1155PySequence_Fast_GET_ITEM:PyObject*:o:0:
1156PySequence_Fast_GET_ITEM:int:i::
1157
1158PySequence_GetItem:PyObject*::+1:
1159PySequence_GetItem:PyObject*:o:0:
1160PySequence_GetItem:int:i::
1161
1162PySequence_GetSlice:PyObject*::+1:
1163PySequence_GetSlice:PyObject*:o:0:
1164PySequence_GetSlice:int:i1::
1165PySequence_GetSlice:int:i2::
1166
1167PySequence_In:int:::
1168PySequence_In:PyObject*:o:0:
1169PySequence_In:PyObject*:value:0:
1170
1171PySequence_Index:int:::
1172PySequence_Index:PyObject*:o:0:
1173PySequence_Index:PyObject*:value:0:
1174
1175PySequence_InPlaceConcat:PyObject*::+1:
1176PySequence_InPlaceConcat:PyObject*:s:0:
1177PySequence_InPlaceConcat:PyObject*:o:0:
1178
1179PySequence_InPlaceRepeat:PyObject*::+1:
1180PySequence_InPlaceRepeat:PyObject*:s:0:
1181PySequence_InPlaceRepeat:PyObject*:o:0:
1182
1183PySequence_ITEM:PyObject*::+1:
1184PySequence_ITEM:PyObject*:o:0:
1185PySequence_ITEM:int:i::
1186
1187PySequence_Repeat:PyObject*::+1:
1188PySequence_Repeat:PyObject*:o:0:
1189PySequence_Repeat:int:count::
1190
1191PySequence_SetItem:int:::
1192PySequence_SetItem:PyObject*:o:0:
1193PySequence_SetItem:int:i::
1194PySequence_SetItem:PyObject*:v:+1:
1195
1196PySequence_SetSlice:int:::
1197PySequence_SetSlice:PyObject*:o:0:
1198PySequence_SetSlice:int:i1::
1199PySequence_SetSlice:int:i2::
1200PySequence_SetSlice:PyObject*:v:+1:
1201
1202PySequence_List:PyObject*::+1:
1203PySequence_List:PyObject*:o:0:
1204
1205PySequence_Tuple:PyObject*::+1:
1206PySequence_Tuple:PyObject*:o:0:
1207
1208PySet_Append:int:::
1209PySet_Append:PyObject*:set:0:
1210PySet_Append:PyObject*:key:+1:
1211
1212PySet_Contains:int:::
1213PySet_Contains:PyObject*:anyset:0:
1214PySet_Contains:PyObject*:key:0:
1215
1216PySet_Discard:int:::
1217PySet_Discard:PyObject*:set:0:
1218PySet_Discard:PyObject*:key:-1:no effect if key not found
1219
1220PySet_New:PyObject*::+1:
1221PySet_New:PyObject*:iterable:0:
1222
1223PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
1224PySet_Pop:PyObject*:set:0:
1225
1226PySet_Size:int:::
1227PySet_Size:PyObject*:anyset:0:
1228
1229PySlice_Check:int:::
1230PySlice_Check:PyObject*:ob:0:
1231
1232PySlice_New:PyObject*::+1:
1233PySlice_New:PyObject*:start:0:
1234PySlice_New:PyObject*:stop:0:
1235PySlice_New:PyObject*:step:0:
1236
1237PyString_AS_STRING:char*:::
1238PyString_AS_STRING:PyObject*:string:0:
1239
1240PyString_AsDecodedObject:PyObject*::+1:
1241PyString_AsDecodedObject:PyObject*:str:0:
1242PyString_AsDecodedObject:const char*:encoding::
1243PyString_AsDecodedObject:const char*:errors::
1244
1245PyString_AsEncodedObject:PyObject*::+1:
1246PyString_AsEncodedObject:PyObject*:str:0:
1247PyString_AsEncodedObject:const char*:encoding::
1248PyString_AsEncodedObject:const char*:errors::
1249
1250PyString_AsString:char*:::
1251PyString_AsString:PyObject*:string:0:
1252
1253PyString_AsStringAndSize:int:::
1254PyString_AsStringAndSize:PyObject*:obj:0:
1255PyString_AsStringAndSize:char**:buffer::
1256PyString_AsStringAndSize:int*:length::
1257
1258PyString_Check:int:::
1259PyString_Check:PyObject*:o:0:
1260
1261PyString_Concat:void:::
1262PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
1263PyString_Concat:PyObject*:newpart:0:
1264
1265PyString_ConcatAndDel:void:::
1266PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
1267PyString_ConcatAndDel:PyObject*:newpart:-1:
1268
1269PyString_Format:PyObject*::+1:
1270PyString_Format:PyObject*:format:0:
1271PyString_Format:PyObject*:args:0:
1272
1273PyString_FromString:PyObject*::+1:
1274PyString_FromString:const char*:v::
1275
1276PyString_FromStringAndSize:PyObject*::+1:
1277PyString_FromStringAndSize:const char*:v::
1278PyString_FromStringAndSize:int:len::
1279
1280PyString_FromFormat:PyObject*::+1:
1281PyString_FromFormat:const char*:format::
1282PyString_FromFormat::...::
1283
1284PyString_FromFormatV:PyObject*::+1:
1285PyString_FromFormatV:const char*:format::
1286PyString_FromFormatV:va_list:vargs::
1287
1288PyString_GET_SIZE:int:::
1289PyString_GET_SIZE:PyObject*:string:0:
1290
1291PyString_InternFromString:PyObject*::+1:
1292PyString_InternFromString:const char*:v::
1293
1294PyString_InternInPlace:void:::
1295PyString_InternInPlace:PyObject**:string:+1:???
1296
1297PyString_Size:int:::
1298PyString_Size:PyObject*:string:0:
1299
1300PyString_Decode:PyObject*::+1:
1301PyString_Decode:const char*:s::
1302PyString_Decode:int:size::
1303PyString_Decode:const char*:encoding::
1304PyString_Decode:const char*:errors::
1305
1306PyString_Encode:PyObject*::+1:
1307PyString_Encode:const char*:s::
1308PyString_Encode:int:size::
1309PyString_Encode:const char*:encoding::
1310PyString_Encode:const char*:errors::
1311
1312PyString_AsEncodedString:PyObject*::+1:
1313PyString_AsEncodedString:PyObject*:str::
1314PyString_AsEncodedString:const char*:encoding::
1315PyString_AsEncodedString:const char*:errors::
1316
1317PySys_AddWarnOption:void:::
1318PySys_AddWarnOption:char*:s::
1319
1320PySys_GetFile:FILE*:::
1321PySys_GetFile:char*:name::
1322PySys_GetFile:FILE*:def::
1323
1324PySys_GetObject:PyObject*::0:
1325PySys_GetObject:char*:name::
1326
1327PySys_SetArgv:int:::
1328PySys_SetArgv:int:argc::
1329PySys_SetArgv:char**:argv::
1330
1331PySys_SetObject:int:::
1332PySys_SetObject:char*:name::
1333PySys_SetObject:PyObject*:v:+1:
1334
1335PySys_ResetWarnOptions:void:::
1336
1337PySys_WriteStdout:void:::
1338PySys_WriteStdout:char*:format::
1339
1340PySys_WriteStderr:void:::
1341PySys_WriteStderr:char*:format::
1342
1343PyThreadState_Clear:void:::
1344PyThreadState_Clear:PyThreadState*:tstate::
1345
1346PyThreadState_Delete:void:::
1347PyThreadState_Delete:PyThreadState*:tstate::
1348
1349PyThreadState_Get:PyThreadState*:::
1350
1351PyThreadState_GetDict:PyObject*::0:
1352
1353PyThreadState_New:PyThreadState*:::
1354PyThreadState_New:PyInterpreterState*:interp::
1355
1356PyThreadState_Swap:PyThreadState*:::
1357PyThreadState_Swap:PyThreadState*:tstate::
1358
1359PyTime_FromTime:PyObject*::+1:
1360PyTime_FromTime:int:hour::
1361PyTime_FromTime:int:minute::
1362PyTime_FromTime:int:second::
1363PyTime_FromTime:int:usecond::
1364
1365PyTuple_Check:int:::
1366PyTuple_Check:PyObject*:p:0:
1367
1368PyTuple_GET_ITEM:PyObject*::0:
1369PyTuple_GET_ITEM:PyTupleObject*:p:0:
1370PyTuple_GET_ITEM:int:pos::
1371
1372PyTuple_GetItem:PyObject*::0:
1373PyTuple_GetItem:PyTupleObject*:p:0:
1374PyTuple_GetItem:int:pos::
1375
1376PyTuple_GetSlice:PyObject*::+1:
1377PyTuple_GetSlice:PyTupleObject*:p:0:
1378PyTuple_GetSlice:int:low::
1379PyTuple_GetSlice:int:high::
1380
1381PyTuple_New:PyObject*::+1:
1382PyTuple_New:int:len::
1383
1384PyTuple_Pack:PyObject*::+1:
1385PyTuple_Pack:int:len::
1386PyTuple_Pack:PyObject*:...:0:
1387
1388PyTuple_SET_ITEM:void:::
1389PyTuple_SET_ITEM:PyTupleObject*:p:0:
1390PyTuple_SET_ITEM:int:pos::
1391PyTuple_SET_ITEM:PyObject*:o:0:
1392
1393PyTuple_SetItem:int:::
1394PyTuple_SetItem:PyTupleObject*:p:0:
1395PyTuple_SetItem:int:pos::
1396PyTuple_SetItem:PyObject*:o:0:
1397
1398PyTuple_Size:int:::
1399PyTuple_Size:PyTupleObject*:p:0:
1400
1401PyType_GenericAlloc:PyObject*::+1:
1402PyType_GenericAlloc:PyObject*:type:0:
1403PyType_GenericAlloc:int:nitems:0:
1404
1405PyType_GenericNew:PyObject*::+1:
1406PyType_GenericNew:PyObject*:type:0:
1407PyType_GenericNew:PyObject*:args:0:
1408PyType_GenericNew:PyObject*:kwds:0:
1409
1410PyUnicode_Check:int:::
1411PyUnicode_Check:PyObject*:o:0:
1412
1413PyUnicode_GET_SIZE:int:::
1414PyUnicode_GET_SIZE:PyObject*:o:0:
1415
1416PyUnicode_GET_DATA_SIZE:int:::
1417PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1418
1419PyUnicode_AS_UNICODE:Py_UNICODE*:::
1420PyUnicode_AS_UNICODE:PyObject*:o:0:
1421
1422PyUnicode_AS_DATA:const char*:::
1423PyUnicode_AS_DATA:PyObject*:o:0:
1424
1425Py_UNICODE_ISSPACE:int:::
1426Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1427
1428Py_UNICODE_ISLOWER:int:::
1429Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1430
1431Py_UNICODE_ISUPPER:int:::
1432Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1433
1434Py_UNICODE_ISTITLE:int:::
1435Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1436
1437Py_UNICODE_ISLINEBREAK:int:::
1438Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1439
1440Py_UNICODE_ISDECIMAL:int:::
1441Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1442
1443Py_UNICODE_ISDIGIT:int:::
1444Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1445
1446Py_UNICODE_ISNUMERIC:int:::
1447Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1448
1449Py_UNICODE_TOLOWER:Py_UNICODE:::
1450Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1451
1452Py_UNICODE_TOUPPER:Py_UNICODE:::
1453Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1454
1455Py_UNICODE_TOTITLE:Py_UNICODE:::
1456Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1457
1458Py_UNICODE_TODECIMAL:int:::
1459Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1460
1461Py_UNICODE_TODIGIT:int:::
1462Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1463
1464Py_UNICODE_TONUMERIC:double:::
1465Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1466
1467PyUnicode_FromUnicode:PyObject*::+1:
1468PyUnicode_FromUnicode:const Py_UNICODE*:u::
1469PyUnicode_FromUnicode:int:size::
1470
1471PyUnicode_AsUnicode:Py_UNICODE*:::
1472PyUnicode_AsUnicode:PyObject :*unicode:0:
1473
1474PyUnicode_GetSize:int:::
1475PyUnicode_GetSize:PyObject :*unicode:0:
1476
1477PyUnicode_FromObject:PyObject*::+1:
1478PyUnicode_FromObject:PyObject*:*obj:0:
1479
1480PyUnicode_FromEncodedObject:PyObject*::+1:
1481PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1482PyUnicode_FromEncodedObject:const char*:encoding::
1483PyUnicode_FromEncodedObject:const char*:errors::
1484
1485PyUnicode_FromFormat:PyObject*::+1:
1486PyUnicode_FromFormat:const char*:format::
1487PyUnicode_FromFormat::...::
1488
1489PyUnicode_FromFormatV:PyObject*::+1:
1490PyUnicode_FromFormatV:const char*:format::
1491PyUnicode_FromFormatV:va_list:vargs::
1492
1493PyUnicode_FromString:PyObject*::+1:
1494PyUnicode_FromString:const char*:u::
1495
1496PyUnicode_FromStringAndSize:PyObject*::+1:
1497PyUnicode_FromStringAndSize:const char*:u::
1498PyUnicode_FromStringAndSize:ssize_t:size::
1499
1500PyUnicode_FromWideChar:PyObject*::+1:
1501PyUnicode_FromWideChar:const wchar_t*:w::
1502PyUnicode_FromWideChar:int:size::
1503
1504PyUnicode_AsWideChar:int:::
1505PyUnicode_AsWideChar:PyObject*:*unicode:0:
1506PyUnicode_AsWideChar:wchar_t*:w::
1507PyUnicode_AsWideChar:int:size::
1508
1509PyUnicode_Decode:PyObject*::+1:
1510PyUnicode_Decode:const char*:s::
1511PyUnicode_Decode:int:size::
1512PyUnicode_Decode:const char*:encoding::
1513PyUnicode_Decode:const char*:errors::
1514
1515PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1516PyUnicode_DecodeUTF16Stateful:const char*:s::
1517PyUnicode_DecodeUTF16Stateful:int:size::
1518PyUnicode_DecodeUTF16Stateful:const char*:errors::
1519PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1520PyUnicode_DecodeUTF16Stateful:int*:consumed::
1521
1522PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1523PyUnicode_DecodeUTF8Stateful:const char*:s::
1524PyUnicode_DecodeUTF8Stateful:int:size::
1525PyUnicode_DecodeUTF8Stateful:const char*:errors::
1526PyUnicode_DecodeUTF8Stateful:int*:consumed::
1527
1528PyUnicode_Encode:PyObject*::+1:
1529PyUnicode_Encode:const Py_UNICODE*:s::
1530PyUnicode_Encode:int:size::
1531PyUnicode_Encode:const char*:encoding::
1532PyUnicode_Encode:const char*:errors::
1533
1534PyUnicode_AsEncodedString:PyObject*::+1:
1535PyUnicode_AsEncodedString:PyObject*:unicode::
1536PyUnicode_AsEncodedString:const char*:encoding::
1537PyUnicode_AsEncodedString:const char*:errors::
1538
1539PyUnicode_DecodeUTF8:PyObject*::+1:
1540PyUnicode_DecodeUTF8:const char*:s::
1541PyUnicode_DecodeUTF8:int:size::
1542PyUnicode_DecodeUTF8:const char*:errors::
1543
1544PyUnicode_EncodeUTF8:PyObject*::+1:
1545PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1546PyUnicode_EncodeUTF8:int:size::
1547PyUnicode_EncodeUTF8:const char*:errors::
1548
1549PyUnicode_AsUTF8String:PyObject*::+1:
1550PyUnicode_AsUTF8String:PyObject*:unicode::
1551
1552PyUnicode_DecodeUTF16:PyObject*::+1:
1553PyUnicode_DecodeUTF16:const char*:s::
1554PyUnicode_DecodeUTF16:int:size::
1555PyUnicode_DecodeUTF16:const char*:errors::
1556PyUnicode_DecodeUTF16:int*:byteorder::
1557
1558PyUnicode_EncodeUTF16:PyObject*::+1:
1559PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1560PyUnicode_EncodeUTF16:int:size::
1561PyUnicode_EncodeUTF16:const char*:errors::
1562PyUnicode_EncodeUTF16:int:byteorder::
1563
1564PyUnicode_AsUTF16String:PyObject*::+1:
1565PyUnicode_AsUTF16String:PyObject*:unicode::
1566
1567PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1568PyUnicode_DecodeUnicodeEscape:const char*:s::
1569PyUnicode_DecodeUnicodeEscape:int:size::
1570PyUnicode_DecodeUnicodeEscape:const char*:errors::
1571
1572PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1573PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1574PyUnicode_EncodeUnicodeEscape:int:size::
1575PyUnicode_EncodeUnicodeEscape:const char*:errors::
1576
1577PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1578PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1579
1580PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1581PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1582PyUnicode_DecodeRawUnicodeEscape:int:size::
1583PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1584
1585PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1586PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1587PyUnicode_EncodeRawUnicodeEscape:int:size::
1588PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1589
1590PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1591PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1592
1593PyUnicode_DecodeLatin1:PyObject*::+1:
1594PyUnicode_DecodeLatin1:const char*:s::
1595PyUnicode_DecodeLatin1:int:size::
1596PyUnicode_DecodeLatin1:const char*:errors::
1597
1598PyUnicode_EncodeLatin1:PyObject*::+1:
1599PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1600PyUnicode_EncodeLatin1:int:size::
1601PyUnicode_EncodeLatin1:const char*:errors::
1602
1603PyUnicode_AsLatin1String:PyObject*::+1:
1604PyUnicode_AsLatin1String:PyObject*:unicode::
1605
1606PyUnicode_DecodeASCII:PyObject*::+1:
1607PyUnicode_DecodeASCII:const char*:s::
1608PyUnicode_DecodeASCII:int:size::
1609PyUnicode_DecodeASCII:const char*:errors::
1610
1611PyUnicode_EncodeASCII:PyObject*::+1:
1612PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1613PyUnicode_EncodeASCII:int:size::
1614PyUnicode_EncodeASCII:const char*:errors::
1615
1616PyUnicode_AsASCIIString:PyObject*::+1:
1617PyUnicode_AsASCIIString:PyObject*:unicode::
1618
1619PyUnicode_DecodeCharmap:PyObject*::+1:
1620PyUnicode_DecodeCharmap:const char*:s::
1621PyUnicode_DecodeCharmap:int:size::
1622PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1623PyUnicode_DecodeCharmap:const char*:errors::
1624
1625PyUnicode_EncodeCharmap:PyObject*::+1:
1626PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1627PyUnicode_EncodeCharmap:int:size::
1628PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1629PyUnicode_EncodeCharmap:const char*:errors::
1630
1631PyUnicode_AsCharmapString:PyObject*::+1:
1632PyUnicode_AsCharmapString:PyObject*:unicode:0:
1633PyUnicode_AsCharmapString:PyObject*:mapping:0:
1634
1635PyUnicode_TranslateCharmap:PyObject*::+1:
1636PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1637PyUnicode_TranslateCharmap:int:size::
1638PyUnicode_TranslateCharmap:PyObject*:table:0:
1639PyUnicode_TranslateCharmap:const char*:errors::
1640
1641PyUnicode_DecodeMBCS:PyObject*::+1:
1642PyUnicode_DecodeMBCS:const char*:s::
1643PyUnicode_DecodeMBCS:int:size::
1644PyUnicode_DecodeMBCS:const char*:errors::
1645
1646PyUnicode_EncodeMBCS:PyObject*::+1:
1647PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1648PyUnicode_EncodeMBCS:int:size::
1649PyUnicode_EncodeMBCS:const char*:errors::
1650
1651PyUnicode_AsMBCSString:PyObject*::+1:
1652PyUnicode_AsMBCSString:PyObject*:unicode::
1653
1654PyUnicode_Concat:PyObject*::+1:
1655PyUnicode_Concat:PyObject*:left:0:
1656PyUnicode_Concat:PyObject*:right:0:
1657
1658PyUnicode_Split:PyObject*::+1:
1659PyUnicode_Split:PyObject*:left:0:
1660PyUnicode_Split:PyObject*:right:0:
1661PyUnicode_Split:int:maxsplit::
1662
1663PyUnicode_Splitlines:PyObject*::+1:
1664PyUnicode_Splitlines:PyObject*:s:0:
1665PyUnicode_Splitlines:int:maxsplit::
1666
1667PyUnicode_Translate:PyObject*::+1:
1668PyUnicode_Translate:PyObject*:str:0:
1669PyUnicode_Translate:PyObject*:table:0:
1670PyUnicode_Translate:const char*:errors::
1671
1672PyUnicode_Join:PyObject*::+1:
1673PyUnicode_Join:PyObject*:separator:0:
1674PyUnicode_Join:PyObject*:seq:0:
1675
1676PyUnicode_Tailmatch:int:::
1677PyUnicode_Tailmatch:PyObject*:str:0:
1678PyUnicode_Tailmatch:PyObject*:substr:0:
1679PyUnicode_Tailmatch:int:start::
1680PyUnicode_Tailmatch:int:end::
1681PyUnicode_Tailmatch:int:direction::
1682
1683PyUnicode_Find:int:::
1684PyUnicode_Find:PyObject*:str:0:
1685PyUnicode_Find:PyObject*:substr:0:
1686PyUnicode_Find:int:start::
1687PyUnicode_Find:int:end::
1688PyUnicode_Find:int:direction::
1689
1690PyUnicode_Count:int:::
1691PyUnicode_Count:PyObject*:str:0:
1692PyUnicode_Count:PyObject*:substr:0:
1693PyUnicode_Count:int:start::
1694PyUnicode_Count:int:end::
1695
1696PyUnicode_Replace:PyObject*::+1:
1697PyUnicode_Replace:PyObject*:str:0:
1698PyUnicode_Replace:PyObject*:substr:0:
1699PyUnicode_Replace:PyObject*:replstr:0:
1700PyUnicode_Replace:int:maxcount::
1701
1702PyUnicode_Compare:int:::
1703PyUnicode_Compare:PyObject*:left:0:
1704PyUnicode_Compare:PyObject*:right:0:
1705
1706PyUnicode_Format:PyObject*::+1:
1707PyUnicode_Format:PyObject*:format:0:
1708PyUnicode_Format:PyObject*:args:0:
1709
1710PyUnicode_Contains:int:::
1711PyUnicode_Contains:PyObject*:container:0:
1712PyUnicode_Contains:PyObject*:element:0:
1713
1714PyWeakref_GET_OBJECT:PyObject*::0:
1715PyWeakref_GET_OBJECT:PyObject*:ref:0:
1716
1717PyWeakref_GetObject:PyObject*::0:
1718PyWeakref_GetObject:PyObject*:ref:0:
1719
1720PyWeakref_NewProxy:PyObject*::+1:
1721PyWeakref_NewProxy:PyObject*:ob:0:
1722PyWeakref_NewProxy:PyObject*:callback:0:
1723
1724PyWeakref_NewRef:PyObject*::+1:
1725PyWeakref_NewRef:PyObject*:ob:0:
1726PyWeakref_NewRef:PyObject*:callback:0:
1727
1728PyWrapper_New:PyObject*::+1:
1729PyWrapper_New:PyObject*:d:0:
1730PyWrapper_New:PyObject*:self:0:
1731
1732Py_AtExit:int:::
1733Py_AtExit:void (*)():func::
1734
1735Py_BuildValue:PyObject*::+1:
1736Py_BuildValue:char*:format::
1737
1738Py_CompileString:PyObject*::+1:
1739Py_CompileString:char*:str::
1740Py_CompileString:char*:filename::
1741Py_CompileString:int:start::
1742
1743Py_CompileStringFlags:PyObject*::+1:
1744Py_CompileStringFlags:char*:str::
1745Py_CompileStringFlags:char*:filename::
1746Py_CompileStringFlags:int:start::
1747Py_CompileStringFlags:PyCompilerFlags*:flags::
1748
1749Py_DECREF:void:::
1750Py_DECREF:PyObject*:o:-1:
1751
1752Py_EndInterpreter:void:::
1753Py_EndInterpreter:PyThreadState*:tstate::
1754
1755Py_Exit:void:::
1756Py_Exit:int:status::
1757
1758Py_FatalError:void:::
1759Py_FatalError:char*:message::
1760
1761Py_FdIsInteractive:int:::
1762Py_FdIsInteractive:FILE*:fp::
1763Py_FdIsInteractive:char*:filename::
1764
1765Py_Finalize:void:::
1766
1767Py_FindMethod:PyObject*::+1:
1768Py_FindMethod:PyMethodDef[]:methods::
1769Py_FindMethod:PyObject*:self:+1:
1770Py_FindMethod:char*:name::
1771
1772Py_GetBuildInfoconst:char*:::
1773
1774Py_GetCompilerconst:char*:::
1775
1776Py_GetCopyrightconst:char*:::
1777
1778Py_GetExecPrefix:char*:::
1779
1780Py_GetPath:char*:::
1781
1782Py_GetPlatformconst:char*:::
1783
1784Py_GetPrefix:char*:::
1785
1786Py_GetProgramFullPath:char*:::
1787
1788Py_GetProgramName:char*:::
1789
1790Py_GetVersionconst:char*:::
1791
1792Py_INCREF:void:::
1793Py_INCREF:PyObject*:o:+1:
1794
1795Py_Initialize:void:::
1796
1797Py_IsInitialized:int:::
1798
1799Py_NewInterpreter:PyThreadState*:::
1800
1801Py_SetProgramName:void:::
1802Py_SetProgramName:char*:name::
1803
1804Py_XDECREF:void:::
1805Py_XDECREF:PyObject*:o:-1:if o is not NULL
1806
1807Py_XINCREF:void:::
1808Py_XINCREF:PyObject*:o:+1:if o is not NULL
1809
1810_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1811_PyImport_FindExtension:char*:::
1812_PyImport_FindExtension:char*:::
1813
1814_PyImport_Fini:void:::
1815
1816_PyImport_FixupExtension:PyObject*:::???
1817_PyImport_FixupExtension:char*:::
1818_PyImport_FixupExtension:char*:::
1819
1820_PyImport_Init:void:::
1821
1822_PyObject_Del:void:::
1823_PyObject_Del:PyObject*:op:0:
1824
1825_PyObject_New:PyObject*::+1:
1826_PyObject_New:PyTypeObject*:type:0:
1827
1828_PyObject_NewVar:PyObject*::+1:
1829_PyObject_NewVar:PyTypeObject*:type:0:
1830_PyObject_NewVar:int:size::
1831
1832_PyString_Resize:int:::
1833_PyString_Resize:PyObject**:string:+1:
1834_PyString_Resize:int:newsize::
1835
1836_PyTuple_Resize:int:::
1837_PyTuple_Resize:PyTupleObject**:p:+1:
1838_PyTuple_Resize:int:new::
1839
1840_Py_c_diff:Py_complex:::
1841_Py_c_diff:Py_complex:left::
1842_Py_c_diff:Py_complex:right::
1843
1844_Py_c_neg:Py_complex:::
1845_Py_c_neg:Py_complex:complex::
1846
1847_Py_c_pow:Py_complex:::
1848_Py_c_pow:Py_complex:num::
1849_Py_c_pow:Py_complex:exp::
1850
1851_Py_c_prod:Py_complex:::
1852_Py_c_prod:Py_complex:left::
1853_Py_c_prod:Py_complex:right::
1854
1855_Py_c_quot:Py_complex:::
1856_Py_c_quot:Py_complex:dividend::
1857_Py_c_quot:Py_complex:divisor::
1858
1859_Py_c_sum:Py_complex:::
1860_Py_c_sum:Py_complex:left::
1861_Py_c_sum:Py_complex:right::
1862