blob: fa4fe4f8d753837079d9bd4398d3af199afaf0d6 [file] [log] [blame]
Jeremy Hyltona12c7a72000-03-30 22:27:31 +00001# Created by Skip Montanaro <skip@mojam.com>.
Fred Drake805bf1b1999-10-20 16:03:38 +00002
Fred Drake7b7dc6b1999-10-20 15:06:24 +00003# 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
Fred Drake83945952000-04-10 18:29:21 +000019# 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.
Fred Drake7b7dc6b1999-10-20 15:06:24 +000023
Guido van Rossum9a18a7e2000-12-19 03:53:57 +000024# 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
Fred Drake7b7dc6b1999-10-20 15:06:24 +000031# The parameter names are as they appear in the API manual, not the source
32# code.
33
Fred Drakeeb725cd2000-04-03 15:06:40 +000034PyBuffer_FromObject:PyObject*::+1:
35PyBuffer_FromObject:PyObject*:base:+1:
36PyBuffer_FromObject:int:offset::
37PyBuffer_FromObject:int:size::
38
39PyBuffer_FromReadWriteObject:PyObject*::+1:
40PyBuffer_FromReadWriteObject:PyObject*:base:+1:
41PyBuffer_FromReadWriteObject:int:offset::
42PyBuffer_FromReadWriteObject:int:size::
43
44PyBuffer_FromMemory:PyObject*::+1:
45PyBuffer_FromMemory:void*:ptr::
46PyBuffer_FromMemory:int:size::
47
48PyBuffer_FromReadWriteMemory:PyObject*::+1:
49PyBuffer_FromReadWriteMemory:void*:ptr::
50PyBuffer_FromReadWriteMemory:int:size::
51
52PyBuffer_New:PyObject*::+1:
53PyBuffer_New:int:size::
54
Fred Drake7b7dc6b1999-10-20 15:06:24 +000055PyCObject_AsVoidPtr:void*:::
56PyCObject_AsVoidPtr:PyObject*:self:0:
57
58PyCObject_FromVoidPtr:PyObject*::+1:
59PyCObject_FromVoidPtr:void*:cobj::
60PyCObject_FromVoidPtr::void (* destr)(void* )::
61
62PyCObject_FromVoidPtrAndDesc:PyObject*::+1:
63PyCObject_FromVoidPtrAndDesc:void*:cobj::
64PyCObject_FromVoidPtrAndDesc:void*:desc::
65PyCObject_FromVoidPtrAndDesc:void(*)(void*,void*):destr::
66
67PyCObject_GetDesc:void*:::
68PyCObject_GetDesc:PyObject*:self:0:
69
Fred Draked61d0d32001-09-23 02:05:26 +000070PyCallIter_New:PyObject*::+1:
71PyCallIter_New:PyObject*:callable::
72PyCallIter_New:PyObject*:sentinel::
73
Fred Drake7b7dc6b1999-10-20 15:06:24 +000074PyCallable_Check:int:::
75PyCallable_Check:PyObject*:o:0:
76
77PyComplex_AsCComplex:Py_complex:::
78PyComplex_AsCComplex:PyObject*:op:0:
79
80PyComplex_Check:int:::
81PyComplex_Check:PyObject*:p:0:
82
83PyComplex_FromCComplex:PyObject*::+1:
84PyComplex_FromCComplex::Py_complex v::
85
86PyComplex_FromDoubles:PyObject*::+1:
87PyComplex_FromDoubles::double real::
88PyComplex_FromDoubles::double imag::
89
90PyComplex_ImagAsDouble:double:::
91PyComplex_ImagAsDouble:PyObject*:op:0:
92
93PyComplex_RealAsDouble:double:::
94PyComplex_RealAsDouble:PyObject*:op:0:
95
96PyDict_Check:int:::
97PyDict_Check:PyObject*:p:0:
98
99PyDict_Clear:void:::
Fred Drake81473b12001-01-08 05:53:53 +0000100PyDict_Clear:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000101
102PyDict_DelItem:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000103PyDict_DelItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000104PyDict_DelItem:PyObject*:key:0:
105
106PyDict_DelItemString:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000107PyDict_DelItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000108PyDict_DelItemString:char*:key::
109
Fred Drake805bf1b1999-10-20 16:03:38 +0000110PyDict_GetItem:PyObject*::0:0
Fred Drake81473b12001-01-08 05:53:53 +0000111PyDict_GetItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000112PyDict_GetItem:PyObject*:key:0:
113
Fred Drake805bf1b1999-10-20 16:03:38 +0000114PyDict_GetItemString:PyObject*::0:
Fred Drake81473b12001-01-08 05:53:53 +0000115PyDict_GetItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000116PyDict_GetItemString:char*:key::
117
118PyDict_Items:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000119PyDict_Items:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000120
121PyDict_Keys:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000122PyDict_Keys:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000123
124PyDict_New:PyObject*::+1:
125
Jeremy Hyltona12c7a72000-03-30 22:27:31 +0000126PyDict_Copy:PyObject*::+1:
127PyDict_Copy:PyObject*:p:0:
128
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000129PyDict_Next:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000130PyDict_Next:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000131PyDict_Next:int:ppos::
132PyDict_Next:PyObject**:pkey:0:
133PyDict_Next:PyObject**:pvalue:0:
134
135PyDict_SetItem:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000136PyDict_SetItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000137PyDict_SetItem:PyObject*:key:+1:
138PyDict_SetItem:PyObject*:val:+1:
139
140PyDict_SetItemString:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000141PyDict_SetItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000142PyDict_SetItemString:char*:key::
143PyDict_SetItemString:PyObject*:val:+1:
144
145PyDict_Size:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000146PyDict_Size:PyObject*:p::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000147
148PyDict_Values:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000149PyDict_Values:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000150
151PyErr_BadArgument:int:::
152
153PyErr_BadInternalCall:void:::
154
155PyErr_CheckSignals:int:::
156
157PyErr_Clear:void:::
158
159PyErr_ExceptionMatches:int:::
160PyErr_ExceptionMatches:PyObject*:exc:0:
161
162PyErr_Fetch:void:::
163PyErr_Fetch:PyObject**:ptype:0:
164PyErr_Fetch:PyObject**:pvalue:0:
165PyErr_Fetch:PyObject**:ptraceback:0:
166
167PyErr_GivenExceptionMatches:int:::
168PyErr_GivenExceptionMatches:PyObject*:given:0:
169PyErr_GivenExceptionMatches:PyObject*:exc:0:
170
171PyErr_NewException:PyObject*::+1:
172PyErr_NewException:char*:name::
173PyErr_NewException:PyObject*:base:0:
174PyErr_NewException:PyObject*:dict:0:
175
Fred Drakedb2764d2000-04-10 18:25:09 +0000176PyErr_NoMemory:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000177
178PyErr_NormalizeException:void:::
179PyErr_NormalizeException:PyObject**:exc::???
180PyErr_NormalizeException:PyObject**:val::???
181PyErr_NormalizeException:PyObject**:tb::???
182
183PyErr_Occurred:PyObject*::0:
184
185PyErr_Print:void:::
186
187PyErr_Restore:void:::
Fred Drake34c391d2000-08-15 04:36:16 +0000188PyErr_Restore:PyObject*:type:-1:
189PyErr_Restore:PyObject*:value:-1:
190PyErr_Restore:PyObject*:traceback:-1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000191
Fred Drakedb2764d2000-04-10 18:25:09 +0000192PyErr_SetFromErrno:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000193PyErr_SetFromErrno:PyObject*:type:0:
194
Fred Drake9c75ff72001-09-06 18:06:46 +0000195PyErr_SetFromErrnoWithFilename:PyObject*::null:
196PyErr_SetFromErrnoWithFilename:PyObject*:type:0:
197PyErr_SetFromErrnoWithFilename:char*:filename::
198
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000199PyErr_SetInterrupt:void:::
200
201PyErr_SetNone:void:::
202PyErr_SetNone:PyObject*:type:+1:
203
204PyErr_SetObject:void:::
205PyErr_SetObject:PyObject*:type:+1:
206PyErr_SetObject:PyObject*:value:+1:
207
208PyErr_SetString:void:::
209PyErr_SetString:PyObject*:type:+1:
210PyErr_SetString:char*:message::
211
Jeremy Hylton98605b52000-04-10 18:40:57 +0000212PyErr_Format:PyObject*::null:
213PyErr_Format:PyObject*:exception:+1:
214PyErr_Format:char*:format::
215PyErr_Format::...::
216
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000217PyErr_Warn:int:::
Guido van Rossume22e4b22000-12-19 03:58:11 +0000218PyErr_Warn:PyObject*:category:0:
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000219PyErr_Warn:char*:message::
220
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000221PyEval_AcquireLock:void:::
222
223PyEval_AcquireThread:void:::
224PyEval_AcquireThread:PyThreadState*:tstate::
225
226PyEval_InitThreads:void:::
227
228PyEval_ReleaseLock:void:::
229
230PyEval_ReleaseThread:void:::
231PyEval_ReleaseThread:PyThreadState*:tstate::
232
233PyEval_RestoreThread:void:::
234PyEval_RestoreThread:PyThreadState*:tstate::
235
236PyEval_SaveThread:PyThreadState*:::
237
Fred Drake4ca744c2000-08-12 03:39:47 +0000238PyEval_EvalCode:PyObject*::+1:
239PyEval_EvalCode:PyCodeObject*:co:0:
240PyEval_EvalCode:PyObject*:globals:0:
241PyEval_EvalCode:PyObject*:locals:0:
242
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000243PyFile_AsFile:FILE*:::
244PyFile_AsFile:PyFileObject*:p:0:
245
246PyFile_Check:int:::
247PyFile_Check:PyObject*:p:0:
248
249PyFile_FromFile:PyObject*::+1:
250PyFile_FromFile:FILE*:fp::
251PyFile_FromFile:char*:name::
252PyFile_FromFile:char*:mode::
253PyFile_FromFile:int(*:close)::
254
255PyFile_FromString:PyObject*::+1:
256PyFile_FromString:char*:name::
257PyFile_FromString:char*:mode::
258
259PyFile_GetLine:PyObject*::+1:
260PyFile_GetLine:PyObject*:p::
261PyFile_GetLine:int:n::
262
263PyFile_Name:PyObject*::0:
264PyFile_Name:PyObject*:p:0:
265
266PyFile_SetBufSize:void:::
267PyFile_SetBufSize:PyFileObject*:p:0:
268PyFile_SetBufSize:int:n::
269
270PyFile_SoftSpace:int:::
271PyFile_SoftSpace:PyFileObject*:p:0:
272PyFile_SoftSpace:int:newflag::
273
274PyFile_WriteObject:int:::
275PyFile_WriteObject:PyObject*:obj:0:
276PyFile_WriteObject:PyFileObject*:p:0:
277PyFile_WriteObject:int:flags::
278
279PyFile_WriteString:int:::
280PyFile_WriteString:char*:s::
281PyFile_WriteString:PyFileObject*:p:0:
282PyFile_WriteString:int:flags::
283
284PyFloat_AS_DOUBLE:double:::
285PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
286
287PyFloat_AsDouble:double:::
288PyFloat_AsDouble:PyObject*:pyfloat:0:
289
290PyFloat_Check:int:::
291PyFloat_Check:PyObject*:p:0:
292
293PyFloat_FromDouble:PyObject*::+1:
294PyFloat_FromDouble:double:v::
295
Fred Drakeee814bf2000-11-28 22:34:32 +0000296Py_InitModule:PyObject*::0:
297Py_InitModule:name:char*::
298Py_InitModule:methods:PyMethodDef[]::
299
300Py_InitModule3:PyObject*::0:
301Py_InitModule3:name:char*::
302Py_InitModule3:methods:PyMethodDef[]::
303Py_InitModule3:doc:char*::
304
305Py_InitModule4:PyObject*::0:
306Py_InitModule4:name:char*::
307Py_InitModule4:methods:PyMethodDef[]::
308Py_InitModule4:doc:char*::
309Py_InitModule4:self:PyObject*::
310Py_InitModule4:apiver:int::usually provided by Py_InitModule or Py_InitModule3
311
Fred Drake805bf1b1999-10-20 16:03:38 +0000312PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000313PyImport_AddModule:char*:name::
314
315PyImport_Cleanup:void:::
316
317PyImport_ExecCodeModule:PyObject*::+1:
318PyImport_ExecCodeModule:char*:name::
319PyImport_ExecCodeModule:PyObject*:co:0:
320
321PyImport_GetMagicNumber:long:::
322
323PyImport_GetModuleDict:PyObject*::0:
324
325PyImport_Import:PyObject*::+1:
326PyImport_Import:PyObject*:name:0:
327
328PyImport_ImportFrozenModule:int:::
329PyImport_ImportFrozenModule:char*:::
330
Fred Drakeeb725cd2000-04-03 15:06:40 +0000331PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000332PyImport_ImportModule:char*:name::
333
Fred Drakeeb725cd2000-04-03 15:06:40 +0000334PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000335PyImport_ImportModuleEx:char*:name::
336PyImport_ImportModuleEx:PyObject*:globals:0:???
337PyImport_ImportModuleEx:PyObject*:locals:0:???
338PyImport_ImportModuleEx:PyObject*:fromlist:0:???
339
Fred Drakeeb725cd2000-04-03 15:06:40 +0000340PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000341PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000342
Fred Drake5838d0f2001-01-28 06:39:35 +0000343PyInstance_New:PyObject*::+1:
344PyInstance_New:PyObject*:klass:+1:
345PyInstance_New:PyObject*:arg:0:
346PyInstance_New:PyObject*:kw:0:
347
348PyInstance_NewRaw:PyObject*::+1:
349PyInstance_NewRaw:PyObject*:klass:+1:
350PyInstance_NewRaw:PyObject*:dict:+1:
351
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000352PyInt_AS_LONG:long:::
353PyInt_AS_LONG:PyIntObject*:io:0:
354
355PyInt_AsLong:long:::
356PyInt_AsLong:PyObject*:io:0:
357
358PyInt_Check:int:::
Fred Drake9c75ff72001-09-06 18:06:46 +0000359PyInt_Check:PyObject*:op:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000360
361PyInt_FromLong:PyObject*::+1:
362PyInt_FromLong:long:ival::
363
364PyInt_GetMax:long:::
365
366PyInterpreterState_Clear:void:::
367PyInterpreterState_Clear:PyInterpreterState*:interp::
368
369PyInterpreterState_Delete:void:::
370PyInterpreterState_Delete:PyInterpreterState*:interp::
371
372PyInterpreterState_New:PyInterpreterState*:::
373
Fred Drakeb2625eb2001-05-29 15:34:06 +0000374PyIter_Check:int:o:0:
375
376PyIter_Next:PyObject*::+1:
377PyIter_Next:PyObject*:o:0:
378
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000379PyList_Append:int:::
380PyList_Append:PyObject*:list:0:
381PyList_Append:PyObject*:item:+1:
382
383PyList_AsTuple:PyObject*::+1:
384PyList_AsTuple:PyObject*:list:0:
385
386PyList_Check:int:::
387PyList_Check:PyObject*:p:0:
388
389PyList_GET_ITEM:PyObject*::0:
390PyList_GET_ITEM:PyObject*:list:0:
391PyList_GET_ITEM:int:i:0:
392
393PyList_GET_SIZE:int:::
394PyList_GET_SIZE:PyObject*:list:0:
395
396PyList_GetItem:PyObject*::0:
397PyList_GetItem:PyObject*:list:0:
398PyList_GetItem:int:index::
399
400PyList_GetSlice:PyObject*::+1:
401PyList_GetSlice:PyObject*:list:0:
402PyList_GetSlice:int:low::
403PyList_GetSlice:int:high::
404
405PyList_Insert:int:::
406PyList_Insert:PyObject*:list:0:
407PyList_Insert:int:index::
408PyList_Insert:PyObject*:item:+1:
409
410PyList_New:PyObject*::+1:
411PyList_New:int:len::
412
413PyList_Reverse:int:::
414PyList_Reverse:PyObject*:list:0:
415
Fred Draked8548312001-07-10 16:19:13 +0000416PyList_SET_ITEM:void:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000417PyList_SET_ITEM:PyObject*:list:0:
418PyList_SET_ITEM:int:i::
419PyList_SET_ITEM:PyObject*:o:0:
420
421PyList_SetItem:int:::
422PyList_SetItem:PyObject*:list:0:
423PyList_SetItem:int:index::
424PyList_SetItem:PyObject*:item:0:
425
426PyList_SetSlice:int:::
427PyList_SetSlice:PyObject*:list:0:
428PyList_SetSlice:int:low::
429PyList_SetSlice:int:high::
430PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
431
432PyList_Size:int:::
433PyList_Size:PyObject*:list:0:
434
435PyList_Sort:int:::
436PyList_Sort:PyObject*:list:0:
437
438PyLong_AsDouble:double:::
439PyLong_AsDouble:PyObject*:pylong:0:
440
441PyLong_AsLong:long:::
442PyLong_AsLong:PyObject*:pylong:0:
443
444PyLong_AsUnsignedLong:unsigned long:::
445PyLong_AsUnsignedLong:PyObject*:pylong:0:
446
447PyLong_Check:int:::
448PyLong_Check:PyObject*:p:0:
449
450PyLong_FromDouble:PyObject*::+1:
451PyLong_FromDouble:double:v::
452
453PyLong_FromLong:PyObject*::+1:
454PyLong_FromLong:long:v::
455
Fred Drakef47d8ef2001-09-20 19:18:52 +0000456PyLong_FromLongLong:PyObject*::+1:
457PyLong_FromLongLong:long long:v::
458
459PyLong_FromUnsignedLongLong:PyObject*::+1:
460PyLong_FromUnsignedLongLong:unsigned long long:v::
461
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000462PyLong_FromString:PyObject*::+1:
463PyLong_FromString:char*:str::
464PyLong_FromString:char**:pend::
465PyLong_FromString:int:base::
466
Fred Drakef47d8ef2001-09-20 19:18:52 +0000467PyLong_FromUnicode:PyObject*::+1:
468PyLong_FromUnicode:Py_UNICODE:u::
469PyLong_FromUnicode:int:length::
470PyLong_FromUnicode:int:base::
471
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000472PyLong_FromUnsignedLong:PyObject*::+1:
473PyLong_FromUnsignedLong:unsignedlong:v::
474
Fred Drakef47d8ef2001-09-20 19:18:52 +0000475PyLong_FromVoidPtr:PyObject*::+1:
476PyLong_FromVoidPtr:void*:p::
477
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000478PyMapping_Check:int:::
479PyMapping_Check:PyObject*:o:0:
480
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000481PyMapping_DelItem:int:::
482PyMapping_DelItem:PyObject*:o:0:
483PyMapping_DelItem:PyObject*:key:0:
484
485PyMapping_DelItemString:int:::
486PyMapping_DelItemString:PyObject*:o:0:
487PyMapping_DelItemString:char*:key::
488
489PyMapping_GetItemString:PyObject*::+1:
490PyMapping_GetItemString:PyObject*:o:0:
491PyMapping_GetItemString:char*:key::
492
493PyMapping_HasKey:int:::
494PyMapping_HasKey:PyObject*:o:0:
495PyMapping_HasKey:PyObject*:key::
496
497PyMapping_HasKeyString:int:::
498PyMapping_HasKeyString:PyObject*:o:0:
499PyMapping_HasKeyString:char*:key::
500
501PyMapping_Items:PyObject*::+1:
502PyMapping_Items:PyObject*:o:0:
503
504PyMapping_Keys:PyObject*::+1:
505PyMapping_Keys:PyObject*:o:0:
506
507PyMapping_Length:int:::
508PyMapping_Length:PyObject*:o:0:
509
510PyMapping_SetItemString:int:::
511PyMapping_SetItemString:PyObject*:o:0:
512PyMapping_SetItemString:char*:key::
513PyMapping_SetItemString:PyObject*:v:+1:
514
515PyMapping_Values:PyObject*::+1:
516PyMapping_Values:PyObject*:o:0:
517
Fred Drake9c75ff72001-09-06 18:06:46 +0000518PyMethod_Class:PyObject*::0:
519PyMethod_Class:PyObject*:im:0:
520
521PyMethod_Function:PyObject*::0:
522PyMethod_Function:PyObject*:im:0:
523
524PyMethod_GET_CLASS:PyObject*::0:
525PyMethod_GET_CLASS:PyObject*:im:0:
526
527PyMethod_GET_FUNCTION:PyObject*::0:
528PyMethod_GET_FUNCTION:PyObject*:im:0:
529
530PyMethod_GET_SELF:PyObject*::0:
531PyMethod_GET_SELF:PyObject*:im:0:
532
533PyMethod_New:PyObject*::+1:
534PyMethod_New:PyObject*:func:0:
535PyMethod_New:PyObject*:self:0:
536PyMethod_New:PyObject*:class:0:
537
538PyMethod_Self:PyObject*::0:
539PyMethod_Self:PyObject*:im:0:
540
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000541PyModule_GetDict:PyObject*::0:
542PyModule_GetDict::PyObject* module:0:
543
544PyModule_GetFilename:char*:::
545PyModule_GetFilename:PyObject*:module:0:
546
547PyModule_GetName:char*:::
548PyModule_GetName:PyObject*:module:0:
549
550PyModule_New:PyObject*::+1:
551PyModule_New::char* name::
552
553PyNumber_Absolute:PyObject*::+1:
554PyNumber_Absolute:PyObject*:o:0:
555
556PyNumber_Add:PyObject*::+1:
557PyNumber_Add:PyObject*:o1:0:
558PyNumber_Add:PyObject*:o2:0:
559
560PyNumber_And:PyObject*::+1:
561PyNumber_And:PyObject*:o1:0:
562PyNumber_And:PyObject*:o2:0:
563
564PyNumber_Check:PyObject*:o:0:
565PyNumber_Check:int:::
566
567PyNumber_Coerce:int:::
568PyNumber_Coerce:PyObject**:p1:+1:
569PyNumber_Coerce:PyObject**:p2:+1:
570
571PyNumber_Divide:PyObject*::+1:
572PyNumber_Divide:PyObject*:o1:0:
573PyNumber_Divide:PyObject*:o2:0:
574
575PyNumber_Divmod:PyObject*::+1:
576PyNumber_Divmod:PyObject*:o1:0:
577PyNumber_Divmod:PyObject*:o2:0:
578
579PyNumber_Float:PyObject*::+1:
580PyNumber_Float:PyObject*:o:0:
581
Fred Drake03590c62001-08-08 18:50:18 +0000582PyNumber_FloorDivide:PyObject*::+1:
583PyNumber_FloorDivide:PyObject*:v:0:
584PyNumber_FloorDivide:PyObject*:w:0:
585
Fred Drake1fa93652000-09-22 18:19:37 +0000586PyNumber_InPlaceAdd:PyObject*::+1:
587PyNumber_InPlaceAdd:PyObject*:v:0:
588PyNumber_InPlaceAdd:PyObject*:w:0:
589
590PyNumber_InPlaceAnd:PyObject*::+1:
591PyNumber_InPlaceAnd:PyObject*:v:0:
592PyNumber_InPlaceAnd:PyObject*:w:0:
593
594PyNumber_InPlaceDivide:PyObject*::+1:
595PyNumber_InPlaceDivide:PyObject*:v:0:
596PyNumber_InPlaceDivide:PyObject*:w:0:
597
Fred Drake03590c62001-08-08 18:50:18 +0000598PyNumber_InPlaceFloorDivide:PyObject*::+1:
599PyNumber_InPlaceFloorDivide:PyObject*:v:0:
600PyNumber_InPlaceFloorDivide:PyObject*:w:0:
601
Fred Drake1fa93652000-09-22 18:19:37 +0000602PyNumber_InPlaceLshift:PyObject*::+1:
603PyNumber_InPlaceLshift:PyObject*:v:0:
604PyNumber_InPlaceLshift:PyObject*:w:0:
605
606PyNumber_InPlaceMultiply:PyObject*::+1:
607PyNumber_InPlaceMultiply:PyObject*:v:0:
608PyNumber_InPlaceMultiply:PyObject*:w:0:
609
610PyNumber_InPlaceOr:PyObject*::+1:
611PyNumber_InPlaceOr:PyObject*:v:0:
612PyNumber_InPlaceOr:PyObject*:w:0:
613
614PyNumber_InPlacePower:PyObject*::+1:
615PyNumber_InPlacePower:PyObject*:v:0:
616PyNumber_InPlacePower:PyObject*:w:0:
617PyNumber_InPlacePower:PyObject*:z:0:
618
619PyNumber_InPlaceRemainder:PyObject*::+1:
620PyNumber_InPlaceRemainder:PyObject*:v:0:
621PyNumber_InPlaceRemainder:PyObject*:w:0:
622
623PyNumber_InPlaceRshift:PyObject*::+1:
624PyNumber_InPlaceRshift:PyObject*:v:0:
625PyNumber_InPlaceRshift:PyObject*:w:0:
626
627PyNumber_InPlaceSubtract:PyObject*::+1:
628PyNumber_InPlaceSubtract:PyObject*:v:0:
629PyNumber_InPlaceSubtract:PyObject*:w:0:
630
Fred Drake03590c62001-08-08 18:50:18 +0000631PyNumber_InPlaceTrueDivide:PyObject*::+1:
632PyNumber_InPlaceTrueDivide:PyObject*:v:0:
633PyNumber_InPlaceTrueDivide:PyObject*:w:0:
634
Fred Drake1fa93652000-09-22 18:19:37 +0000635PyNumber_InPlaceXor:PyObject*::+1:
636PyNumber_InPlaceXor:PyObject*:v:0:
637PyNumber_InPlaceXor:PyObject*:w:0:
638
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000639PyNumber_Int:PyObject*::+1:
640PyNumber_Int:PyObject*:o:0:
641
642PyNumber_Invert:PyObject*::+1:
643PyNumber_Invert:PyObject*:o:0:
644
645PyNumber_Long:PyObject*::+1:
646PyNumber_Long:PyObject*:o:0:
647
648PyNumber_Lshift:PyObject*::+1:
649PyNumber_Lshift:PyObject*:o1:0:
650PyNumber_Lshift:PyObject*:o2:0:
651
652PyNumber_Multiply:PyObject*::+1:
653PyNumber_Multiply:PyObject*:o1:0:
654PyNumber_Multiply:PyObject*:o2:0:
655
656PyNumber_Negative:PyObject*::+1:
657PyNumber_Negative:PyObject*:o:0:
658
659PyNumber_Or:PyObject*::+1:
660PyNumber_Or:PyObject*:o1:0:
661PyNumber_Or:PyObject*:o2:0:
662
663PyNumber_Positive:PyObject*::+1:
664PyNumber_Positive:PyObject*:o:0:
665
666PyNumber_Power:PyObject*::+1:
667PyNumber_Power:PyObject*:o1:0:
668PyNumber_Power:PyObject*:o2:0:
669PyNumber_Power:PyObject*:o3:0:
670
671PyNumber_Remainder:PyObject*::+1:
672PyNumber_Remainder:PyObject*:o1:0:
673PyNumber_Remainder:PyObject*:o2:0:
674
675PyNumber_Rshift:PyObject*::+1:
676PyNumber_Rshift:PyObject*:o1:0:
677PyNumber_Rshift:PyObject*:o2:0:
678
679PyNumber_Subtract:PyObject*::+1:
680PyNumber_Subtract:PyObject*:o1:0:
681PyNumber_Subtract:PyObject*:o2:0:
682
Fred Drake03590c62001-08-08 18:50:18 +0000683PyNumber_TrueDivide:PyObject*::+1:
684PyNumber_TrueDivide:PyObject*:v:0:
685PyNumber_TrueDivide:PyObject*:w:0:
686
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000687PyNumber_Xor:PyObject*::+1:
688PyNumber_Xor:PyObject*:o1:0:
689PyNumber_Xor:PyObject*:o2:0:
690
691PyOS_GetLastModificationTime:long:::
692PyOS_GetLastModificationTime:char*:filename::
693
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000694PyObject_AsFileDescriptor:int:::
695PyObject_AsFileDescriptor:PyObject*:o:0:
696
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000697PyObject_CallFunction:PyObject*::+1:
698PyObject_CallFunction:PyObject*:callable_object:0:
699PyObject_CallFunction:char*:format::
700PyObject_CallFunction::...::
701
702PyObject_CallMethod:PyObject*::+1:
703PyObject_CallMethod:PyObject*:o:0:
704PyObject_CallMethod:char*:m::
705PyObject_CallMethod:char*:format::
706PyObject_CallMethod::...::
707
708PyObject_CallObject:PyObject*::+1:
709PyObject_CallObject:PyObject*:callable_object:0:
710PyObject_CallObject:PyObject*:args:0:
711
712PyObject_Cmp:int:::
713PyObject_Cmp:PyObject*:o1:0:
714PyObject_Cmp:PyObject*:o2:0:
715PyObject_Cmp:int*:result::
716
717PyObject_Compare:int:::
718PyObject_Compare:PyObject*:o1:0:
719PyObject_Compare:PyObject*:o2:0:
720
721PyObject_DelAttr:int:::
722PyObject_DelAttr:PyObject*:o:0:
723PyObject_DelAttr:PyObject*:attr_name:0:
724
725PyObject_DelAttrString:int:::
726PyObject_DelAttrString:PyObject*:o:0:
727PyObject_DelAttrString:char*:attr_name::
728
729PyObject_DelItem:int:::
730PyObject_DelItem:PyObject*:o:0:
731PyObject_DelItem:PyObject*:key:0:
732
Fred Drake9c75ff72001-09-06 18:06:46 +0000733PyObject_Dir:PyObject*::+1:
734PyObject_Dir:PyObject*:o:0:
735
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000736PyObject_GetAttr:PyObject*::+1:
737PyObject_GetAttr:PyObject*:o:0:
738PyObject_GetAttr:PyObject*:attr_name:0:
739
740PyObject_GetAttrString:PyObject*::+1:
741PyObject_GetAttrString:PyObject*:o:0:
742PyObject_GetAttrString:char*:attr_name::
743
744PyObject_GetItem:PyObject*::+1:
745PyObject_GetItem:PyObject*:o:0:
746PyObject_GetItem:PyObject*:key:0:
747
748PyObject_HasAttr:int:::
749PyObject_HasAttr:PyObject*:o:0:
750PyObject_HasAttr:PyObject*:attr_name:0:
751
752PyObject_HasAttrString:int:::
753PyObject_HasAttrString:PyObject*:o:0:
754PyObject_HasAttrString:char*:attr_name:0:
755
756PyObject_Hash:int:::
757PyObject_Hash:PyObject*:o:0:
758
759PyObject_IsTrue:int:::
760PyObject_IsTrue:PyObject*:o:0:
761
Fred Drakef913e542000-09-12 20:17:17 +0000762PyObject_Init:PyObject*::0:
763PyObject_Init:PyObject*:op:0:
764
765PyObject_InitVar:PyVarObject*::0:
766PyObject_InitVar:PyVarObject*:op:0:
767
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000768PyObject_Length:int:::
769PyObject_Length:PyObject*:o:0:
770
Fred Drake8e0c09d2001-07-06 23:31:49 +0000771PyObject_NEW:PyObject*::+1:
772
773PyObject_New:PyObject*::+1:
774
775PyObject_NEW_VAR:PyObject*::+1:
776
777PyObject_NewVar:PyObject*::+1:
778
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000779PyObject_Print:int:::
780PyObject_Print:PyObject*:o:0:
781PyObject_Print:FILE*:fp::
782PyObject_Print:int:flags::
783
784PyObject_Repr:PyObject*::+1:
785PyObject_Repr:PyObject*:o:0:
786
787PyObject_SetAttr:int:::
788PyObject_SetAttr:PyObject*:o:0:
789PyObject_SetAttr:PyObject*:attr_name:0:
790PyObject_SetAttr:PyObject*:v:+1:
791
792PyObject_SetAttrString:int:::
793PyObject_SetAttrString:PyObject*:o:0:
794PyObject_SetAttrString:char*:attr_name::
795PyObject_SetAttrString:PyObject*:v:+1:
796
797PyObject_SetItem:int:::
798PyObject_SetItem:PyObject*:o:0:
799PyObject_SetItem:PyObject*:key:0:
800PyObject_SetItem:PyObject*:v:+1:
801
802PyObject_Str:PyObject*::+1:
803PyObject_Str:PyObject*:o:0:
804
805PyObject_Type:PyObject*::+1:
806PyObject_Type:PyObject*:o:0:
807
Fred Drakeb2625eb2001-05-29 15:34:06 +0000808PyObject_Unicode:PyObject*::+1:
809PyObject_Unicode:PyObject*:o:0:
810
Fred Drake805bf1b1999-10-20 16:03:38 +0000811PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000812PyParser_SimpleParseFile:FILE*:fp::
813PyParser_SimpleParseFile:char*:filename::
814PyParser_SimpleParseFile:int:start::
815
Fred Drake805bf1b1999-10-20 16:03:38 +0000816PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000817PyParser_SimpleParseString:char*:str::
818PyParser_SimpleParseString:int:start::
819
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000820PyRun_AnyFile:int:::
821PyRun_AnyFile:FILE*:fp::
822PyRun_AnyFile:char*:filename::
823
Fred Drake4ca744c2000-08-12 03:39:47 +0000824PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000825PyRun_File:FILE*:fp::
826PyRun_File:char*:filename::
827PyRun_File:int:start::
828PyRun_File:PyObject*:globals:0:
829PyRun_File:PyObject*:locals:0:
830
831PyRun_InteractiveLoop:int:::
832PyRun_InteractiveLoop:FILE*:fp::
833PyRun_InteractiveLoop:char*:filename::
834
835PyRun_InteractiveOne:int:::
836PyRun_InteractiveOne:FILE*:fp::
837PyRun_InteractiveOne:char*:filename::
838
839PyRun_SimpleFile:int:::
840PyRun_SimpleFile:FILE*:fp::
841PyRun_SimpleFile:char*:filename::
842
843PyRun_SimpleString:int:::
844PyRun_SimpleString:char*:command::
845
Fred Drake4ca744c2000-08-12 03:39:47 +0000846PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000847PyRun_String:char*:str::
848PyRun_String:int:start::
849PyRun_String:PyObject*:globals:0:
850PyRun_String:PyObject*:locals:0:
851
Fred Draked61d0d32001-09-23 02:05:26 +0000852PySeqIter_New:PyObject*::+1:
853PySeqIter_New:PyObject*:seq::
854
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000855PySequence_Check:int:::
856PySequence_Check:PyObject*:o:0:
857
858PySequence_Concat:PyObject*::+1:
859PySequence_Concat:PyObject*:o1:0:
860PySequence_Concat:PyObject*:o2:0:
861
862PySequence_Count:int:::
863PySequence_Count:PyObject*:o:0:
864PySequence_Count:PyObject*:value:0:
865
866PySequence_DelItem:int:::
867PySequence_DelItem:PyObject*:o:0:
868PySequence_DelItem:int:i::
869
870PySequence_DelSlice:int:::
871PySequence_DelSlice:PyObject*:o:0:
872PySequence_DelSlice:int:i1::
873PySequence_DelSlice:int:i2::
874
Fred Drake81cccb72000-09-12 15:22:05 +0000875PySequence_Fast:PyObject*::+1:
876PySequence_Fast:PyObject*:v:0:
877PySequence_Fast:const char*:m::
878
879PySequence_Fast_GET_ITEM:PyObject*::0:
880PySequence_Fast_GET_ITEM:PyObject*:o:0:
881PySequence_Fast_GET_ITEM:int:i::
882
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000883PySequence_GetItem:PyObject*::+1:
884PySequence_GetItem:PyObject*:o:0:
885PySequence_GetItem:int:i::
886
887PySequence_GetSlice:PyObject*::+1:
888PySequence_GetSlice:PyObject*:o:0:
889PySequence_GetSlice:int:i1::
890PySequence_GetSlice:int:i2::
891
892PySequence_In:int:::
893PySequence_In:PyObject*:o:0:
894PySequence_In:PyObject*:value:0:
895
896PySequence_Index:int:::
897PySequence_Index:PyObject*:o:0:
898PySequence_Index:PyObject*:value:0:
899
Fred Drake1fa93652000-09-22 18:19:37 +0000900PySequence_InPlaceConcat:PyObject*::+1:
901PySequence_InPlaceConcat:PyObject*:s:0:
902PySequence_InPlaceConcat:PyObject*:o:0:
903
904PySequence_InPlaceRepeat:PyObject*::+1:
905PySequence_InPlaceRepeat:PyObject*:s:0:
906PySequence_InPlaceRepeat:PyObject*:o:0:
907
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000908PySequence_Repeat:PyObject*::+1:
909PySequence_Repeat:PyObject*:o:0:
910PySequence_Repeat:int:count::
911
912PySequence_SetItem:int:::
913PySequence_SetItem:PyObject*:o:0:
914PySequence_SetItem:int:i::
915PySequence_SetItem:PyObject*:v:+1:
916
917PySequence_SetSlice:int:::
918PySequence_SetSlice:PyObject*:o:0:
919PySequence_SetSlice:int:i1::
920PySequence_SetSlice:int:i2::
921PySequence_SetSlice:PyObject*:v:+1:
922
Fred Drake1c2d06a2000-06-16 20:00:04 +0000923PySequence_List:PyObject*::+1:
924PySequence_List:PyObject*:o:0:
925
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000926PySequence_Tuple:PyObject*::+1:
927PySequence_Tuple:PyObject*:o:0:
928
929PyString_AS_STRING:char*:::
930PyString_AS_STRING:PyObject*:string:0:
931
Fred Drakeb2625eb2001-05-29 15:34:06 +0000932PyString_AsDecodedObject:PyObject*::+1:
933PyString_AsDecodedObject:PyObject*:str:0:
934PyString_AsDecodedObject:const char*:encoding::
935PyString_AsDecodedObject:const char*:errors::
936
937PyString_AsEncodedObject:PyObject*::+1:
938PyString_AsEncodedObject:PyObject*:str:0:
939PyString_AsEncodedObject:const char*:encoding::
940PyString_AsEncodedObject:const char*:errors::
941
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000942PyString_AsString:char*:::
943PyString_AsString:PyObject*:string:0:
944
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +0000945PyString_AsStringAndSize:int:::
946PyString_AsStringAndSize:PyObject*:obj:0:
947PyString_AsStringAndSize:char**:buffer::
948PyString_AsStringAndSize:int*:length::
949
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000950PyString_Check:int:::
951PyString_Check:PyObject*:o:0:
952
953PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000954PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000955PyString_Concat:PyObject*:newpart:0:
956
957PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000958PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000959PyString_ConcatAndDel:PyObject*:newpart:-1:
960
961PyString_Format:PyObject*::+1:
962PyString_Format:PyObject*:format:0:
963PyString_Format:PyObject*:args:0:
964
965PyString_FromString:PyObject*::+1:
966PyString_FromString:const char*:v::
967
968PyString_FromStringAndSize:PyObject*::+1:
969PyString_FromStringAndSize:const char*:v::
970PyString_FromStringAndSize:int:len::
971
Barry Warsaw8c64a542001-08-28 02:32:04 +0000972PyString_FromFormat:PyObject*::+1:
973PyString_FromFormat:const char*:format::
974PyString_FromFormat::...::
975
976PyString_FromFormatV:PyObject*::+1:
977PyString_FromFormatV:const char*:format::
978PyString_FromFormatV:va_list:vargs::
979
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000980PyString_GET_SIZE:int:::
981PyString_GET_SIZE:PyObject*:string:0:
982
983PyString_InternFromString:PyObject*::+1:
984PyString_InternFromString:const char*:v::
985
986PyString_InternInPlace:void:::
987PyString_InternInPlace:PyObject**:string:+1:???
988
989PyString_Size:int:::
990PyString_Size:PyObject*:string:0:
991
Marc-André Lemburg47073202000-07-07 15:48:54 +0000992PyString_Decode:PyObject*::+1:
993PyString_Decode:const char*:s::
994PyString_Decode:int:size::
995PyString_Decode:const char*:encoding::
996PyString_Decode:const char*:errors::
997
998PyString_Encode:PyObject*::+1:
999PyString_Encode:const char*:s::
1000PyString_Encode:int:size::
1001PyString_Encode:const char*:encoding::
1002PyString_Encode:const char*:errors::
1003
1004PyString_AsEncodedString:PyObject*::+1:
1005PyString_AsEncodedString:PyObject*:str::
1006PyString_AsEncodedString:const char*:encoding::
1007PyString_AsEncodedString:const char*:errors::
1008
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001009PySys_SetArgv:int:::
1010PySys_SetArgv:int:argc::
1011PySys_SetArgv:char**:argv::
1012
1013PyThreadState_Clear:void:::
1014PyThreadState_Clear:PyThreadState*:tstate::
1015
1016PyThreadState_Delete:void:::
1017PyThreadState_Delete:PyThreadState*:tstate::
1018
1019PyThreadState_Get:PyThreadState*:::
1020
Fred Drakeb2625eb2001-05-29 15:34:06 +00001021PyThreadState_GetDict:PyObject*::0:
1022
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001023PyThreadState_New:PyThreadState*:::
1024PyThreadState_New:PyInterpreterState*:interp::
1025
1026PyThreadState_Swap:PyThreadState*:::
1027PyThreadState_Swap:PyThreadState*:tstate::
1028
1029PyTuple_Check:int:::
1030PyTuple_Check:PyObject*:p:0:
1031
1032PyTuple_GET_ITEM:PyObject*::0:
1033PyTuple_GET_ITEM:PyTupleObject*:p:0:
1034PyTuple_GET_ITEM:int:pos::
1035
1036PyTuple_GetItem:PyObject*::0:
1037PyTuple_GetItem:PyTupleObject*:p:0:
1038PyTuple_GetItem:int:pos::
1039
1040PyTuple_GetSlice:PyObject*::+1:
1041PyTuple_GetSlice:PyTupleObject*:p:0:
1042PyTuple_GetSlice:int:low::
1043PyTuple_GetSlice:int:high::
1044
1045PyTuple_New:PyObject*::+1:
1046PyTuple_New:int:len::
1047
1048PyTuple_SET_ITEM:void:::
1049PyTuple_SET_ITEM:PyTupleObject*:p:0:
1050PyTuple_SET_ITEM:int:pos::
1051PyTuple_SET_ITEM:PyObject*:o:0:
1052
1053PyTuple_SetItem:int:::
1054PyTuple_SetItem:PyTupleObject*:p:0:
1055PyTuple_SetItem:int:pos::
1056PyTuple_SetItem:PyObject*:o:0:
1057
1058PyTuple_Size:int:::
1059PyTuple_Size:PyTupleObject*:p:0:
1060
Fred Drake992fe5a2000-06-16 21:04:15 +00001061PyUnicode_Check:int:::
1062PyUnicode_Check:PyObject*:o:0:
1063
1064PyUnicode_GET_SIZE:int:::
1065PyUnicode_GET_SIZE:PyObject*:o:0:
1066
1067PyUnicode_GET_DATA_SIZE:int:::
1068PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1069
1070PyUnicode_AS_UNICODE:Py_UNICODE*:::
1071PyUnicode_AS_UNICODE:PyObject*:o:0:
1072
1073PyUnicode_AS_DATA:const char*:::
1074PyUnicode_AS_DATA:PyObject*:o:0:
1075
1076Py_UNICODE_ISSPACE:int:::
1077Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1078
1079Py_UNICODE_ISLOWER:int:::
1080Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1081
1082Py_UNICODE_ISUPPER:int:::
1083Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1084
1085Py_UNICODE_ISTITLE:int:::
1086Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1087
1088Py_UNICODE_ISLINEBREAK:int:::
1089Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1090
1091Py_UNICODE_ISDECIMAL:int:::
1092Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1093
1094Py_UNICODE_ISDIGIT:int:::
1095Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1096
1097Py_UNICODE_ISNUMERIC:int:::
1098Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1099
1100Py_UNICODE_TOLOWER:Py_UNICODE:::
1101Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1102
1103Py_UNICODE_TOUPPER:Py_UNICODE:::
1104Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1105
1106Py_UNICODE_TOTITLE:Py_UNICODE:::
1107Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1108
1109Py_UNICODE_TODECIMAL:int:::
1110Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1111
1112Py_UNICODE_TODIGIT:int:::
1113Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1114
1115Py_UNICODE_TONUMERIC:double:::
1116Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1117
1118PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001119PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001120PyUnicode_FromUnicode:int:size::
1121
1122PyUnicode_AsUnicode:Py_UNICODE*:::
1123PyUnicode_AsUnicode:PyObject :*unicode:0:
1124
1125PyUnicode_GetSize:int:::
1126PyUnicode_GetSize:PyObject :*unicode:0:
1127
1128PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001129PyUnicode_FromObject:PyObject*:*obj:0:
1130
1131PyUnicode_FromEncodedObject:PyObject*::+1:
1132PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1133PyUnicode_FromEncodedObject:const char*:encoding::
1134PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001135
1136PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001137PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001138PyUnicode_FromWideChar:int:size::
1139
1140PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001141PyUnicode_AsWideChar:PyObject*:*unicode:0:
1142PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001143PyUnicode_AsWideChar:int:size::
1144
1145PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001146PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001147PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001148PyUnicode_Decode:const char*:encoding::
1149PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001150
1151PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001152PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001153PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001154PyUnicode_Encode:const char*:encoding::
1155PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001156
1157PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001158PyUnicode_AsEncodedString:PyObject*:unicode::
1159PyUnicode_AsEncodedString:const char*:encoding::
1160PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001161
1162PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001163PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001164PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001165PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001166
1167PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001168PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001169PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001170PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001171
1172PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001173PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001174
1175PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001176PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001177PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001178PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001179PyUnicode_DecodeUTF16:int*:byteorder::
1180
1181PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001182PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001183PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001184PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001185PyUnicode_EncodeUTF16:int:byteorder::
1186
1187PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001188PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001189
1190PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001191PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001192PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001193PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001194
1195PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001196PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001197PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001198PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001199
1200PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001201PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001202
1203PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001204PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001205PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001206PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001207
1208PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001209PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001210PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001211PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001212
1213PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001214PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001215
1216PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001217PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001218PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001219PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001220
1221PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001222PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001223PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001224PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001225
1226PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001227PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001228
1229PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001230PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001231PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001232PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001233
1234PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001235PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001236PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001237PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001238
1239PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001240PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001241
1242PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001243PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001244PyUnicode_DecodeCharmap:int:size::
1245PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001246PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001247
1248PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001249PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001250PyUnicode_EncodeCharmap:int:size::
1251PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001252PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001253
1254PyUnicode_AsCharmapString:PyObject*::+1:
1255PyUnicode_AsCharmapString:PyObject*:unicode:0:
1256PyUnicode_AsCharmapString:PyObject*:mapping:0:
1257
1258PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001259PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001260PyUnicode_TranslateCharmap:int:size::
1261PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001262PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001263
1264PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001265PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001266PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001267PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001268
1269PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001270PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001271PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001272PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001273
1274PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001275PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001276
1277PyUnicode_Concat:PyObject*::+1:
1278PyUnicode_Concat:PyObject*:left:0:
1279PyUnicode_Concat:PyObject*:right:0:
1280
1281PyUnicode_Split:PyObject*::+1:
1282PyUnicode_Split:PyObject*:left:0:
1283PyUnicode_Split:PyObject*:right:0:
1284PyUnicode_Split:int:maxsplit::
1285
1286PyUnicode_Splitlines:PyObject*::+1:
1287PyUnicode_Splitlines:PyObject*:s:0:
1288PyUnicode_Splitlines:int:maxsplit::
1289
1290PyUnicode_Translate:PyObject*::+1:
1291PyUnicode_Translate:PyObject*:str:0:
1292PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001293PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001294
1295PyUnicode_Join:PyObject*::+1:
1296PyUnicode_Join:PyObject*:separator:0:
1297PyUnicode_Join:PyObject*:seq:0:
1298
1299PyUnicode_Tailmatch:PyObject*::+1:
1300PyUnicode_Tailmatch:PyObject*:str:0:
1301PyUnicode_Tailmatch:PyObject*:substr:0:
1302PyUnicode_Tailmatch:int:start::
1303PyUnicode_Tailmatch:int:end::
1304PyUnicode_Tailmatch:int:direction::
1305
1306PyUnicode_Find:PyObject*::+1:
1307PyUnicode_Find:PyObject*:str:0:
1308PyUnicode_Find:PyObject*:substr:0:
1309PyUnicode_Find:int:start::
1310PyUnicode_Find:int:end::
1311PyUnicode_Find:int:direction::
1312
1313PyUnicode_Count:PyObject*::+1:
1314PyUnicode_Count:PyObject*:str:0:
1315PyUnicode_Count:PyObject*:substr:0:
1316PyUnicode_Count:int:start::
1317PyUnicode_Count:int:end::
1318
1319PyUnicode_Replace:PyObject*::+1:
1320PyUnicode_Replace:PyObject*:str:0:
1321PyUnicode_Replace:PyObject*:substr:0:
1322PyUnicode_Replace:PyObject*:replstr:0:
1323PyUnicode_Replace:int:maxcount::
1324
1325PyUnicode_Compare:int:::
1326PyUnicode_Compare:PyObject*:left:0:
1327PyUnicode_Compare:PyObject*:right:0:
1328
1329PyUnicode_Format:PyObject*::+1:
1330PyUnicode_Format:PyObject*:format:0:
1331PyUnicode_Format:PyObject*:args:0:
1332
1333PyUnicode_Contains:int:::
1334PyUnicode_Contains:PyObject*:container:0:
1335PyUnicode_Contains:PyObject*:element:0:
1336
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001337Py_AtExit:int:::
1338Py_AtExit:void (*)():func::
1339
Fred Drake6d988552001-07-20 20:55:31 +00001340Py_BuildValue:PyObject*::+1:
1341Py_BuildValue:char*:format::
1342
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001343Py_CompileString:PyObject*::+1:
1344Py_CompileString:char*:str::
1345Py_CompileString:char*:filename::
1346Py_CompileString:int:start::
1347
1348Py_DECREF:void:::
1349Py_DECREF:PyObject*:o:-1:
1350
1351Py_EndInterpreter:void:::
1352Py_EndInterpreter:PyThreadState*:tstate::
1353
1354Py_Exit:void:::
1355Py_Exit:int:status::
1356
1357Py_FatalError:void:::
1358Py_FatalError:char*:message::
1359
1360Py_FdIsInteractive:int:::
1361Py_FdIsInteractive:FILE*:fp::
1362Py_FdIsInteractive:char*:filename::
1363
1364Py_Finalize:void:::
1365
Fred Drake8520cc22000-04-10 19:38:24 +00001366Py_FindMethod:PyObject*::+1:
1367Py_FindMethod:PyMethodDef[]:methods::
1368Py_FindMethod:PyObject*:self:+1:
1369Py_FindMethod:char*:name::
1370
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001371Py_GetBuildInfoconst:char*:::
1372
1373Py_GetCompilerconst:char*:::
1374
1375Py_GetCopyrightconst:char*:::
1376
1377Py_GetExecPrefix:char*:::
1378
1379Py_GetPath:char*:::
1380
1381Py_GetPlatformconst:char*:::
1382
1383Py_GetPrefix:char*:::
1384
1385Py_GetProgramFullPath:char*:::
1386
1387Py_GetProgramName:char*:::
1388
1389Py_GetVersionconst:char*:::
1390
1391Py_INCREF:void:::
1392Py_INCREF:PyObject*:o:+1:
1393
1394Py_Initialize:void:::
1395
1396Py_IsInitialized:int:::
1397
1398Py_NewInterpreter:PyThreadState*:::
1399
1400Py_SetProgramName:void:::
1401Py_SetProgramName:char*:name::
1402
1403Py_XDECREF:void:::
1404Py_XDECREF:PyObject*:o:-1:if o is not NULL
1405
1406Py_XINCREF:void:::
1407Py_XINCREF:PyObject*:o:+1:if o is not NULL
1408
1409_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1410_PyImport_FindExtension:char*:::
1411_PyImport_FindExtension:char*:::
1412
1413_PyImport_Fini:void:::
1414
1415_PyImport_FixupExtension:PyObject*:::???
1416_PyImport_FixupExtension:char*:::
1417_PyImport_FixupExtension:char*:::
1418
1419_PyImport_Init:void:::
1420
Fred Drakef913e542000-09-12 20:17:17 +00001421_PyObject_Del:void:::
1422_PyObject_Del:PyObject*:op:0:
1423
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001424_PyObject_New:PyObject*::+1:
1425_PyObject_New:PyTypeObject*:type:0:
1426
Fred Drake8e0c09d2001-07-06 23:31:49 +00001427_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001428_PyObject_NewVar:PyTypeObject*:type:0:
1429_PyObject_NewVar:int:size::
1430
1431_PyString_Resize:int:::
1432_PyString_Resize:PyObject**:string:+1:
1433_PyString_Resize:int:newsize::
1434
1435_PyTuple_Resize:int:::
1436_PyTuple_Resize:PyTupleObject**:p:+1:
1437_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001438
1439_Py_c_diff:Py_complex:::
1440_Py_c_diff:Py_complex:left::
1441_Py_c_diff:Py_complex:right::
1442
1443_Py_c_neg:Py_complex:::
1444_Py_c_neg:Py_complex:complex::
1445
1446_Py_c_pow:Py_complex:::
1447_Py_c_pow:Py_complex:num::
1448_Py_c_pow:Py_complex:exp::
1449
1450_Py_c_prod:Py_complex:::
1451_Py_c_prod:Py_complex:left::
1452_Py_c_prod:Py_complex:right::
1453
1454_Py_c_quot:Py_complex:::
1455_Py_c_quot:Py_complex:dividend::
1456_Py_c_quot:Py_complex:divisor::
1457
1458_Py_c_sum:Py_complex:::
1459_Py_c_sum:Py_complex:left::
1460_Py_c_sum:Py_complex:right::