blob: 374cdf108733924cc584ad9c7b53703d70206d87 [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
Fred Drake23a78cf2001-09-24 15:29:47 +000096PyDescr_NewGetSet:PyObject*::+1:
97PyDescr_NewGetSet:PyTypeObject*:type::
98PyDescr_NewGetSet:PyGetSetDef*:getset::
99
100PyDescr_NewMember:PyObject*::+1:
101PyDescr_NewMember:PyTypeObject*:type::
102PyDescr_NewMember:PyMemberDef*:member::
103
104PyDescr_NewMethod:PyObject*::+1:
105PyDescr_NewMethod:PyTypeObject*:type::
106PyDescr_NewMethod:PyMethodDef*:meth::
107
108PyDescr_NewWrapper:PyObject*::+1:
109PyDescr_NewWrapper:PyTypeObject*:type::
110PyDescr_NewWrapper:struct wrapperbase*:base::
111PyDescr_NewWrapper:void*:wrapped::
112
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000113PyDict_Check:int:::
114PyDict_Check:PyObject*:p:0:
115
116PyDict_Clear:void:::
Fred Drake81473b12001-01-08 05:53:53 +0000117PyDict_Clear:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000118
119PyDict_DelItem:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000120PyDict_DelItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000121PyDict_DelItem:PyObject*:key:0:
122
123PyDict_DelItemString:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000124PyDict_DelItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000125PyDict_DelItemString:char*:key::
126
Fred Drake805bf1b1999-10-20 16:03:38 +0000127PyDict_GetItem:PyObject*::0:0
Fred Drake81473b12001-01-08 05:53:53 +0000128PyDict_GetItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000129PyDict_GetItem:PyObject*:key:0:
130
Fred Drake805bf1b1999-10-20 16:03:38 +0000131PyDict_GetItemString:PyObject*::0:
Fred Drake81473b12001-01-08 05:53:53 +0000132PyDict_GetItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000133PyDict_GetItemString:char*:key::
134
135PyDict_Items:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000136PyDict_Items:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000137
138PyDict_Keys:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000139PyDict_Keys:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000140
141PyDict_New:PyObject*::+1:
142
Jeremy Hyltona12c7a72000-03-30 22:27:31 +0000143PyDict_Copy:PyObject*::+1:
144PyDict_Copy:PyObject*:p:0:
145
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000146PyDict_Next:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000147PyDict_Next:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000148PyDict_Next:int:ppos::
149PyDict_Next:PyObject**:pkey:0:
150PyDict_Next:PyObject**:pvalue:0:
151
152PyDict_SetItem:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000153PyDict_SetItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000154PyDict_SetItem:PyObject*:key:+1:
155PyDict_SetItem:PyObject*:val:+1:
156
157PyDict_SetItemString:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000158PyDict_SetItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000159PyDict_SetItemString:char*:key::
160PyDict_SetItemString:PyObject*:val:+1:
161
162PyDict_Size:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000163PyDict_Size:PyObject*:p::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000164
165PyDict_Values:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000166PyDict_Values:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000167
Fred Drake23a78cf2001-09-24 15:29:47 +0000168PyDictProxy_New:PyObject*::+1:
169PyDictProxy_New:PyObject*:dict:0:
170
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000171PyErr_BadArgument:int:::
172
173PyErr_BadInternalCall:void:::
174
175PyErr_CheckSignals:int:::
176
177PyErr_Clear:void:::
178
179PyErr_ExceptionMatches:int:::
180PyErr_ExceptionMatches:PyObject*:exc:0:
181
182PyErr_Fetch:void:::
183PyErr_Fetch:PyObject**:ptype:0:
184PyErr_Fetch:PyObject**:pvalue:0:
185PyErr_Fetch:PyObject**:ptraceback:0:
186
187PyErr_GivenExceptionMatches:int:::
188PyErr_GivenExceptionMatches:PyObject*:given:0:
189PyErr_GivenExceptionMatches:PyObject*:exc:0:
190
191PyErr_NewException:PyObject*::+1:
192PyErr_NewException:char*:name::
193PyErr_NewException:PyObject*:base:0:
194PyErr_NewException:PyObject*:dict:0:
195
Fred Drakedb2764d2000-04-10 18:25:09 +0000196PyErr_NoMemory:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000197
198PyErr_NormalizeException:void:::
199PyErr_NormalizeException:PyObject**:exc::???
200PyErr_NormalizeException:PyObject**:val::???
201PyErr_NormalizeException:PyObject**:tb::???
202
203PyErr_Occurred:PyObject*::0:
204
205PyErr_Print:void:::
206
207PyErr_Restore:void:::
Fred Drake34c391d2000-08-15 04:36:16 +0000208PyErr_Restore:PyObject*:type:-1:
209PyErr_Restore:PyObject*:value:-1:
210PyErr_Restore:PyObject*:traceback:-1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000211
Fred Drakedb2764d2000-04-10 18:25:09 +0000212PyErr_SetFromErrno:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000213PyErr_SetFromErrno:PyObject*:type:0:
214
Fred Drake9c75ff72001-09-06 18:06:46 +0000215PyErr_SetFromErrnoWithFilename:PyObject*::null:
216PyErr_SetFromErrnoWithFilename:PyObject*:type:0:
217PyErr_SetFromErrnoWithFilename:char*:filename::
218
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000219PyErr_SetInterrupt:void:::
220
221PyErr_SetNone:void:::
222PyErr_SetNone:PyObject*:type:+1:
223
224PyErr_SetObject:void:::
225PyErr_SetObject:PyObject*:type:+1:
226PyErr_SetObject:PyObject*:value:+1:
227
228PyErr_SetString:void:::
229PyErr_SetString:PyObject*:type:+1:
230PyErr_SetString:char*:message::
231
Jeremy Hylton98605b52000-04-10 18:40:57 +0000232PyErr_Format:PyObject*::null:
233PyErr_Format:PyObject*:exception:+1:
234PyErr_Format:char*:format::
235PyErr_Format::...::
236
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000237PyErr_Warn:int:::
Guido van Rossume22e4b22000-12-19 03:58:11 +0000238PyErr_Warn:PyObject*:category:0:
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000239PyErr_Warn:char*:message::
240
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000241PyEval_AcquireLock:void:::
242
243PyEval_AcquireThread:void:::
244PyEval_AcquireThread:PyThreadState*:tstate::
245
246PyEval_InitThreads:void:::
247
248PyEval_ReleaseLock:void:::
249
250PyEval_ReleaseThread:void:::
251PyEval_ReleaseThread:PyThreadState*:tstate::
252
253PyEval_RestoreThread:void:::
254PyEval_RestoreThread:PyThreadState*:tstate::
255
256PyEval_SaveThread:PyThreadState*:::
257
Fred Drake4ca744c2000-08-12 03:39:47 +0000258PyEval_EvalCode:PyObject*::+1:
259PyEval_EvalCode:PyCodeObject*:co:0:
260PyEval_EvalCode:PyObject*:globals:0:
261PyEval_EvalCode:PyObject*:locals:0:
262
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000263PyFile_AsFile:FILE*:::
264PyFile_AsFile:PyFileObject*:p:0:
265
266PyFile_Check:int:::
267PyFile_Check:PyObject*:p:0:
268
269PyFile_FromFile:PyObject*::+1:
270PyFile_FromFile:FILE*:fp::
271PyFile_FromFile:char*:name::
272PyFile_FromFile:char*:mode::
273PyFile_FromFile:int(*:close)::
274
275PyFile_FromString:PyObject*::+1:
276PyFile_FromString:char*:name::
277PyFile_FromString:char*:mode::
278
279PyFile_GetLine:PyObject*::+1:
280PyFile_GetLine:PyObject*:p::
281PyFile_GetLine:int:n::
282
283PyFile_Name:PyObject*::0:
284PyFile_Name:PyObject*:p:0:
285
286PyFile_SetBufSize:void:::
287PyFile_SetBufSize:PyFileObject*:p:0:
288PyFile_SetBufSize:int:n::
289
290PyFile_SoftSpace:int:::
291PyFile_SoftSpace:PyFileObject*:p:0:
292PyFile_SoftSpace:int:newflag::
293
294PyFile_WriteObject:int:::
295PyFile_WriteObject:PyObject*:obj:0:
296PyFile_WriteObject:PyFileObject*:p:0:
297PyFile_WriteObject:int:flags::
298
299PyFile_WriteString:int:::
300PyFile_WriteString:char*:s::
301PyFile_WriteString:PyFileObject*:p:0:
302PyFile_WriteString:int:flags::
303
304PyFloat_AS_DOUBLE:double:::
305PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
306
307PyFloat_AsDouble:double:::
308PyFloat_AsDouble:PyObject*:pyfloat:0:
309
310PyFloat_Check:int:::
311PyFloat_Check:PyObject*:p:0:
312
313PyFloat_FromDouble:PyObject*::+1:
314PyFloat_FromDouble:double:v::
315
Fred Drakeee814bf2000-11-28 22:34:32 +0000316Py_InitModule:PyObject*::0:
317Py_InitModule:name:char*::
318Py_InitModule:methods:PyMethodDef[]::
319
320Py_InitModule3:PyObject*::0:
321Py_InitModule3:name:char*::
322Py_InitModule3:methods:PyMethodDef[]::
323Py_InitModule3:doc:char*::
324
325Py_InitModule4:PyObject*::0:
326Py_InitModule4:name:char*::
327Py_InitModule4:methods:PyMethodDef[]::
328Py_InitModule4:doc:char*::
329Py_InitModule4:self:PyObject*::
330Py_InitModule4:apiver:int::usually provided by Py_InitModule or Py_InitModule3
331
Fred Drake805bf1b1999-10-20 16:03:38 +0000332PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000333PyImport_AddModule:char*:name::
334
335PyImport_Cleanup:void:::
336
337PyImport_ExecCodeModule:PyObject*::+1:
338PyImport_ExecCodeModule:char*:name::
339PyImport_ExecCodeModule:PyObject*:co:0:
340
341PyImport_GetMagicNumber:long:::
342
343PyImport_GetModuleDict:PyObject*::0:
344
345PyImport_Import:PyObject*::+1:
346PyImport_Import:PyObject*:name:0:
347
348PyImport_ImportFrozenModule:int:::
349PyImport_ImportFrozenModule:char*:::
350
Fred Drakeeb725cd2000-04-03 15:06:40 +0000351PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000352PyImport_ImportModule:char*:name::
353
Fred Drakeeb725cd2000-04-03 15:06:40 +0000354PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000355PyImport_ImportModuleEx:char*:name::
356PyImport_ImportModuleEx:PyObject*:globals:0:???
357PyImport_ImportModuleEx:PyObject*:locals:0:???
358PyImport_ImportModuleEx:PyObject*:fromlist:0:???
359
Fred Drakeeb725cd2000-04-03 15:06:40 +0000360PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000361PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000362
Fred Drake5838d0f2001-01-28 06:39:35 +0000363PyInstance_New:PyObject*::+1:
364PyInstance_New:PyObject*:klass:+1:
365PyInstance_New:PyObject*:arg:0:
366PyInstance_New:PyObject*:kw:0:
367
368PyInstance_NewRaw:PyObject*::+1:
369PyInstance_NewRaw:PyObject*:klass:+1:
370PyInstance_NewRaw:PyObject*:dict:+1:
371
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000372PyInt_AS_LONG:long:::
373PyInt_AS_LONG:PyIntObject*:io:0:
374
375PyInt_AsLong:long:::
376PyInt_AsLong:PyObject*:io:0:
377
378PyInt_Check:int:::
Fred Drake9c75ff72001-09-06 18:06:46 +0000379PyInt_Check:PyObject*:op:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000380
381PyInt_FromLong:PyObject*::+1:
382PyInt_FromLong:long:ival::
383
384PyInt_GetMax:long:::
385
386PyInterpreterState_Clear:void:::
387PyInterpreterState_Clear:PyInterpreterState*:interp::
388
389PyInterpreterState_Delete:void:::
390PyInterpreterState_Delete:PyInterpreterState*:interp::
391
392PyInterpreterState_New:PyInterpreterState*:::
393
Fred Drakeb2625eb2001-05-29 15:34:06 +0000394PyIter_Check:int:o:0:
395
396PyIter_Next:PyObject*::+1:
397PyIter_Next:PyObject*:o:0:
398
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000399PyList_Append:int:::
400PyList_Append:PyObject*:list:0:
401PyList_Append:PyObject*:item:+1:
402
403PyList_AsTuple:PyObject*::+1:
404PyList_AsTuple:PyObject*:list:0:
405
406PyList_Check:int:::
407PyList_Check:PyObject*:p:0:
408
409PyList_GET_ITEM:PyObject*::0:
410PyList_GET_ITEM:PyObject*:list:0:
411PyList_GET_ITEM:int:i:0:
412
413PyList_GET_SIZE:int:::
414PyList_GET_SIZE:PyObject*:list:0:
415
416PyList_GetItem:PyObject*::0:
417PyList_GetItem:PyObject*:list:0:
418PyList_GetItem:int:index::
419
420PyList_GetSlice:PyObject*::+1:
421PyList_GetSlice:PyObject*:list:0:
422PyList_GetSlice:int:low::
423PyList_GetSlice:int:high::
424
425PyList_Insert:int:::
426PyList_Insert:PyObject*:list:0:
427PyList_Insert:int:index::
428PyList_Insert:PyObject*:item:+1:
429
430PyList_New:PyObject*::+1:
431PyList_New:int:len::
432
433PyList_Reverse:int:::
434PyList_Reverse:PyObject*:list:0:
435
Fred Draked8548312001-07-10 16:19:13 +0000436PyList_SET_ITEM:void:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000437PyList_SET_ITEM:PyObject*:list:0:
438PyList_SET_ITEM:int:i::
439PyList_SET_ITEM:PyObject*:o:0:
440
441PyList_SetItem:int:::
442PyList_SetItem:PyObject*:list:0:
443PyList_SetItem:int:index::
444PyList_SetItem:PyObject*:item:0:
445
446PyList_SetSlice:int:::
447PyList_SetSlice:PyObject*:list:0:
448PyList_SetSlice:int:low::
449PyList_SetSlice:int:high::
450PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
451
452PyList_Size:int:::
453PyList_Size:PyObject*:list:0:
454
455PyList_Sort:int:::
456PyList_Sort:PyObject*:list:0:
457
458PyLong_AsDouble:double:::
459PyLong_AsDouble:PyObject*:pylong:0:
460
461PyLong_AsLong:long:::
462PyLong_AsLong:PyObject*:pylong:0:
463
464PyLong_AsUnsignedLong:unsigned long:::
465PyLong_AsUnsignedLong:PyObject*:pylong:0:
466
467PyLong_Check:int:::
468PyLong_Check:PyObject*:p:0:
469
470PyLong_FromDouble:PyObject*::+1:
471PyLong_FromDouble:double:v::
472
473PyLong_FromLong:PyObject*::+1:
474PyLong_FromLong:long:v::
475
Fred Drakef47d8ef2001-09-20 19:18:52 +0000476PyLong_FromLongLong:PyObject*::+1:
477PyLong_FromLongLong:long long:v::
478
479PyLong_FromUnsignedLongLong:PyObject*::+1:
480PyLong_FromUnsignedLongLong:unsigned long long:v::
481
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000482PyLong_FromString:PyObject*::+1:
483PyLong_FromString:char*:str::
484PyLong_FromString:char**:pend::
485PyLong_FromString:int:base::
486
Fred Drakef47d8ef2001-09-20 19:18:52 +0000487PyLong_FromUnicode:PyObject*::+1:
488PyLong_FromUnicode:Py_UNICODE:u::
489PyLong_FromUnicode:int:length::
490PyLong_FromUnicode:int:base::
491
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000492PyLong_FromUnsignedLong:PyObject*::+1:
493PyLong_FromUnsignedLong:unsignedlong:v::
494
Fred Drakef47d8ef2001-09-20 19:18:52 +0000495PyLong_FromVoidPtr:PyObject*::+1:
496PyLong_FromVoidPtr:void*:p::
497
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000498PyMapping_Check:int:::
499PyMapping_Check:PyObject*:o:0:
500
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000501PyMapping_DelItem:int:::
502PyMapping_DelItem:PyObject*:o:0:
503PyMapping_DelItem:PyObject*:key:0:
504
505PyMapping_DelItemString:int:::
506PyMapping_DelItemString:PyObject*:o:0:
507PyMapping_DelItemString:char*:key::
508
509PyMapping_GetItemString:PyObject*::+1:
510PyMapping_GetItemString:PyObject*:o:0:
511PyMapping_GetItemString:char*:key::
512
513PyMapping_HasKey:int:::
514PyMapping_HasKey:PyObject*:o:0:
515PyMapping_HasKey:PyObject*:key::
516
517PyMapping_HasKeyString:int:::
518PyMapping_HasKeyString:PyObject*:o:0:
519PyMapping_HasKeyString:char*:key::
520
521PyMapping_Items:PyObject*::+1:
522PyMapping_Items:PyObject*:o:0:
523
524PyMapping_Keys:PyObject*::+1:
525PyMapping_Keys:PyObject*:o:0:
526
527PyMapping_Length:int:::
528PyMapping_Length:PyObject*:o:0:
529
530PyMapping_SetItemString:int:::
531PyMapping_SetItemString:PyObject*:o:0:
532PyMapping_SetItemString:char*:key::
533PyMapping_SetItemString:PyObject*:v:+1:
534
535PyMapping_Values:PyObject*::+1:
536PyMapping_Values:PyObject*:o:0:
537
Fred Drake9c75ff72001-09-06 18:06:46 +0000538PyMethod_Class:PyObject*::0:
539PyMethod_Class:PyObject*:im:0:
540
541PyMethod_Function:PyObject*::0:
542PyMethod_Function:PyObject*:im:0:
543
544PyMethod_GET_CLASS:PyObject*::0:
545PyMethod_GET_CLASS:PyObject*:im:0:
546
547PyMethod_GET_FUNCTION:PyObject*::0:
548PyMethod_GET_FUNCTION:PyObject*:im:0:
549
550PyMethod_GET_SELF:PyObject*::0:
551PyMethod_GET_SELF:PyObject*:im:0:
552
553PyMethod_New:PyObject*::+1:
554PyMethod_New:PyObject*:func:0:
555PyMethod_New:PyObject*:self:0:
556PyMethod_New:PyObject*:class:0:
557
558PyMethod_Self:PyObject*::0:
559PyMethod_Self:PyObject*:im:0:
560
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000561PyModule_GetDict:PyObject*::0:
562PyModule_GetDict::PyObject* module:0:
563
564PyModule_GetFilename:char*:::
565PyModule_GetFilename:PyObject*:module:0:
566
567PyModule_GetName:char*:::
568PyModule_GetName:PyObject*:module:0:
569
570PyModule_New:PyObject*::+1:
571PyModule_New::char* name::
572
573PyNumber_Absolute:PyObject*::+1:
574PyNumber_Absolute:PyObject*:o:0:
575
576PyNumber_Add:PyObject*::+1:
577PyNumber_Add:PyObject*:o1:0:
578PyNumber_Add:PyObject*:o2:0:
579
580PyNumber_And:PyObject*::+1:
581PyNumber_And:PyObject*:o1:0:
582PyNumber_And:PyObject*:o2:0:
583
584PyNumber_Check:PyObject*:o:0:
585PyNumber_Check:int:::
586
587PyNumber_Coerce:int:::
588PyNumber_Coerce:PyObject**:p1:+1:
589PyNumber_Coerce:PyObject**:p2:+1:
590
591PyNumber_Divide:PyObject*::+1:
592PyNumber_Divide:PyObject*:o1:0:
593PyNumber_Divide:PyObject*:o2:0:
594
595PyNumber_Divmod:PyObject*::+1:
596PyNumber_Divmod:PyObject*:o1:0:
597PyNumber_Divmod:PyObject*:o2:0:
598
599PyNumber_Float:PyObject*::+1:
600PyNumber_Float:PyObject*:o:0:
601
Fred Drake03590c62001-08-08 18:50:18 +0000602PyNumber_FloorDivide:PyObject*::+1:
603PyNumber_FloorDivide:PyObject*:v:0:
604PyNumber_FloorDivide:PyObject*:w:0:
605
Fred Drake1fa93652000-09-22 18:19:37 +0000606PyNumber_InPlaceAdd:PyObject*::+1:
607PyNumber_InPlaceAdd:PyObject*:v:0:
608PyNumber_InPlaceAdd:PyObject*:w:0:
609
610PyNumber_InPlaceAnd:PyObject*::+1:
611PyNumber_InPlaceAnd:PyObject*:v:0:
612PyNumber_InPlaceAnd:PyObject*:w:0:
613
614PyNumber_InPlaceDivide:PyObject*::+1:
615PyNumber_InPlaceDivide:PyObject*:v:0:
616PyNumber_InPlaceDivide:PyObject*:w:0:
617
Fred Drake03590c62001-08-08 18:50:18 +0000618PyNumber_InPlaceFloorDivide:PyObject*::+1:
619PyNumber_InPlaceFloorDivide:PyObject*:v:0:
620PyNumber_InPlaceFloorDivide:PyObject*:w:0:
621
Fred Drake1fa93652000-09-22 18:19:37 +0000622PyNumber_InPlaceLshift:PyObject*::+1:
623PyNumber_InPlaceLshift:PyObject*:v:0:
624PyNumber_InPlaceLshift:PyObject*:w:0:
625
626PyNumber_InPlaceMultiply:PyObject*::+1:
627PyNumber_InPlaceMultiply:PyObject*:v:0:
628PyNumber_InPlaceMultiply:PyObject*:w:0:
629
630PyNumber_InPlaceOr:PyObject*::+1:
631PyNumber_InPlaceOr:PyObject*:v:0:
632PyNumber_InPlaceOr:PyObject*:w:0:
633
634PyNumber_InPlacePower:PyObject*::+1:
635PyNumber_InPlacePower:PyObject*:v:0:
636PyNumber_InPlacePower:PyObject*:w:0:
637PyNumber_InPlacePower:PyObject*:z:0:
638
639PyNumber_InPlaceRemainder:PyObject*::+1:
640PyNumber_InPlaceRemainder:PyObject*:v:0:
641PyNumber_InPlaceRemainder:PyObject*:w:0:
642
643PyNumber_InPlaceRshift:PyObject*::+1:
644PyNumber_InPlaceRshift:PyObject*:v:0:
645PyNumber_InPlaceRshift:PyObject*:w:0:
646
647PyNumber_InPlaceSubtract:PyObject*::+1:
648PyNumber_InPlaceSubtract:PyObject*:v:0:
649PyNumber_InPlaceSubtract:PyObject*:w:0:
650
Fred Drake03590c62001-08-08 18:50:18 +0000651PyNumber_InPlaceTrueDivide:PyObject*::+1:
652PyNumber_InPlaceTrueDivide:PyObject*:v:0:
653PyNumber_InPlaceTrueDivide:PyObject*:w:0:
654
Fred Drake1fa93652000-09-22 18:19:37 +0000655PyNumber_InPlaceXor:PyObject*::+1:
656PyNumber_InPlaceXor:PyObject*:v:0:
657PyNumber_InPlaceXor:PyObject*:w:0:
658
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000659PyNumber_Int:PyObject*::+1:
660PyNumber_Int:PyObject*:o:0:
661
662PyNumber_Invert:PyObject*::+1:
663PyNumber_Invert:PyObject*:o:0:
664
665PyNumber_Long:PyObject*::+1:
666PyNumber_Long:PyObject*:o:0:
667
668PyNumber_Lshift:PyObject*::+1:
669PyNumber_Lshift:PyObject*:o1:0:
670PyNumber_Lshift:PyObject*:o2:0:
671
672PyNumber_Multiply:PyObject*::+1:
673PyNumber_Multiply:PyObject*:o1:0:
674PyNumber_Multiply:PyObject*:o2:0:
675
676PyNumber_Negative:PyObject*::+1:
677PyNumber_Negative:PyObject*:o:0:
678
679PyNumber_Or:PyObject*::+1:
680PyNumber_Or:PyObject*:o1:0:
681PyNumber_Or:PyObject*:o2:0:
682
683PyNumber_Positive:PyObject*::+1:
684PyNumber_Positive:PyObject*:o:0:
685
686PyNumber_Power:PyObject*::+1:
687PyNumber_Power:PyObject*:o1:0:
688PyNumber_Power:PyObject*:o2:0:
689PyNumber_Power:PyObject*:o3:0:
690
691PyNumber_Remainder:PyObject*::+1:
692PyNumber_Remainder:PyObject*:o1:0:
693PyNumber_Remainder:PyObject*:o2:0:
694
695PyNumber_Rshift:PyObject*::+1:
696PyNumber_Rshift:PyObject*:o1:0:
697PyNumber_Rshift:PyObject*:o2:0:
698
699PyNumber_Subtract:PyObject*::+1:
700PyNumber_Subtract:PyObject*:o1:0:
701PyNumber_Subtract:PyObject*:o2:0:
702
Fred Drake03590c62001-08-08 18:50:18 +0000703PyNumber_TrueDivide:PyObject*::+1:
704PyNumber_TrueDivide:PyObject*:v:0:
705PyNumber_TrueDivide:PyObject*:w:0:
706
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000707PyNumber_Xor:PyObject*::+1:
708PyNumber_Xor:PyObject*:o1:0:
709PyNumber_Xor:PyObject*:o2:0:
710
711PyOS_GetLastModificationTime:long:::
712PyOS_GetLastModificationTime:char*:filename::
713
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000714PyObject_AsFileDescriptor:int:::
715PyObject_AsFileDescriptor:PyObject*:o:0:
716
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000717PyObject_CallFunction:PyObject*::+1:
718PyObject_CallFunction:PyObject*:callable_object:0:
719PyObject_CallFunction:char*:format::
720PyObject_CallFunction::...::
721
Fred Drake81c7aa22001-10-26 16:29:22 +0000722PyObject_CallFunctionObArgs:PyObject*::+1:
723PyObject_CallFunctionObArgs:PyObject*:callable:0:
724PyObject_CallFunctionObArgs::...::
725
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000726PyObject_CallMethod:PyObject*::+1:
727PyObject_CallMethod:PyObject*:o:0:
728PyObject_CallMethod:char*:m::
729PyObject_CallMethod:char*:format::
730PyObject_CallMethod::...::
731
Fred Drake81c7aa22001-10-26 16:29:22 +0000732PyObject_CallMethodObArgs:PyObject*::+1:
733PyObject_CallMethodObArgs:PyObject*:o:0:
734PyObject_CallMethodObArgs:char*:name::
735PyObject_CallMethodObArgs::...::
736
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000737PyObject_CallObject:PyObject*::+1:
738PyObject_CallObject:PyObject*:callable_object:0:
739PyObject_CallObject:PyObject*:args:0:
740
741PyObject_Cmp:int:::
742PyObject_Cmp:PyObject*:o1:0:
743PyObject_Cmp:PyObject*:o2:0:
744PyObject_Cmp:int*:result::
745
746PyObject_Compare:int:::
747PyObject_Compare:PyObject*:o1:0:
748PyObject_Compare:PyObject*:o2:0:
749
750PyObject_DelAttr:int:::
751PyObject_DelAttr:PyObject*:o:0:
752PyObject_DelAttr:PyObject*:attr_name:0:
753
754PyObject_DelAttrString:int:::
755PyObject_DelAttrString:PyObject*:o:0:
756PyObject_DelAttrString:char*:attr_name::
757
758PyObject_DelItem:int:::
759PyObject_DelItem:PyObject*:o:0:
760PyObject_DelItem:PyObject*:key:0:
761
Fred Drake9c75ff72001-09-06 18:06:46 +0000762PyObject_Dir:PyObject*::+1:
763PyObject_Dir:PyObject*:o:0:
764
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000765PyObject_GetAttr:PyObject*::+1:
766PyObject_GetAttr:PyObject*:o:0:
767PyObject_GetAttr:PyObject*:attr_name:0:
768
769PyObject_GetAttrString:PyObject*::+1:
770PyObject_GetAttrString:PyObject*:o:0:
771PyObject_GetAttrString:char*:attr_name::
772
773PyObject_GetItem:PyObject*::+1:
774PyObject_GetItem:PyObject*:o:0:
775PyObject_GetItem:PyObject*:key:0:
776
777PyObject_HasAttr:int:::
778PyObject_HasAttr:PyObject*:o:0:
779PyObject_HasAttr:PyObject*:attr_name:0:
780
781PyObject_HasAttrString:int:::
782PyObject_HasAttrString:PyObject*:o:0:
783PyObject_HasAttrString:char*:attr_name:0:
784
785PyObject_Hash:int:::
786PyObject_Hash:PyObject*:o:0:
787
788PyObject_IsTrue:int:::
789PyObject_IsTrue:PyObject*:o:0:
790
Fred Drakef913e542000-09-12 20:17:17 +0000791PyObject_Init:PyObject*::0:
792PyObject_Init:PyObject*:op:0:
793
794PyObject_InitVar:PyVarObject*::0:
795PyObject_InitVar:PyVarObject*:op:0:
796
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000797PyObject_Length:int:::
798PyObject_Length:PyObject*:o:0:
799
Fred Drake8e0c09d2001-07-06 23:31:49 +0000800PyObject_NEW:PyObject*::+1:
801
802PyObject_New:PyObject*::+1:
803
804PyObject_NEW_VAR:PyObject*::+1:
805
806PyObject_NewVar:PyObject*::+1:
807
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000808PyObject_Print:int:::
809PyObject_Print:PyObject*:o:0:
810PyObject_Print:FILE*:fp::
811PyObject_Print:int:flags::
812
813PyObject_Repr:PyObject*::+1:
814PyObject_Repr:PyObject*:o:0:
815
816PyObject_SetAttr:int:::
817PyObject_SetAttr:PyObject*:o:0:
818PyObject_SetAttr:PyObject*:attr_name:0:
819PyObject_SetAttr:PyObject*:v:+1:
820
821PyObject_SetAttrString:int:::
822PyObject_SetAttrString:PyObject*:o:0:
823PyObject_SetAttrString:char*:attr_name::
824PyObject_SetAttrString:PyObject*:v:+1:
825
826PyObject_SetItem:int:::
827PyObject_SetItem:PyObject*:o:0:
828PyObject_SetItem:PyObject*:key:0:
829PyObject_SetItem:PyObject*:v:+1:
830
831PyObject_Str:PyObject*::+1:
832PyObject_Str:PyObject*:o:0:
833
834PyObject_Type:PyObject*::+1:
835PyObject_Type:PyObject*:o:0:
836
Fred Drakeb2625eb2001-05-29 15:34:06 +0000837PyObject_Unicode:PyObject*::+1:
838PyObject_Unicode:PyObject*:o:0:
839
Fred Drake805bf1b1999-10-20 16:03:38 +0000840PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000841PyParser_SimpleParseFile:FILE*:fp::
842PyParser_SimpleParseFile:char*:filename::
843PyParser_SimpleParseFile:int:start::
844
Fred Drake805bf1b1999-10-20 16:03:38 +0000845PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000846PyParser_SimpleParseString:char*:str::
847PyParser_SimpleParseString:int:start::
848
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000849PyRun_AnyFile:int:::
850PyRun_AnyFile:FILE*:fp::
851PyRun_AnyFile:char*:filename::
852
Fred Drake4ca744c2000-08-12 03:39:47 +0000853PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000854PyRun_File:FILE*:fp::
855PyRun_File:char*:filename::
856PyRun_File:int:start::
857PyRun_File:PyObject*:globals:0:
858PyRun_File:PyObject*:locals:0:
859
860PyRun_InteractiveLoop:int:::
861PyRun_InteractiveLoop:FILE*:fp::
862PyRun_InteractiveLoop:char*:filename::
863
864PyRun_InteractiveOne:int:::
865PyRun_InteractiveOne:FILE*:fp::
866PyRun_InteractiveOne:char*:filename::
867
868PyRun_SimpleFile:int:::
869PyRun_SimpleFile:FILE*:fp::
870PyRun_SimpleFile:char*:filename::
871
872PyRun_SimpleString:int:::
873PyRun_SimpleString:char*:command::
874
Fred Drake4ca744c2000-08-12 03:39:47 +0000875PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000876PyRun_String:char*:str::
877PyRun_String:int:start::
878PyRun_String:PyObject*:globals:0:
879PyRun_String:PyObject*:locals:0:
880
Fred Draked61d0d32001-09-23 02:05:26 +0000881PySeqIter_New:PyObject*::+1:
882PySeqIter_New:PyObject*:seq::
883
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000884PySequence_Check:int:::
885PySequence_Check:PyObject*:o:0:
886
887PySequence_Concat:PyObject*::+1:
888PySequence_Concat:PyObject*:o1:0:
889PySequence_Concat:PyObject*:o2:0:
890
891PySequence_Count:int:::
892PySequence_Count:PyObject*:o:0:
893PySequence_Count:PyObject*:value:0:
894
895PySequence_DelItem:int:::
896PySequence_DelItem:PyObject*:o:0:
897PySequence_DelItem:int:i::
898
899PySequence_DelSlice:int:::
900PySequence_DelSlice:PyObject*:o:0:
901PySequence_DelSlice:int:i1::
902PySequence_DelSlice:int:i2::
903
Fred Drake81cccb72000-09-12 15:22:05 +0000904PySequence_Fast:PyObject*::+1:
905PySequence_Fast:PyObject*:v:0:
906PySequence_Fast:const char*:m::
907
908PySequence_Fast_GET_ITEM:PyObject*::0:
909PySequence_Fast_GET_ITEM:PyObject*:o:0:
910PySequence_Fast_GET_ITEM:int:i::
911
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000912PySequence_GetItem:PyObject*::+1:
913PySequence_GetItem:PyObject*:o:0:
914PySequence_GetItem:int:i::
915
916PySequence_GetSlice:PyObject*::+1:
917PySequence_GetSlice:PyObject*:o:0:
918PySequence_GetSlice:int:i1::
919PySequence_GetSlice:int:i2::
920
921PySequence_In:int:::
922PySequence_In:PyObject*:o:0:
923PySequence_In:PyObject*:value:0:
924
925PySequence_Index:int:::
926PySequence_Index:PyObject*:o:0:
927PySequence_Index:PyObject*:value:0:
928
Fred Drake1fa93652000-09-22 18:19:37 +0000929PySequence_InPlaceConcat:PyObject*::+1:
930PySequence_InPlaceConcat:PyObject*:s:0:
931PySequence_InPlaceConcat:PyObject*:o:0:
932
933PySequence_InPlaceRepeat:PyObject*::+1:
934PySequence_InPlaceRepeat:PyObject*:s:0:
935PySequence_InPlaceRepeat:PyObject*:o:0:
936
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000937PySequence_Repeat:PyObject*::+1:
938PySequence_Repeat:PyObject*:o:0:
939PySequence_Repeat:int:count::
940
941PySequence_SetItem:int:::
942PySequence_SetItem:PyObject*:o:0:
943PySequence_SetItem:int:i::
944PySequence_SetItem:PyObject*:v:+1:
945
946PySequence_SetSlice:int:::
947PySequence_SetSlice:PyObject*:o:0:
948PySequence_SetSlice:int:i1::
949PySequence_SetSlice:int:i2::
950PySequence_SetSlice:PyObject*:v:+1:
951
Fred Drake1c2d06a2000-06-16 20:00:04 +0000952PySequence_List:PyObject*::+1:
953PySequence_List:PyObject*:o:0:
954
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000955PySequence_Tuple:PyObject*::+1:
956PySequence_Tuple:PyObject*:o:0:
957
Fred Drake23a78cf2001-09-24 15:29:47 +0000958PySlice_Check:int:::
959PySlice_Check:PyObject*:ob:0:
960
961PySlice_New:PyObject*::+1:
962PySlice_New:PyObject*:start:0:
963PySlice_New:PyObject*:stop:0:
964PySlice_New:PyObject*:step:0:
965
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000966PyString_AS_STRING:char*:::
967PyString_AS_STRING:PyObject*:string:0:
968
Fred Drakeb2625eb2001-05-29 15:34:06 +0000969PyString_AsDecodedObject:PyObject*::+1:
970PyString_AsDecodedObject:PyObject*:str:0:
971PyString_AsDecodedObject:const char*:encoding::
972PyString_AsDecodedObject:const char*:errors::
973
974PyString_AsEncodedObject:PyObject*::+1:
975PyString_AsEncodedObject:PyObject*:str:0:
976PyString_AsEncodedObject:const char*:encoding::
977PyString_AsEncodedObject:const char*:errors::
978
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000979PyString_AsString:char*:::
980PyString_AsString:PyObject*:string:0:
981
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +0000982PyString_AsStringAndSize:int:::
983PyString_AsStringAndSize:PyObject*:obj:0:
984PyString_AsStringAndSize:char**:buffer::
985PyString_AsStringAndSize:int*:length::
986
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000987PyString_Check:int:::
988PyString_Check:PyObject*:o:0:
989
990PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000991PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000992PyString_Concat:PyObject*:newpart:0:
993
994PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000995PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000996PyString_ConcatAndDel:PyObject*:newpart:-1:
997
998PyString_Format:PyObject*::+1:
999PyString_Format:PyObject*:format:0:
1000PyString_Format:PyObject*:args:0:
1001
1002PyString_FromString:PyObject*::+1:
1003PyString_FromString:const char*:v::
1004
1005PyString_FromStringAndSize:PyObject*::+1:
1006PyString_FromStringAndSize:const char*:v::
1007PyString_FromStringAndSize:int:len::
1008
Barry Warsaw8c64a542001-08-28 02:32:04 +00001009PyString_FromFormat:PyObject*::+1:
1010PyString_FromFormat:const char*:format::
1011PyString_FromFormat::...::
1012
1013PyString_FromFormatV:PyObject*::+1:
1014PyString_FromFormatV:const char*:format::
1015PyString_FromFormatV:va_list:vargs::
1016
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001017PyString_GET_SIZE:int:::
1018PyString_GET_SIZE:PyObject*:string:0:
1019
1020PyString_InternFromString:PyObject*::+1:
1021PyString_InternFromString:const char*:v::
1022
1023PyString_InternInPlace:void:::
1024PyString_InternInPlace:PyObject**:string:+1:???
1025
1026PyString_Size:int:::
1027PyString_Size:PyObject*:string:0:
1028
Marc-André Lemburg47073202000-07-07 15:48:54 +00001029PyString_Decode:PyObject*::+1:
1030PyString_Decode:const char*:s::
1031PyString_Decode:int:size::
1032PyString_Decode:const char*:encoding::
1033PyString_Decode:const char*:errors::
1034
1035PyString_Encode:PyObject*::+1:
1036PyString_Encode:const char*:s::
1037PyString_Encode:int:size::
1038PyString_Encode:const char*:encoding::
1039PyString_Encode:const char*:errors::
1040
1041PyString_AsEncodedString:PyObject*::+1:
1042PyString_AsEncodedString:PyObject*:str::
1043PyString_AsEncodedString:const char*:encoding::
1044PyString_AsEncodedString:const char*:errors::
1045
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001046PySys_SetArgv:int:::
1047PySys_SetArgv:int:argc::
1048PySys_SetArgv:char**:argv::
1049
1050PyThreadState_Clear:void:::
1051PyThreadState_Clear:PyThreadState*:tstate::
1052
1053PyThreadState_Delete:void:::
1054PyThreadState_Delete:PyThreadState*:tstate::
1055
1056PyThreadState_Get:PyThreadState*:::
1057
Fred Drakeb2625eb2001-05-29 15:34:06 +00001058PyThreadState_GetDict:PyObject*::0:
1059
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001060PyThreadState_New:PyThreadState*:::
1061PyThreadState_New:PyInterpreterState*:interp::
1062
1063PyThreadState_Swap:PyThreadState*:::
1064PyThreadState_Swap:PyThreadState*:tstate::
1065
1066PyTuple_Check:int:::
1067PyTuple_Check:PyObject*:p:0:
1068
1069PyTuple_GET_ITEM:PyObject*::0:
1070PyTuple_GET_ITEM:PyTupleObject*:p:0:
1071PyTuple_GET_ITEM:int:pos::
1072
1073PyTuple_GetItem:PyObject*::0:
1074PyTuple_GetItem:PyTupleObject*:p:0:
1075PyTuple_GetItem:int:pos::
1076
1077PyTuple_GetSlice:PyObject*::+1:
1078PyTuple_GetSlice:PyTupleObject*:p:0:
1079PyTuple_GetSlice:int:low::
1080PyTuple_GetSlice:int:high::
1081
1082PyTuple_New:PyObject*::+1:
1083PyTuple_New:int:len::
1084
1085PyTuple_SET_ITEM:void:::
1086PyTuple_SET_ITEM:PyTupleObject*:p:0:
1087PyTuple_SET_ITEM:int:pos::
1088PyTuple_SET_ITEM:PyObject*:o:0:
1089
1090PyTuple_SetItem:int:::
1091PyTuple_SetItem:PyTupleObject*:p:0:
1092PyTuple_SetItem:int:pos::
1093PyTuple_SetItem:PyObject*:o:0:
1094
1095PyTuple_Size:int:::
1096PyTuple_Size:PyTupleObject*:p:0:
1097
Fred Drake992fe5a2000-06-16 21:04:15 +00001098PyUnicode_Check:int:::
1099PyUnicode_Check:PyObject*:o:0:
1100
1101PyUnicode_GET_SIZE:int:::
1102PyUnicode_GET_SIZE:PyObject*:o:0:
1103
1104PyUnicode_GET_DATA_SIZE:int:::
1105PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1106
1107PyUnicode_AS_UNICODE:Py_UNICODE*:::
1108PyUnicode_AS_UNICODE:PyObject*:o:0:
1109
1110PyUnicode_AS_DATA:const char*:::
1111PyUnicode_AS_DATA:PyObject*:o:0:
1112
1113Py_UNICODE_ISSPACE:int:::
1114Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1115
1116Py_UNICODE_ISLOWER:int:::
1117Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1118
1119Py_UNICODE_ISUPPER:int:::
1120Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1121
1122Py_UNICODE_ISTITLE:int:::
1123Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1124
1125Py_UNICODE_ISLINEBREAK:int:::
1126Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1127
1128Py_UNICODE_ISDECIMAL:int:::
1129Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1130
1131Py_UNICODE_ISDIGIT:int:::
1132Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1133
1134Py_UNICODE_ISNUMERIC:int:::
1135Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1136
1137Py_UNICODE_TOLOWER:Py_UNICODE:::
1138Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1139
1140Py_UNICODE_TOUPPER:Py_UNICODE:::
1141Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1142
1143Py_UNICODE_TOTITLE:Py_UNICODE:::
1144Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1145
1146Py_UNICODE_TODECIMAL:int:::
1147Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1148
1149Py_UNICODE_TODIGIT:int:::
1150Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1151
1152Py_UNICODE_TONUMERIC:double:::
1153Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1154
1155PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001156PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001157PyUnicode_FromUnicode:int:size::
1158
1159PyUnicode_AsUnicode:Py_UNICODE*:::
1160PyUnicode_AsUnicode:PyObject :*unicode:0:
1161
1162PyUnicode_GetSize:int:::
1163PyUnicode_GetSize:PyObject :*unicode:0:
1164
1165PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001166PyUnicode_FromObject:PyObject*:*obj:0:
1167
1168PyUnicode_FromEncodedObject:PyObject*::+1:
1169PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1170PyUnicode_FromEncodedObject:const char*:encoding::
1171PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001172
1173PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001174PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001175PyUnicode_FromWideChar:int:size::
1176
1177PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001178PyUnicode_AsWideChar:PyObject*:*unicode:0:
1179PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001180PyUnicode_AsWideChar:int:size::
1181
1182PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001183PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001184PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001185PyUnicode_Decode:const char*:encoding::
1186PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001187
1188PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001189PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001190PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001191PyUnicode_Encode:const char*:encoding::
1192PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001193
1194PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001195PyUnicode_AsEncodedString:PyObject*:unicode::
1196PyUnicode_AsEncodedString:const char*:encoding::
1197PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001198
1199PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001200PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001201PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001202PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001203
1204PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001205PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001206PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001207PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001208
1209PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001210PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001211
1212PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001213PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001214PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001215PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001216PyUnicode_DecodeUTF16:int*:byteorder::
1217
1218PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001219PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001220PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001221PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001222PyUnicode_EncodeUTF16:int:byteorder::
1223
1224PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001225PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001226
1227PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001228PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001229PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001230PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001231
1232PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001233PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001234PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001235PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001236
1237PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001238PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001239
1240PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001241PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001242PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001243PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001244
1245PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001246PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001247PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001248PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001249
1250PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001251PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001252
1253PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001254PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001255PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001256PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001257
1258PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001259PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001260PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001261PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001262
1263PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001264PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001265
1266PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001267PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001268PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001269PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001270
1271PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001272PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001273PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001274PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001275
1276PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001277PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001278
1279PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001280PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001281PyUnicode_DecodeCharmap:int:size::
1282PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001283PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001284
1285PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001286PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001287PyUnicode_EncodeCharmap:int:size::
1288PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001289PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001290
1291PyUnicode_AsCharmapString:PyObject*::+1:
1292PyUnicode_AsCharmapString:PyObject*:unicode:0:
1293PyUnicode_AsCharmapString:PyObject*:mapping:0:
1294
1295PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001296PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001297PyUnicode_TranslateCharmap:int:size::
1298PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001299PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001300
1301PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001302PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001303PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001304PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001305
1306PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001307PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001308PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001309PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001310
1311PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001312PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001313
1314PyUnicode_Concat:PyObject*::+1:
1315PyUnicode_Concat:PyObject*:left:0:
1316PyUnicode_Concat:PyObject*:right:0:
1317
1318PyUnicode_Split:PyObject*::+1:
1319PyUnicode_Split:PyObject*:left:0:
1320PyUnicode_Split:PyObject*:right:0:
1321PyUnicode_Split:int:maxsplit::
1322
1323PyUnicode_Splitlines:PyObject*::+1:
1324PyUnicode_Splitlines:PyObject*:s:0:
1325PyUnicode_Splitlines:int:maxsplit::
1326
1327PyUnicode_Translate:PyObject*::+1:
1328PyUnicode_Translate:PyObject*:str:0:
1329PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001330PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001331
1332PyUnicode_Join:PyObject*::+1:
1333PyUnicode_Join:PyObject*:separator:0:
1334PyUnicode_Join:PyObject*:seq:0:
1335
1336PyUnicode_Tailmatch:PyObject*::+1:
1337PyUnicode_Tailmatch:PyObject*:str:0:
1338PyUnicode_Tailmatch:PyObject*:substr:0:
1339PyUnicode_Tailmatch:int:start::
1340PyUnicode_Tailmatch:int:end::
1341PyUnicode_Tailmatch:int:direction::
1342
1343PyUnicode_Find:PyObject*::+1:
1344PyUnicode_Find:PyObject*:str:0:
1345PyUnicode_Find:PyObject*:substr:0:
1346PyUnicode_Find:int:start::
1347PyUnicode_Find:int:end::
1348PyUnicode_Find:int:direction::
1349
1350PyUnicode_Count:PyObject*::+1:
1351PyUnicode_Count:PyObject*:str:0:
1352PyUnicode_Count:PyObject*:substr:0:
1353PyUnicode_Count:int:start::
1354PyUnicode_Count:int:end::
1355
1356PyUnicode_Replace:PyObject*::+1:
1357PyUnicode_Replace:PyObject*:str:0:
1358PyUnicode_Replace:PyObject*:substr:0:
1359PyUnicode_Replace:PyObject*:replstr:0:
1360PyUnicode_Replace:int:maxcount::
1361
1362PyUnicode_Compare:int:::
1363PyUnicode_Compare:PyObject*:left:0:
1364PyUnicode_Compare:PyObject*:right:0:
1365
1366PyUnicode_Format:PyObject*::+1:
1367PyUnicode_Format:PyObject*:format:0:
1368PyUnicode_Format:PyObject*:args:0:
1369
1370PyUnicode_Contains:int:::
1371PyUnicode_Contains:PyObject*:container:0:
1372PyUnicode_Contains:PyObject*:element:0:
1373
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001374Py_AtExit:int:::
1375Py_AtExit:void (*)():func::
1376
Fred Drake6d988552001-07-20 20:55:31 +00001377Py_BuildValue:PyObject*::+1:
1378Py_BuildValue:char*:format::
1379
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001380Py_CompileString:PyObject*::+1:
1381Py_CompileString:char*:str::
1382Py_CompileString:char*:filename::
1383Py_CompileString:int:start::
1384
1385Py_DECREF:void:::
1386Py_DECREF:PyObject*:o:-1:
1387
1388Py_EndInterpreter:void:::
1389Py_EndInterpreter:PyThreadState*:tstate::
1390
1391Py_Exit:void:::
1392Py_Exit:int:status::
1393
1394Py_FatalError:void:::
1395Py_FatalError:char*:message::
1396
1397Py_FdIsInteractive:int:::
1398Py_FdIsInteractive:FILE*:fp::
1399Py_FdIsInteractive:char*:filename::
1400
1401Py_Finalize:void:::
1402
Fred Drake8520cc22000-04-10 19:38:24 +00001403Py_FindMethod:PyObject*::+1:
1404Py_FindMethod:PyMethodDef[]:methods::
1405Py_FindMethod:PyObject*:self:+1:
1406Py_FindMethod:char*:name::
1407
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001408Py_GetBuildInfoconst:char*:::
1409
1410Py_GetCompilerconst:char*:::
1411
1412Py_GetCopyrightconst:char*:::
1413
1414Py_GetExecPrefix:char*:::
1415
1416Py_GetPath:char*:::
1417
1418Py_GetPlatformconst:char*:::
1419
1420Py_GetPrefix:char*:::
1421
1422Py_GetProgramFullPath:char*:::
1423
1424Py_GetProgramName:char*:::
1425
1426Py_GetVersionconst:char*:::
1427
1428Py_INCREF:void:::
1429Py_INCREF:PyObject*:o:+1:
1430
1431Py_Initialize:void:::
1432
1433Py_IsInitialized:int:::
1434
1435Py_NewInterpreter:PyThreadState*:::
1436
1437Py_SetProgramName:void:::
1438Py_SetProgramName:char*:name::
1439
1440Py_XDECREF:void:::
1441Py_XDECREF:PyObject*:o:-1:if o is not NULL
1442
1443Py_XINCREF:void:::
1444Py_XINCREF:PyObject*:o:+1:if o is not NULL
1445
1446_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1447_PyImport_FindExtension:char*:::
1448_PyImport_FindExtension:char*:::
1449
1450_PyImport_Fini:void:::
1451
1452_PyImport_FixupExtension:PyObject*:::???
1453_PyImport_FixupExtension:char*:::
1454_PyImport_FixupExtension:char*:::
1455
1456_PyImport_Init:void:::
1457
Fred Drakef913e542000-09-12 20:17:17 +00001458_PyObject_Del:void:::
1459_PyObject_Del:PyObject*:op:0:
1460
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001461_PyObject_New:PyObject*::+1:
1462_PyObject_New:PyTypeObject*:type:0:
1463
Fred Drake8e0c09d2001-07-06 23:31:49 +00001464_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001465_PyObject_NewVar:PyTypeObject*:type:0:
1466_PyObject_NewVar:int:size::
1467
1468_PyString_Resize:int:::
1469_PyString_Resize:PyObject**:string:+1:
1470_PyString_Resize:int:newsize::
1471
1472_PyTuple_Resize:int:::
1473_PyTuple_Resize:PyTupleObject**:p:+1:
1474_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001475
1476_Py_c_diff:Py_complex:::
1477_Py_c_diff:Py_complex:left::
1478_Py_c_diff:Py_complex:right::
1479
1480_Py_c_neg:Py_complex:::
1481_Py_c_neg:Py_complex:complex::
1482
1483_Py_c_pow:Py_complex:::
1484_Py_c_pow:Py_complex:num::
1485_Py_c_pow:Py_complex:exp::
1486
1487_Py_c_prod:Py_complex:::
1488_Py_c_prod:Py_complex:left::
1489_Py_c_prod:Py_complex:right::
1490
1491_Py_c_quot:Py_complex:::
1492_Py_c_quot:Py_complex:dividend::
1493_Py_c_quot:Py_complex:divisor::
1494
1495_Py_c_sum:Py_complex:::
1496_Py_c_sum:Py_complex:left::
1497_Py_c_sum:Py_complex:right::