blob: a8f3817e76ffe3c0e2defc71e1b8fd1f646d7328 [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 Drakecd8474e2001-11-26 21:29:17 +000070PyCell_New:PyObject*::+1:
71PyCell_New:PyObject*:ob:0:
72
73PyCell_GET:PyObject*::0:
74PyCell_GET:PyObject*:ob:0:
75
76PyCell_Get:PyObject*::+1:
77PyCell_Get:PyObject*:cell:0:
78
79PyCell_SET:void:::
80PyCell_SET:PyObject*:cell:0:
81PyCell_SET:PyObject*:value:0:
82
83PyCell_Set:int:::
84PyCell_Set:PyObject*:cell:0:
85PyCell_Set:PyObject*:value:0:
86
Fred Draked61d0d32001-09-23 02:05:26 +000087PyCallIter_New:PyObject*::+1:
88PyCallIter_New:PyObject*:callable::
89PyCallIter_New:PyObject*:sentinel::
90
Fred Drake7b7dc6b1999-10-20 15:06:24 +000091PyCallable_Check:int:::
92PyCallable_Check:PyObject*:o:0:
93
94PyComplex_AsCComplex:Py_complex:::
95PyComplex_AsCComplex:PyObject*:op:0:
96
97PyComplex_Check:int:::
98PyComplex_Check:PyObject*:p:0:
99
100PyComplex_FromCComplex:PyObject*::+1:
101PyComplex_FromCComplex::Py_complex v::
102
103PyComplex_FromDoubles:PyObject*::+1:
104PyComplex_FromDoubles::double real::
105PyComplex_FromDoubles::double imag::
106
107PyComplex_ImagAsDouble:double:::
108PyComplex_ImagAsDouble:PyObject*:op:0:
109
110PyComplex_RealAsDouble:double:::
111PyComplex_RealAsDouble:PyObject*:op:0:
112
Fred Drake23a78cf2001-09-24 15:29:47 +0000113PyDescr_NewGetSet:PyObject*::+1:
114PyDescr_NewGetSet:PyTypeObject*:type::
115PyDescr_NewGetSet:PyGetSetDef*:getset::
116
117PyDescr_NewMember:PyObject*::+1:
118PyDescr_NewMember:PyTypeObject*:type::
119PyDescr_NewMember:PyMemberDef*:member::
120
121PyDescr_NewMethod:PyObject*::+1:
122PyDescr_NewMethod:PyTypeObject*:type::
123PyDescr_NewMethod:PyMethodDef*:meth::
124
125PyDescr_NewWrapper:PyObject*::+1:
126PyDescr_NewWrapper:PyTypeObject*:type::
127PyDescr_NewWrapper:struct wrapperbase*:base::
128PyDescr_NewWrapper:void*:wrapped::
129
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000130PyDict_Check:int:::
131PyDict_Check:PyObject*:p:0:
132
133PyDict_Clear:void:::
Fred Drake81473b12001-01-08 05:53:53 +0000134PyDict_Clear:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000135
136PyDict_DelItem:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000137PyDict_DelItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000138PyDict_DelItem:PyObject*:key:0:
139
140PyDict_DelItemString:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000141PyDict_DelItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000142PyDict_DelItemString:char*:key::
143
Fred Drake805bf1b1999-10-20 16:03:38 +0000144PyDict_GetItem:PyObject*::0:0
Fred Drake81473b12001-01-08 05:53:53 +0000145PyDict_GetItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000146PyDict_GetItem:PyObject*:key:0:
147
Fred Drake805bf1b1999-10-20 16:03:38 +0000148PyDict_GetItemString:PyObject*::0:
Fred Drake81473b12001-01-08 05:53:53 +0000149PyDict_GetItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000150PyDict_GetItemString:char*:key::
151
152PyDict_Items:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000153PyDict_Items:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000154
155PyDict_Keys:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000156PyDict_Keys:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000157
158PyDict_New:PyObject*::+1:
159
Jeremy Hyltona12c7a72000-03-30 22:27:31 +0000160PyDict_Copy:PyObject*::+1:
161PyDict_Copy:PyObject*:p:0:
162
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000163PyDict_Next:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000164PyDict_Next:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000165PyDict_Next:int:ppos::
166PyDict_Next:PyObject**:pkey:0:
167PyDict_Next:PyObject**:pvalue:0:
168
169PyDict_SetItem:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000170PyDict_SetItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000171PyDict_SetItem:PyObject*:key:+1:
172PyDict_SetItem:PyObject*:val:+1:
173
174PyDict_SetItemString:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000175PyDict_SetItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000176PyDict_SetItemString:char*:key::
177PyDict_SetItemString:PyObject*:val:+1:
178
179PyDict_Size:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000180PyDict_Size:PyObject*:p::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000181
182PyDict_Values:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000183PyDict_Values:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000184
Fred Drake23a78cf2001-09-24 15:29:47 +0000185PyDictProxy_New:PyObject*::+1:
186PyDictProxy_New:PyObject*:dict:0:
187
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000188PyErr_BadArgument:int:::
189
190PyErr_BadInternalCall:void:::
191
192PyErr_CheckSignals:int:::
193
194PyErr_Clear:void:::
195
196PyErr_ExceptionMatches:int:::
197PyErr_ExceptionMatches:PyObject*:exc:0:
198
199PyErr_Fetch:void:::
200PyErr_Fetch:PyObject**:ptype:0:
201PyErr_Fetch:PyObject**:pvalue:0:
202PyErr_Fetch:PyObject**:ptraceback:0:
203
204PyErr_GivenExceptionMatches:int:::
205PyErr_GivenExceptionMatches:PyObject*:given:0:
206PyErr_GivenExceptionMatches:PyObject*:exc:0:
207
208PyErr_NewException:PyObject*::+1:
209PyErr_NewException:char*:name::
210PyErr_NewException:PyObject*:base:0:
211PyErr_NewException:PyObject*:dict:0:
212
Fred Drakedb2764d2000-04-10 18:25:09 +0000213PyErr_NoMemory:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000214
215PyErr_NormalizeException:void:::
216PyErr_NormalizeException:PyObject**:exc::???
217PyErr_NormalizeException:PyObject**:val::???
218PyErr_NormalizeException:PyObject**:tb::???
219
220PyErr_Occurred:PyObject*::0:
221
222PyErr_Print:void:::
223
224PyErr_Restore:void:::
Fred Drake34c391d2000-08-15 04:36:16 +0000225PyErr_Restore:PyObject*:type:-1:
226PyErr_Restore:PyObject*:value:-1:
227PyErr_Restore:PyObject*:traceback:-1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000228
Fred Drakedb2764d2000-04-10 18:25:09 +0000229PyErr_SetFromErrno:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000230PyErr_SetFromErrno:PyObject*:type:0:
231
Fred Drake9c75ff72001-09-06 18:06:46 +0000232PyErr_SetFromErrnoWithFilename:PyObject*::null:
233PyErr_SetFromErrnoWithFilename:PyObject*:type:0:
234PyErr_SetFromErrnoWithFilename:char*:filename::
235
Fred Drake7c1bb9c2002-07-02 16:16:18 +0000236PyErr_SetFromWindowsErr:PyObject*::null:
237PyErr_SetFromWindowsErr:int:ierr::
238
239PyErr_SetFromWindowsErrWithFilename:PyObject*::null:
240PyErr_SetFromWindowsErrWithFilename:int:ierr::
241PyErr_SetFromWindowsErrWithFilename:char*:filename::
242
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000243PyErr_SetInterrupt:void:::
244
245PyErr_SetNone:void:::
246PyErr_SetNone:PyObject*:type:+1:
247
248PyErr_SetObject:void:::
249PyErr_SetObject:PyObject*:type:+1:
250PyErr_SetObject:PyObject*:value:+1:
251
252PyErr_SetString:void:::
253PyErr_SetString:PyObject*:type:+1:
254PyErr_SetString:char*:message::
255
Jeremy Hylton98605b52000-04-10 18:40:57 +0000256PyErr_Format:PyObject*::null:
257PyErr_Format:PyObject*:exception:+1:
258PyErr_Format:char*:format::
259PyErr_Format::...::
260
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000261PyErr_Warn:int:::
Guido van Rossume22e4b22000-12-19 03:58:11 +0000262PyErr_Warn:PyObject*:category:0:
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000263PyErr_Warn:char*:message::
264
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000265PyEval_AcquireLock:void:::
266
267PyEval_AcquireThread:void:::
268PyEval_AcquireThread:PyThreadState*:tstate::
269
270PyEval_InitThreads:void:::
271
272PyEval_ReleaseLock:void:::
273
274PyEval_ReleaseThread:void:::
275PyEval_ReleaseThread:PyThreadState*:tstate::
276
277PyEval_RestoreThread:void:::
278PyEval_RestoreThread:PyThreadState*:tstate::
279
280PyEval_SaveThread:PyThreadState*:::
281
Fred Drake4ca744c2000-08-12 03:39:47 +0000282PyEval_EvalCode:PyObject*::+1:
283PyEval_EvalCode:PyCodeObject*:co:0:
284PyEval_EvalCode:PyObject*:globals:0:
285PyEval_EvalCode:PyObject*:locals:0:
286
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000287PyFile_AsFile:FILE*:::
288PyFile_AsFile:PyFileObject*:p:0:
289
290PyFile_Check:int:::
291PyFile_Check:PyObject*:p:0:
292
293PyFile_FromFile:PyObject*::+1:
294PyFile_FromFile:FILE*:fp::
295PyFile_FromFile:char*:name::
296PyFile_FromFile:char*:mode::
297PyFile_FromFile:int(*:close)::
298
299PyFile_FromString:PyObject*::+1:
300PyFile_FromString:char*:name::
301PyFile_FromString:char*:mode::
302
303PyFile_GetLine:PyObject*::+1:
304PyFile_GetLine:PyObject*:p::
305PyFile_GetLine:int:n::
306
307PyFile_Name:PyObject*::0:
308PyFile_Name:PyObject*:p:0:
309
310PyFile_SetBufSize:void:::
311PyFile_SetBufSize:PyFileObject*:p:0:
312PyFile_SetBufSize:int:n::
313
314PyFile_SoftSpace:int:::
315PyFile_SoftSpace:PyFileObject*:p:0:
316PyFile_SoftSpace:int:newflag::
317
318PyFile_WriteObject:int:::
319PyFile_WriteObject:PyObject*:obj:0:
320PyFile_WriteObject:PyFileObject*:p:0:
321PyFile_WriteObject:int:flags::
322
323PyFile_WriteString:int:::
Fred Drake454af892001-11-29 22:42:59 +0000324PyFile_WriteString:const char*:s::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000325PyFile_WriteString:PyFileObject*:p:0:
326PyFile_WriteString:int:flags::
327
328PyFloat_AS_DOUBLE:double:::
329PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
330
331PyFloat_AsDouble:double:::
332PyFloat_AsDouble:PyObject*:pyfloat:0:
333
334PyFloat_Check:int:::
335PyFloat_Check:PyObject*:p:0:
336
337PyFloat_FromDouble:PyObject*::+1:
338PyFloat_FromDouble:double:v::
339
Fred Drakeee814bf2000-11-28 22:34:32 +0000340Py_InitModule:PyObject*::0:
341Py_InitModule:name:char*::
342Py_InitModule:methods:PyMethodDef[]::
343
344Py_InitModule3:PyObject*::0:
345Py_InitModule3:name:char*::
346Py_InitModule3:methods:PyMethodDef[]::
347Py_InitModule3:doc:char*::
348
349Py_InitModule4:PyObject*::0:
350Py_InitModule4:name:char*::
351Py_InitModule4:methods:PyMethodDef[]::
352Py_InitModule4:doc:char*::
353Py_InitModule4:self:PyObject*::
354Py_InitModule4:apiver:int::usually provided by Py_InitModule or Py_InitModule3
355
Fred Drake805bf1b1999-10-20 16:03:38 +0000356PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000357PyImport_AddModule:char*:name::
358
359PyImport_Cleanup:void:::
360
361PyImport_ExecCodeModule:PyObject*::+1:
362PyImport_ExecCodeModule:char*:name::
363PyImport_ExecCodeModule:PyObject*:co:0:
364
365PyImport_GetMagicNumber:long:::
366
367PyImport_GetModuleDict:PyObject*::0:
368
369PyImport_Import:PyObject*::+1:
370PyImport_Import:PyObject*:name:0:
371
372PyImport_ImportFrozenModule:int:::
373PyImport_ImportFrozenModule:char*:::
374
Fred Drakeeb725cd2000-04-03 15:06:40 +0000375PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000376PyImport_ImportModule:char*:name::
377
Fred Drakeeb725cd2000-04-03 15:06:40 +0000378PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000379PyImport_ImportModuleEx:char*:name::
380PyImport_ImportModuleEx:PyObject*:globals:0:???
381PyImport_ImportModuleEx:PyObject*:locals:0:???
382PyImport_ImportModuleEx:PyObject*:fromlist:0:???
383
Fred Drakeeb725cd2000-04-03 15:06:40 +0000384PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000385PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000386
Fred Drake5838d0f2001-01-28 06:39:35 +0000387PyInstance_New:PyObject*::+1:
388PyInstance_New:PyObject*:klass:+1:
389PyInstance_New:PyObject*:arg:0:
390PyInstance_New:PyObject*:kw:0:
391
392PyInstance_NewRaw:PyObject*::+1:
393PyInstance_NewRaw:PyObject*:klass:+1:
394PyInstance_NewRaw:PyObject*:dict:+1:
395
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000396PyInt_AS_LONG:long:::
397PyInt_AS_LONG:PyIntObject*:io:0:
398
399PyInt_AsLong:long:::
400PyInt_AsLong:PyObject*:io:0:
401
402PyInt_Check:int:::
Fred Drake9c75ff72001-09-06 18:06:46 +0000403PyInt_Check:PyObject*:op:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000404
405PyInt_FromLong:PyObject*::+1:
406PyInt_FromLong:long:ival::
407
408PyInt_GetMax:long:::
409
410PyInterpreterState_Clear:void:::
411PyInterpreterState_Clear:PyInterpreterState*:interp::
412
413PyInterpreterState_Delete:void:::
414PyInterpreterState_Delete:PyInterpreterState*:interp::
415
416PyInterpreterState_New:PyInterpreterState*:::
417
Fred Drakeb2625eb2001-05-29 15:34:06 +0000418PyIter_Check:int:o:0:
419
420PyIter_Next:PyObject*::+1:
421PyIter_Next:PyObject*:o:0:
422
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000423PyList_Append:int:::
424PyList_Append:PyObject*:list:0:
425PyList_Append:PyObject*:item:+1:
426
427PyList_AsTuple:PyObject*::+1:
428PyList_AsTuple:PyObject*:list:0:
429
430PyList_Check:int:::
431PyList_Check:PyObject*:p:0:
432
433PyList_GET_ITEM:PyObject*::0:
434PyList_GET_ITEM:PyObject*:list:0:
435PyList_GET_ITEM:int:i:0:
436
437PyList_GET_SIZE:int:::
438PyList_GET_SIZE:PyObject*:list:0:
439
440PyList_GetItem:PyObject*::0:
441PyList_GetItem:PyObject*:list:0:
442PyList_GetItem:int:index::
443
444PyList_GetSlice:PyObject*::+1:
445PyList_GetSlice:PyObject*:list:0:
446PyList_GetSlice:int:low::
447PyList_GetSlice:int:high::
448
449PyList_Insert:int:::
450PyList_Insert:PyObject*:list:0:
451PyList_Insert:int:index::
452PyList_Insert:PyObject*:item:+1:
453
454PyList_New:PyObject*::+1:
455PyList_New:int:len::
456
457PyList_Reverse:int:::
458PyList_Reverse:PyObject*:list:0:
459
Fred Draked8548312001-07-10 16:19:13 +0000460PyList_SET_ITEM:void:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000461PyList_SET_ITEM:PyObject*:list:0:
462PyList_SET_ITEM:int:i::
463PyList_SET_ITEM:PyObject*:o:0:
464
465PyList_SetItem:int:::
466PyList_SetItem:PyObject*:list:0:
467PyList_SetItem:int:index::
468PyList_SetItem:PyObject*:item:0:
469
470PyList_SetSlice:int:::
471PyList_SetSlice:PyObject*:list:0:
472PyList_SetSlice:int:low::
473PyList_SetSlice:int:high::
474PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
475
476PyList_Size:int:::
477PyList_Size:PyObject*:list:0:
478
479PyList_Sort:int:::
480PyList_Sort:PyObject*:list:0:
481
482PyLong_AsDouble:double:::
483PyLong_AsDouble:PyObject*:pylong:0:
484
485PyLong_AsLong:long:::
486PyLong_AsLong:PyObject*:pylong:0:
487
488PyLong_AsUnsignedLong:unsigned long:::
489PyLong_AsUnsignedLong:PyObject*:pylong:0:
490
491PyLong_Check:int:::
492PyLong_Check:PyObject*:p:0:
493
494PyLong_FromDouble:PyObject*::+1:
495PyLong_FromDouble:double:v::
496
497PyLong_FromLong:PyObject*::+1:
498PyLong_FromLong:long:v::
499
Fred Drakef47d8ef2001-09-20 19:18:52 +0000500PyLong_FromLongLong:PyObject*::+1:
501PyLong_FromLongLong:long long:v::
502
503PyLong_FromUnsignedLongLong:PyObject*::+1:
504PyLong_FromUnsignedLongLong:unsigned long long:v::
505
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000506PyLong_FromString:PyObject*::+1:
507PyLong_FromString:char*:str::
508PyLong_FromString:char**:pend::
509PyLong_FromString:int:base::
510
Fred Drakef47d8ef2001-09-20 19:18:52 +0000511PyLong_FromUnicode:PyObject*::+1:
512PyLong_FromUnicode:Py_UNICODE:u::
513PyLong_FromUnicode:int:length::
514PyLong_FromUnicode:int:base::
515
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000516PyLong_FromUnsignedLong:PyObject*::+1:
517PyLong_FromUnsignedLong:unsignedlong:v::
518
Fred Drakef47d8ef2001-09-20 19:18:52 +0000519PyLong_FromVoidPtr:PyObject*::+1:
520PyLong_FromVoidPtr:void*:p::
521
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000522PyMapping_Check:int:::
523PyMapping_Check:PyObject*:o:0:
524
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000525PyMapping_DelItem:int:::
526PyMapping_DelItem:PyObject*:o:0:
527PyMapping_DelItem:PyObject*:key:0:
528
529PyMapping_DelItemString:int:::
530PyMapping_DelItemString:PyObject*:o:0:
531PyMapping_DelItemString:char*:key::
532
533PyMapping_GetItemString:PyObject*::+1:
534PyMapping_GetItemString:PyObject*:o:0:
535PyMapping_GetItemString:char*:key::
536
537PyMapping_HasKey:int:::
538PyMapping_HasKey:PyObject*:o:0:
539PyMapping_HasKey:PyObject*:key::
540
541PyMapping_HasKeyString:int:::
542PyMapping_HasKeyString:PyObject*:o:0:
543PyMapping_HasKeyString:char*:key::
544
545PyMapping_Items:PyObject*::+1:
546PyMapping_Items:PyObject*:o:0:
547
548PyMapping_Keys:PyObject*::+1:
549PyMapping_Keys:PyObject*:o:0:
550
551PyMapping_Length:int:::
552PyMapping_Length:PyObject*:o:0:
553
554PyMapping_SetItemString:int:::
555PyMapping_SetItemString:PyObject*:o:0:
556PyMapping_SetItemString:char*:key::
557PyMapping_SetItemString:PyObject*:v:+1:
558
559PyMapping_Values:PyObject*::+1:
560PyMapping_Values:PyObject*:o:0:
561
Fred Drake1b58bff2001-10-29 17:43:14 +0000562PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
563PyMarshal_ReadLastObjectFromFile:FILE*:file::
564
565PyMarshal_ReadObjectFromFile:PyObject*::+1:
566PyMarshal_ReadObjectFromFile:FILE*:file::
567
568PyMarshal_ReadObjectFromString:PyObject*::+1:
569PyMarshal_ReadObjectFromString:char*:string::
570PyMarshal_ReadObjectFromString:int:len::
571
572PyMarshal_WriteObjectToString:PyObject*::+1:
573PyMarshal_WriteObjectToString:PyObject*:value:0:
574
Fred Drake9c75ff72001-09-06 18:06:46 +0000575PyMethod_Class:PyObject*::0:
576PyMethod_Class:PyObject*:im:0:
577
578PyMethod_Function:PyObject*::0:
579PyMethod_Function:PyObject*:im:0:
580
581PyMethod_GET_CLASS:PyObject*::0:
582PyMethod_GET_CLASS:PyObject*:im:0:
583
584PyMethod_GET_FUNCTION:PyObject*::0:
585PyMethod_GET_FUNCTION:PyObject*:im:0:
586
587PyMethod_GET_SELF:PyObject*::0:
588PyMethod_GET_SELF:PyObject*:im:0:
589
590PyMethod_New:PyObject*::+1:
591PyMethod_New:PyObject*:func:0:
592PyMethod_New:PyObject*:self:0:
593PyMethod_New:PyObject*:class:0:
594
595PyMethod_Self:PyObject*::0:
596PyMethod_Self:PyObject*:im:0:
597
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000598PyModule_GetDict:PyObject*::0:
599PyModule_GetDict::PyObject* module:0:
600
601PyModule_GetFilename:char*:::
602PyModule_GetFilename:PyObject*:module:0:
603
604PyModule_GetName:char*:::
605PyModule_GetName:PyObject*:module:0:
606
607PyModule_New:PyObject*::+1:
608PyModule_New::char* name::
609
610PyNumber_Absolute:PyObject*::+1:
611PyNumber_Absolute:PyObject*:o:0:
612
613PyNumber_Add:PyObject*::+1:
614PyNumber_Add:PyObject*:o1:0:
615PyNumber_Add:PyObject*:o2:0:
616
617PyNumber_And:PyObject*::+1:
618PyNumber_And:PyObject*:o1:0:
619PyNumber_And:PyObject*:o2:0:
620
621PyNumber_Check:PyObject*:o:0:
622PyNumber_Check:int:::
623
624PyNumber_Coerce:int:::
625PyNumber_Coerce:PyObject**:p1:+1:
626PyNumber_Coerce:PyObject**:p2:+1:
627
628PyNumber_Divide:PyObject*::+1:
629PyNumber_Divide:PyObject*:o1:0:
630PyNumber_Divide:PyObject*:o2:0:
631
632PyNumber_Divmod:PyObject*::+1:
633PyNumber_Divmod:PyObject*:o1:0:
634PyNumber_Divmod:PyObject*:o2:0:
635
636PyNumber_Float:PyObject*::+1:
637PyNumber_Float:PyObject*:o:0:
638
Fred Drake03590c62001-08-08 18:50:18 +0000639PyNumber_FloorDivide:PyObject*::+1:
640PyNumber_FloorDivide:PyObject*:v:0:
641PyNumber_FloorDivide:PyObject*:w:0:
642
Fred Drake1fa93652000-09-22 18:19:37 +0000643PyNumber_InPlaceAdd:PyObject*::+1:
644PyNumber_InPlaceAdd:PyObject*:v:0:
645PyNumber_InPlaceAdd:PyObject*:w:0:
646
647PyNumber_InPlaceAnd:PyObject*::+1:
648PyNumber_InPlaceAnd:PyObject*:v:0:
649PyNumber_InPlaceAnd:PyObject*:w:0:
650
651PyNumber_InPlaceDivide:PyObject*::+1:
652PyNumber_InPlaceDivide:PyObject*:v:0:
653PyNumber_InPlaceDivide:PyObject*:w:0:
654
Fred Drake03590c62001-08-08 18:50:18 +0000655PyNumber_InPlaceFloorDivide:PyObject*::+1:
656PyNumber_InPlaceFloorDivide:PyObject*:v:0:
657PyNumber_InPlaceFloorDivide:PyObject*:w:0:
658
Fred Drake1fa93652000-09-22 18:19:37 +0000659PyNumber_InPlaceLshift:PyObject*::+1:
660PyNumber_InPlaceLshift:PyObject*:v:0:
661PyNumber_InPlaceLshift:PyObject*:w:0:
662
663PyNumber_InPlaceMultiply:PyObject*::+1:
664PyNumber_InPlaceMultiply:PyObject*:v:0:
665PyNumber_InPlaceMultiply:PyObject*:w:0:
666
667PyNumber_InPlaceOr:PyObject*::+1:
668PyNumber_InPlaceOr:PyObject*:v:0:
669PyNumber_InPlaceOr:PyObject*:w:0:
670
671PyNumber_InPlacePower:PyObject*::+1:
672PyNumber_InPlacePower:PyObject*:v:0:
673PyNumber_InPlacePower:PyObject*:w:0:
674PyNumber_InPlacePower:PyObject*:z:0:
675
676PyNumber_InPlaceRemainder:PyObject*::+1:
677PyNumber_InPlaceRemainder:PyObject*:v:0:
678PyNumber_InPlaceRemainder:PyObject*:w:0:
679
680PyNumber_InPlaceRshift:PyObject*::+1:
681PyNumber_InPlaceRshift:PyObject*:v:0:
682PyNumber_InPlaceRshift:PyObject*:w:0:
683
684PyNumber_InPlaceSubtract:PyObject*::+1:
685PyNumber_InPlaceSubtract:PyObject*:v:0:
686PyNumber_InPlaceSubtract:PyObject*:w:0:
687
Fred Drake03590c62001-08-08 18:50:18 +0000688PyNumber_InPlaceTrueDivide:PyObject*::+1:
689PyNumber_InPlaceTrueDivide:PyObject*:v:0:
690PyNumber_InPlaceTrueDivide:PyObject*:w:0:
691
Fred Drake1fa93652000-09-22 18:19:37 +0000692PyNumber_InPlaceXor:PyObject*::+1:
693PyNumber_InPlaceXor:PyObject*:v:0:
694PyNumber_InPlaceXor:PyObject*:w:0:
695
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000696PyNumber_Int:PyObject*::+1:
697PyNumber_Int:PyObject*:o:0:
698
699PyNumber_Invert:PyObject*::+1:
700PyNumber_Invert:PyObject*:o:0:
701
702PyNumber_Long:PyObject*::+1:
703PyNumber_Long:PyObject*:o:0:
704
705PyNumber_Lshift:PyObject*::+1:
706PyNumber_Lshift:PyObject*:o1:0:
707PyNumber_Lshift:PyObject*:o2:0:
708
709PyNumber_Multiply:PyObject*::+1:
710PyNumber_Multiply:PyObject*:o1:0:
711PyNumber_Multiply:PyObject*:o2:0:
712
713PyNumber_Negative:PyObject*::+1:
714PyNumber_Negative:PyObject*:o:0:
715
716PyNumber_Or:PyObject*::+1:
717PyNumber_Or:PyObject*:o1:0:
718PyNumber_Or:PyObject*:o2:0:
719
720PyNumber_Positive:PyObject*::+1:
721PyNumber_Positive:PyObject*:o:0:
722
723PyNumber_Power:PyObject*::+1:
724PyNumber_Power:PyObject*:o1:0:
725PyNumber_Power:PyObject*:o2:0:
726PyNumber_Power:PyObject*:o3:0:
727
728PyNumber_Remainder:PyObject*::+1:
729PyNumber_Remainder:PyObject*:o1:0:
730PyNumber_Remainder:PyObject*:o2:0:
731
732PyNumber_Rshift:PyObject*::+1:
733PyNumber_Rshift:PyObject*:o1:0:
734PyNumber_Rshift:PyObject*:o2:0:
735
736PyNumber_Subtract:PyObject*::+1:
737PyNumber_Subtract:PyObject*:o1:0:
738PyNumber_Subtract:PyObject*:o2:0:
739
Fred Drake03590c62001-08-08 18:50:18 +0000740PyNumber_TrueDivide:PyObject*::+1:
741PyNumber_TrueDivide:PyObject*:v:0:
742PyNumber_TrueDivide:PyObject*:w:0:
743
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000744PyNumber_Xor:PyObject*::+1:
745PyNumber_Xor:PyObject*:o1:0:
746PyNumber_Xor:PyObject*:o2:0:
747
748PyOS_GetLastModificationTime:long:::
749PyOS_GetLastModificationTime:char*:filename::
750
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000751PyObject_AsFileDescriptor:int:::
752PyObject_AsFileDescriptor:PyObject*:o:0:
753
Fredrik Lundh118be0c2005-12-18 19:39:59 +0000754PyObject_Call:PyObject*::+1:
755PyObject_Call:PyObject*:callable_object:0:
756PyObject_Call:PyObject*:args:0:
757PyObject_Call:PyObject*:kw:0:
758
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000759PyObject_CallFunction:PyObject*::+1:
760PyObject_CallFunction:PyObject*:callable_object:0:
761PyObject_CallFunction:char*:format::
762PyObject_CallFunction::...::
763
Fred Drakeb0c079e2001-10-28 02:39:03 +0000764PyObject_CallFunctionObjArgs:PyObject*::+1:
765PyObject_CallFunctionObjArgs:PyObject*:callable:0:
766PyObject_CallFunctionObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000767
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000768PyObject_CallMethod:PyObject*::+1:
769PyObject_CallMethod:PyObject*:o:0:
770PyObject_CallMethod:char*:m::
771PyObject_CallMethod:char*:format::
772PyObject_CallMethod::...::
773
Fred Drakeb0c079e2001-10-28 02:39:03 +0000774PyObject_CallMethodObjArgs:PyObject*::+1:
775PyObject_CallMethodObjArgs:PyObject*:o:0:
776PyObject_CallMethodObjArgs:char*:name::
777PyObject_CallMethodObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000778
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000779PyObject_CallObject:PyObject*::+1:
780PyObject_CallObject:PyObject*:callable_object:0:
781PyObject_CallObject:PyObject*:args:0:
782
783PyObject_Cmp:int:::
784PyObject_Cmp:PyObject*:o1:0:
785PyObject_Cmp:PyObject*:o2:0:
786PyObject_Cmp:int*:result::
787
788PyObject_Compare:int:::
789PyObject_Compare:PyObject*:o1:0:
790PyObject_Compare:PyObject*:o2:0:
791
792PyObject_DelAttr:int:::
793PyObject_DelAttr:PyObject*:o:0:
794PyObject_DelAttr:PyObject*:attr_name:0:
795
796PyObject_DelAttrString:int:::
797PyObject_DelAttrString:PyObject*:o:0:
798PyObject_DelAttrString:char*:attr_name::
799
800PyObject_DelItem:int:::
801PyObject_DelItem:PyObject*:o:0:
802PyObject_DelItem:PyObject*:key:0:
803
Fred Drake9c75ff72001-09-06 18:06:46 +0000804PyObject_Dir:PyObject*::+1:
805PyObject_Dir:PyObject*:o:0:
806
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000807PyObject_GetAttr:PyObject*::+1:
808PyObject_GetAttr:PyObject*:o:0:
809PyObject_GetAttr:PyObject*:attr_name:0:
810
811PyObject_GetAttrString:PyObject*::+1:
812PyObject_GetAttrString:PyObject*:o:0:
813PyObject_GetAttrString:char*:attr_name::
814
815PyObject_GetItem:PyObject*::+1:
816PyObject_GetItem:PyObject*:o:0:
817PyObject_GetItem:PyObject*:key:0:
818
Fred Drakeb915a382002-10-04 18:58:58 +0000819PyObject_GetIter:PyObject*::+1:
820PyObject_GetIter:PyObject*:o:0:
821
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000822PyObject_HasAttr:int:::
823PyObject_HasAttr:PyObject*:o:0:
824PyObject_HasAttr:PyObject*:attr_name:0:
825
826PyObject_HasAttrString:int:::
827PyObject_HasAttrString:PyObject*:o:0:
828PyObject_HasAttrString:char*:attr_name:0:
829
830PyObject_Hash:int:::
831PyObject_Hash:PyObject*:o:0:
832
833PyObject_IsTrue:int:::
834PyObject_IsTrue:PyObject*:o:0:
835
Fred Drakef913e542000-09-12 20:17:17 +0000836PyObject_Init:PyObject*::0:
837PyObject_Init:PyObject*:op:0:
838
839PyObject_InitVar:PyVarObject*::0:
840PyObject_InitVar:PyVarObject*:op:0:
841
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000842PyObject_Length:int:::
843PyObject_Length:PyObject*:o:0:
844
Fred Drake8e0c09d2001-07-06 23:31:49 +0000845PyObject_NEW:PyObject*::+1:
846
847PyObject_New:PyObject*::+1:
848
849PyObject_NEW_VAR:PyObject*::+1:
850
851PyObject_NewVar:PyObject*::+1:
852
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000853PyObject_Print:int:::
854PyObject_Print:PyObject*:o:0:
855PyObject_Print:FILE*:fp::
856PyObject_Print:int:flags::
857
858PyObject_Repr:PyObject*::+1:
859PyObject_Repr:PyObject*:o:0:
860
Fred Drakea0c5e9f2002-06-14 14:35:56 +0000861PyObject_RichCompare:PyObject*::+1:
862PyObject_RichCompare:PyObject*:o1:0:
863PyObject_RichCompare:PyObject*:o2:0:
864PyObject_RichCompare:int:opid::
865
866PyObject_RichCompareBool:int:::
867PyObject_RichCompareBool:PyObject*:o1:0:
868PyObject_RichCompareBool:PyObject*:o2:0:
869PyObject_RichCompareBool:int:opid::
870
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000871PyObject_SetAttr:int:::
872PyObject_SetAttr:PyObject*:o:0:
873PyObject_SetAttr:PyObject*:attr_name:0:
874PyObject_SetAttr:PyObject*:v:+1:
875
876PyObject_SetAttrString:int:::
877PyObject_SetAttrString:PyObject*:o:0:
878PyObject_SetAttrString:char*:attr_name::
879PyObject_SetAttrString:PyObject*:v:+1:
880
881PyObject_SetItem:int:::
882PyObject_SetItem:PyObject*:o:0:
883PyObject_SetItem:PyObject*:key:0:
884PyObject_SetItem:PyObject*:v:+1:
885
886PyObject_Str:PyObject*::+1:
887PyObject_Str:PyObject*:o:0:
888
889PyObject_Type:PyObject*::+1:
890PyObject_Type:PyObject*:o:0:
891
Fred Drakeb2625eb2001-05-29 15:34:06 +0000892PyObject_Unicode:PyObject*::+1:
893PyObject_Unicode:PyObject*:o:0:
894
Fred Drake805bf1b1999-10-20 16:03:38 +0000895PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000896PyParser_SimpleParseFile:FILE*:fp::
897PyParser_SimpleParseFile:char*:filename::
898PyParser_SimpleParseFile:int:start::
899
Fred Drake805bf1b1999-10-20 16:03:38 +0000900PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000901PyParser_SimpleParseString:char*:str::
902PyParser_SimpleParseString:int:start::
903
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000904PyRun_AnyFile:int:::
905PyRun_AnyFile:FILE*:fp::
906PyRun_AnyFile:char*:filename::
907
Fred Drake4ca744c2000-08-12 03:39:47 +0000908PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000909PyRun_File:FILE*:fp::
910PyRun_File:char*:filename::
911PyRun_File:int:start::
912PyRun_File:PyObject*:globals:0:
913PyRun_File:PyObject*:locals:0:
914
915PyRun_InteractiveLoop:int:::
916PyRun_InteractiveLoop:FILE*:fp::
917PyRun_InteractiveLoop:char*:filename::
918
919PyRun_InteractiveOne:int:::
920PyRun_InteractiveOne:FILE*:fp::
921PyRun_InteractiveOne:char*:filename::
922
923PyRun_SimpleFile:int:::
924PyRun_SimpleFile:FILE*:fp::
925PyRun_SimpleFile:char*:filename::
926
927PyRun_SimpleString:int:::
928PyRun_SimpleString:char*:command::
929
Fred Drake4ca744c2000-08-12 03:39:47 +0000930PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000931PyRun_String:char*:str::
932PyRun_String:int:start::
933PyRun_String:PyObject*:globals:0:
934PyRun_String:PyObject*:locals:0:
935
Fred Draked61d0d32001-09-23 02:05:26 +0000936PySeqIter_New:PyObject*::+1:
937PySeqIter_New:PyObject*:seq::
938
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000939PySequence_Check:int:::
940PySequence_Check:PyObject*:o:0:
941
942PySequence_Concat:PyObject*::+1:
943PySequence_Concat:PyObject*:o1:0:
944PySequence_Concat:PyObject*:o2:0:
945
946PySequence_Count:int:::
947PySequence_Count:PyObject*:o:0:
948PySequence_Count:PyObject*:value:0:
949
950PySequence_DelItem:int:::
951PySequence_DelItem:PyObject*:o:0:
952PySequence_DelItem:int:i::
953
954PySequence_DelSlice:int:::
955PySequence_DelSlice:PyObject*:o:0:
956PySequence_DelSlice:int:i1::
957PySequence_DelSlice:int:i2::
958
Fred Drake81cccb72000-09-12 15:22:05 +0000959PySequence_Fast:PyObject*::+1:
960PySequence_Fast:PyObject*:v:0:
961PySequence_Fast:const char*:m::
962
963PySequence_Fast_GET_ITEM:PyObject*::0:
964PySequence_Fast_GET_ITEM:PyObject*:o:0:
965PySequence_Fast_GET_ITEM:int:i::
966
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000967PySequence_GetItem:PyObject*::+1:
968PySequence_GetItem:PyObject*:o:0:
969PySequence_GetItem:int:i::
970
971PySequence_GetSlice:PyObject*::+1:
972PySequence_GetSlice:PyObject*:o:0:
973PySequence_GetSlice:int:i1::
974PySequence_GetSlice:int:i2::
975
976PySequence_In:int:::
977PySequence_In:PyObject*:o:0:
978PySequence_In:PyObject*:value:0:
979
980PySequence_Index:int:::
981PySequence_Index:PyObject*:o:0:
982PySequence_Index:PyObject*:value:0:
983
Fred Drake1fa93652000-09-22 18:19:37 +0000984PySequence_InPlaceConcat:PyObject*::+1:
985PySequence_InPlaceConcat:PyObject*:s:0:
986PySequence_InPlaceConcat:PyObject*:o:0:
987
988PySequence_InPlaceRepeat:PyObject*::+1:
989PySequence_InPlaceRepeat:PyObject*:s:0:
990PySequence_InPlaceRepeat:PyObject*:o:0:
991
Fred Drakeffb294b2002-05-23 16:03:16 +0000992PySequence_ITEM:PyObject*::+1:
993PySequence_ITEM:PyObject*:o:0:
994PySequence_ITEM:int:i::
995
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000996PySequence_Repeat:PyObject*::+1:
997PySequence_Repeat:PyObject*:o:0:
998PySequence_Repeat:int:count::
999
1000PySequence_SetItem:int:::
1001PySequence_SetItem:PyObject*:o:0:
1002PySequence_SetItem:int:i::
1003PySequence_SetItem:PyObject*:v:+1:
1004
1005PySequence_SetSlice:int:::
1006PySequence_SetSlice:PyObject*:o:0:
1007PySequence_SetSlice:int:i1::
1008PySequence_SetSlice:int:i2::
1009PySequence_SetSlice:PyObject*:v:+1:
1010
Fred Drake1c2d06a2000-06-16 20:00:04 +00001011PySequence_List:PyObject*::+1:
1012PySequence_List:PyObject*:o:0:
1013
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001014PySequence_Tuple:PyObject*::+1:
1015PySequence_Tuple:PyObject*:o:0:
1016
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001017PySet_Append:int:::
1018PySet_Append:PyObject*:set:0:
1019PySet_Append:PyObject*:key:+1:
1020
1021PySet_Contains:int:::
1022PySet_Contains:PyObject*:anyset:0:
1023PySet_Contains:PyObject*:key:0:
1024
1025PySet_Discard:int:::
1026PySet_Discard:PyObject*:set:0:
1027PySet_Discard:PyObject*:key:-1:no effect if key not found
1028
Raymond Hettinger76382492005-08-21 00:08:36 +00001029PySet_Pop:PyObject*::0:or returns NULL and raises KeyError if set is empty
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001030PySet_Pop:PyObject*:set:0:
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001031
1032PySet_Size:int:::
1033PySet_Size:PyObject*:anyset:0:
1034
Fred Drake23a78cf2001-09-24 15:29:47 +00001035PySlice_Check:int:::
1036PySlice_Check:PyObject*:ob:0:
1037
1038PySlice_New:PyObject*::+1:
1039PySlice_New:PyObject*:start:0:
1040PySlice_New:PyObject*:stop:0:
1041PySlice_New:PyObject*:step:0:
1042
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001043PyString_AS_STRING:char*:::
1044PyString_AS_STRING:PyObject*:string:0:
1045
Fred Drakeb2625eb2001-05-29 15:34:06 +00001046PyString_AsDecodedObject:PyObject*::+1:
1047PyString_AsDecodedObject:PyObject*:str:0:
1048PyString_AsDecodedObject:const char*:encoding::
1049PyString_AsDecodedObject:const char*:errors::
1050
1051PyString_AsEncodedObject:PyObject*::+1:
1052PyString_AsEncodedObject:PyObject*:str:0:
1053PyString_AsEncodedObject:const char*:encoding::
1054PyString_AsEncodedObject:const char*:errors::
1055
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001056PyString_AsString:char*:::
1057PyString_AsString:PyObject*:string:0:
1058
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +00001059PyString_AsStringAndSize:int:::
1060PyString_AsStringAndSize:PyObject*:obj:0:
1061PyString_AsStringAndSize:char**:buffer::
1062PyString_AsStringAndSize:int*:length::
1063
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001064PyString_Check:int:::
1065PyString_Check:PyObject*:o:0:
1066
1067PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001068PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001069PyString_Concat:PyObject*:newpart:0:
1070
1071PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001072PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001073PyString_ConcatAndDel:PyObject*:newpart:-1:
1074
1075PyString_Format:PyObject*::+1:
1076PyString_Format:PyObject*:format:0:
1077PyString_Format:PyObject*:args:0:
1078
1079PyString_FromString:PyObject*::+1:
1080PyString_FromString:const char*:v::
1081
1082PyString_FromStringAndSize:PyObject*::+1:
1083PyString_FromStringAndSize:const char*:v::
1084PyString_FromStringAndSize:int:len::
1085
Barry Warsaw8c64a542001-08-28 02:32:04 +00001086PyString_FromFormat:PyObject*::+1:
1087PyString_FromFormat:const char*:format::
1088PyString_FromFormat::...::
1089
1090PyString_FromFormatV:PyObject*::+1:
1091PyString_FromFormatV:const char*:format::
1092PyString_FromFormatV:va_list:vargs::
1093
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001094PyString_GET_SIZE:int:::
1095PyString_GET_SIZE:PyObject*:string:0:
1096
1097PyString_InternFromString:PyObject*::+1:
1098PyString_InternFromString:const char*:v::
1099
1100PyString_InternInPlace:void:::
1101PyString_InternInPlace:PyObject**:string:+1:???
1102
1103PyString_Size:int:::
1104PyString_Size:PyObject*:string:0:
1105
Marc-André Lemburg47073202000-07-07 15:48:54 +00001106PyString_Decode:PyObject*::+1:
1107PyString_Decode:const char*:s::
1108PyString_Decode:int:size::
1109PyString_Decode:const char*:encoding::
1110PyString_Decode:const char*:errors::
1111
1112PyString_Encode:PyObject*::+1:
1113PyString_Encode:const char*:s::
1114PyString_Encode:int:size::
1115PyString_Encode:const char*:encoding::
1116PyString_Encode:const char*:errors::
1117
1118PyString_AsEncodedString:PyObject*::+1:
1119PyString_AsEncodedString:PyObject*:str::
1120PyString_AsEncodedString:const char*:encoding::
1121PyString_AsEncodedString:const char*:errors::
1122
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001123PySys_SetArgv:int:::
1124PySys_SetArgv:int:argc::
1125PySys_SetArgv:char**:argv::
1126
1127PyThreadState_Clear:void:::
1128PyThreadState_Clear:PyThreadState*:tstate::
1129
1130PyThreadState_Delete:void:::
1131PyThreadState_Delete:PyThreadState*:tstate::
1132
1133PyThreadState_Get:PyThreadState*:::
1134
Fred Drakeb2625eb2001-05-29 15:34:06 +00001135PyThreadState_GetDict:PyObject*::0:
1136
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001137PyThreadState_New:PyThreadState*:::
1138PyThreadState_New:PyInterpreterState*:interp::
1139
1140PyThreadState_Swap:PyThreadState*:::
1141PyThreadState_Swap:PyThreadState*:tstate::
1142
1143PyTuple_Check:int:::
1144PyTuple_Check:PyObject*:p:0:
1145
1146PyTuple_GET_ITEM:PyObject*::0:
1147PyTuple_GET_ITEM:PyTupleObject*:p:0:
1148PyTuple_GET_ITEM:int:pos::
1149
1150PyTuple_GetItem:PyObject*::0:
1151PyTuple_GetItem:PyTupleObject*:p:0:
1152PyTuple_GetItem:int:pos::
1153
1154PyTuple_GetSlice:PyObject*::+1:
1155PyTuple_GetSlice:PyTupleObject*:p:0:
1156PyTuple_GetSlice:int:low::
1157PyTuple_GetSlice:int:high::
1158
1159PyTuple_New:PyObject*::+1:
1160PyTuple_New:int:len::
1161
1162PyTuple_SET_ITEM:void:::
1163PyTuple_SET_ITEM:PyTupleObject*:p:0:
1164PyTuple_SET_ITEM:int:pos::
1165PyTuple_SET_ITEM:PyObject*:o:0:
1166
1167PyTuple_SetItem:int:::
1168PyTuple_SetItem:PyTupleObject*:p:0:
1169PyTuple_SetItem:int:pos::
1170PyTuple_SetItem:PyObject*:o:0:
1171
1172PyTuple_Size:int:::
1173PyTuple_Size:PyTupleObject*:p:0:
1174
Fred Drake1b58bff2001-10-29 17:43:14 +00001175PyType_GenericAlloc:PyObject*::+1:
1176PyType_GenericAlloc:PyObject*:type:0:
1177PyType_GenericAlloc:int:nitems:0:
1178
1179PyType_GenericNew:PyObject*::+1:
1180PyType_GenericNew:PyObject*:type:0:
1181PyType_GenericNew:PyObject*:args:0:
1182PyType_GenericNew:PyObject*:kwds:0:
1183
Fred Drake992fe5a2000-06-16 21:04:15 +00001184PyUnicode_Check:int:::
1185PyUnicode_Check:PyObject*:o:0:
1186
1187PyUnicode_GET_SIZE:int:::
1188PyUnicode_GET_SIZE:PyObject*:o:0:
1189
1190PyUnicode_GET_DATA_SIZE:int:::
1191PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1192
1193PyUnicode_AS_UNICODE:Py_UNICODE*:::
1194PyUnicode_AS_UNICODE:PyObject*:o:0:
1195
1196PyUnicode_AS_DATA:const char*:::
1197PyUnicode_AS_DATA:PyObject*:o:0:
1198
1199Py_UNICODE_ISSPACE:int:::
1200Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1201
1202Py_UNICODE_ISLOWER:int:::
1203Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1204
1205Py_UNICODE_ISUPPER:int:::
1206Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1207
1208Py_UNICODE_ISTITLE:int:::
1209Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1210
1211Py_UNICODE_ISLINEBREAK:int:::
1212Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1213
1214Py_UNICODE_ISDECIMAL:int:::
1215Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1216
1217Py_UNICODE_ISDIGIT:int:::
1218Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1219
1220Py_UNICODE_ISNUMERIC:int:::
1221Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1222
1223Py_UNICODE_TOLOWER:Py_UNICODE:::
1224Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1225
1226Py_UNICODE_TOUPPER:Py_UNICODE:::
1227Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1228
1229Py_UNICODE_TOTITLE:Py_UNICODE:::
1230Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1231
1232Py_UNICODE_TODECIMAL:int:::
1233Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1234
1235Py_UNICODE_TODIGIT:int:::
1236Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1237
1238Py_UNICODE_TONUMERIC:double:::
1239Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1240
1241PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001242PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001243PyUnicode_FromUnicode:int:size::
1244
1245PyUnicode_AsUnicode:Py_UNICODE*:::
1246PyUnicode_AsUnicode:PyObject :*unicode:0:
1247
1248PyUnicode_GetSize:int:::
1249PyUnicode_GetSize:PyObject :*unicode:0:
1250
1251PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001252PyUnicode_FromObject:PyObject*:*obj:0:
1253
1254PyUnicode_FromEncodedObject:PyObject*::+1:
1255PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1256PyUnicode_FromEncodedObject:const char*:encoding::
1257PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001258
1259PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001260PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001261PyUnicode_FromWideChar:int:size::
1262
1263PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001264PyUnicode_AsWideChar:PyObject*:*unicode:0:
1265PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001266PyUnicode_AsWideChar:int:size::
1267
1268PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001269PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001270PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001271PyUnicode_Decode:const char*:encoding::
1272PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001273
1274PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001275PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001276PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001277PyUnicode_Encode:const char*:encoding::
1278PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001279
1280PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001281PyUnicode_AsEncodedString:PyObject*:unicode::
1282PyUnicode_AsEncodedString:const char*:encoding::
1283PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001284
1285PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001286PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001287PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001288PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001289
1290PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001291PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001292PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001293PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001294
1295PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001296PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001297
1298PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001299PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001300PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001301PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001302PyUnicode_DecodeUTF16:int*:byteorder::
1303
1304PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001305PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001306PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001307PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001308PyUnicode_EncodeUTF16:int:byteorder::
1309
1310PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001311PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001312
1313PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001314PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001315PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001316PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001317
1318PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001319PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001320PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001321PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001322
1323PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001324PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001325
1326PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001327PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001328PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001329PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001330
1331PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001332PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001333PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001334PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001335
1336PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001337PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001338
1339PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001340PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001341PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001342PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001343
1344PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001345PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001346PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001347PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001348
1349PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001350PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001351
1352PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001353PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001354PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001355PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001356
1357PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001358PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001359PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001360PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001361
1362PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001363PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001364
1365PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001366PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001367PyUnicode_DecodeCharmap:int:size::
1368PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001369PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001370
1371PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001372PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001373PyUnicode_EncodeCharmap:int:size::
1374PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001375PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001376
1377PyUnicode_AsCharmapString:PyObject*::+1:
1378PyUnicode_AsCharmapString:PyObject*:unicode:0:
1379PyUnicode_AsCharmapString:PyObject*:mapping:0:
1380
1381PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001382PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001383PyUnicode_TranslateCharmap:int:size::
1384PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001385PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001386
1387PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001388PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001389PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001390PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001391
1392PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001393PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001394PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001395PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001396
1397PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001398PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001399
1400PyUnicode_Concat:PyObject*::+1:
1401PyUnicode_Concat:PyObject*:left:0:
1402PyUnicode_Concat:PyObject*:right:0:
1403
1404PyUnicode_Split:PyObject*::+1:
1405PyUnicode_Split:PyObject*:left:0:
1406PyUnicode_Split:PyObject*:right:0:
1407PyUnicode_Split:int:maxsplit::
1408
1409PyUnicode_Splitlines:PyObject*::+1:
1410PyUnicode_Splitlines:PyObject*:s:0:
1411PyUnicode_Splitlines:int:maxsplit::
1412
1413PyUnicode_Translate:PyObject*::+1:
1414PyUnicode_Translate:PyObject*:str:0:
1415PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001416PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001417
1418PyUnicode_Join:PyObject*::+1:
1419PyUnicode_Join:PyObject*:separator:0:
1420PyUnicode_Join:PyObject*:seq:0:
1421
1422PyUnicode_Tailmatch:PyObject*::+1:
1423PyUnicode_Tailmatch:PyObject*:str:0:
1424PyUnicode_Tailmatch:PyObject*:substr:0:
1425PyUnicode_Tailmatch:int:start::
1426PyUnicode_Tailmatch:int:end::
1427PyUnicode_Tailmatch:int:direction::
1428
Fred Drake1d1e1db2002-06-20 22:07:04 +00001429PyUnicode_Find:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001430PyUnicode_Find:PyObject*:str:0:
1431PyUnicode_Find:PyObject*:substr:0:
1432PyUnicode_Find:int:start::
1433PyUnicode_Find:int:end::
1434PyUnicode_Find:int:direction::
1435
Fred Drake1d1e1db2002-06-20 22:07:04 +00001436PyUnicode_Count:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001437PyUnicode_Count:PyObject*:str:0:
1438PyUnicode_Count:PyObject*:substr:0:
1439PyUnicode_Count:int:start::
1440PyUnicode_Count:int:end::
1441
1442PyUnicode_Replace:PyObject*::+1:
1443PyUnicode_Replace:PyObject*:str:0:
1444PyUnicode_Replace:PyObject*:substr:0:
1445PyUnicode_Replace:PyObject*:replstr:0:
1446PyUnicode_Replace:int:maxcount::
1447
1448PyUnicode_Compare:int:::
1449PyUnicode_Compare:PyObject*:left:0:
1450PyUnicode_Compare:PyObject*:right:0:
1451
1452PyUnicode_Format:PyObject*::+1:
1453PyUnicode_Format:PyObject*:format:0:
1454PyUnicode_Format:PyObject*:args:0:
1455
1456PyUnicode_Contains:int:::
1457PyUnicode_Contains:PyObject*:container:0:
1458PyUnicode_Contains:PyObject*:element:0:
1459
Fred Drake1b58bff2001-10-29 17:43:14 +00001460PyWeakref_GET_OBJECT:PyObject*::0:
1461PyWeakref_GET_OBJECT:PyObject*:ref:0:
1462
Fred Drake8371e842002-02-20 05:07:36 +00001463PyWeakref_GetObject:PyObject*::0:
Fred Drake1b58bff2001-10-29 17:43:14 +00001464PyWeakref_GetObject:PyObject*:ref:0:
1465
1466PyWeakref_NewProxy:PyObject*::+1:
1467PyWeakref_NewProxy:PyObject*:ob:0:
1468PyWeakref_NewProxy:PyObject*:callback:0:
1469
1470PyWeakref_NewRef:PyObject*::+1:
1471PyWeakref_NewRef:PyObject*:ob:0:
1472PyWeakref_NewRef:PyObject*:callback:0:
1473
1474PyWrapper_New:PyObject*::+1:
1475PyWrapper_New:PyObject*:d:0:
1476PyWrapper_New:PyObject*:self:0:
1477
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001478Py_AtExit:int:::
1479Py_AtExit:void (*)():func::
1480
Fred Drake6d988552001-07-20 20:55:31 +00001481Py_BuildValue:PyObject*::+1:
1482Py_BuildValue:char*:format::
1483
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001484Py_CompileString:PyObject*::+1:
1485Py_CompileString:char*:str::
1486Py_CompileString:char*:filename::
1487Py_CompileString:int:start::
1488
1489Py_DECREF:void:::
1490Py_DECREF:PyObject*:o:-1:
1491
1492Py_EndInterpreter:void:::
1493Py_EndInterpreter:PyThreadState*:tstate::
1494
1495Py_Exit:void:::
1496Py_Exit:int:status::
1497
1498Py_FatalError:void:::
1499Py_FatalError:char*:message::
1500
1501Py_FdIsInteractive:int:::
1502Py_FdIsInteractive:FILE*:fp::
1503Py_FdIsInteractive:char*:filename::
1504
1505Py_Finalize:void:::
1506
Fred Drake8520cc22000-04-10 19:38:24 +00001507Py_FindMethod:PyObject*::+1:
1508Py_FindMethod:PyMethodDef[]:methods::
1509Py_FindMethod:PyObject*:self:+1:
1510Py_FindMethod:char*:name::
1511
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001512Py_GetBuildInfoconst:char*:::
1513
1514Py_GetCompilerconst:char*:::
1515
1516Py_GetCopyrightconst:char*:::
1517
1518Py_GetExecPrefix:char*:::
1519
1520Py_GetPath:char*:::
1521
1522Py_GetPlatformconst:char*:::
1523
1524Py_GetPrefix:char*:::
1525
1526Py_GetProgramFullPath:char*:::
1527
1528Py_GetProgramName:char*:::
1529
1530Py_GetVersionconst:char*:::
1531
1532Py_INCREF:void:::
1533Py_INCREF:PyObject*:o:+1:
1534
1535Py_Initialize:void:::
1536
1537Py_IsInitialized:int:::
1538
1539Py_NewInterpreter:PyThreadState*:::
1540
1541Py_SetProgramName:void:::
1542Py_SetProgramName:char*:name::
1543
1544Py_XDECREF:void:::
1545Py_XDECREF:PyObject*:o:-1:if o is not NULL
1546
1547Py_XINCREF:void:::
1548Py_XINCREF:PyObject*:o:+1:if o is not NULL
1549
1550_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1551_PyImport_FindExtension:char*:::
1552_PyImport_FindExtension:char*:::
1553
1554_PyImport_Fini:void:::
1555
1556_PyImport_FixupExtension:PyObject*:::???
1557_PyImport_FixupExtension:char*:::
1558_PyImport_FixupExtension:char*:::
1559
1560_PyImport_Init:void:::
1561
Fred Drakef913e542000-09-12 20:17:17 +00001562_PyObject_Del:void:::
1563_PyObject_Del:PyObject*:op:0:
1564
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001565_PyObject_New:PyObject*::+1:
1566_PyObject_New:PyTypeObject*:type:0:
1567
Fred Drake8e0c09d2001-07-06 23:31:49 +00001568_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001569_PyObject_NewVar:PyTypeObject*:type:0:
1570_PyObject_NewVar:int:size::
1571
1572_PyString_Resize:int:::
1573_PyString_Resize:PyObject**:string:+1:
1574_PyString_Resize:int:newsize::
1575
1576_PyTuple_Resize:int:::
1577_PyTuple_Resize:PyTupleObject**:p:+1:
1578_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001579
1580_Py_c_diff:Py_complex:::
1581_Py_c_diff:Py_complex:left::
1582_Py_c_diff:Py_complex:right::
1583
1584_Py_c_neg:Py_complex:::
1585_Py_c_neg:Py_complex:complex::
1586
1587_Py_c_pow:Py_complex:::
1588_Py_c_pow:Py_complex:num::
1589_Py_c_pow:Py_complex:exp::
1590
1591_Py_c_prod:Py_complex:::
1592_Py_c_prod:Py_complex:left::
1593_Py_c_prod:Py_complex:right::
1594
1595_Py_c_quot:Py_complex:::
1596_Py_c_quot:Py_complex:dividend::
1597_Py_c_quot:Py_complex:divisor::
1598
1599_Py_c_sum:Py_complex:::
1600_Py_c_sum:Py_complex:left::
1601_Py_c_sum:Py_complex:right::