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