blob: 0f2e9b57a8dd15ecc811887b1fb63afcf655018b [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
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000754PyObject_CallFunction:PyObject*::+1:
755PyObject_CallFunction:PyObject*:callable_object:0:
756PyObject_CallFunction:char*:format::
757PyObject_CallFunction::...::
758
Fred Drakeb0c079e2001-10-28 02:39:03 +0000759PyObject_CallFunctionObjArgs:PyObject*::+1:
760PyObject_CallFunctionObjArgs:PyObject*:callable:0:
761PyObject_CallFunctionObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000762
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000763PyObject_CallMethod:PyObject*::+1:
764PyObject_CallMethod:PyObject*:o:0:
765PyObject_CallMethod:char*:m::
766PyObject_CallMethod:char*:format::
767PyObject_CallMethod::...::
768
Fred Drakeb0c079e2001-10-28 02:39:03 +0000769PyObject_CallMethodObjArgs:PyObject*::+1:
770PyObject_CallMethodObjArgs:PyObject*:o:0:
771PyObject_CallMethodObjArgs:char*:name::
772PyObject_CallMethodObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000773
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000774PyObject_CallObject:PyObject*::+1:
775PyObject_CallObject:PyObject*:callable_object:0:
776PyObject_CallObject:PyObject*:args:0:
777
778PyObject_Cmp:int:::
779PyObject_Cmp:PyObject*:o1:0:
780PyObject_Cmp:PyObject*:o2:0:
781PyObject_Cmp:int*:result::
782
783PyObject_Compare:int:::
784PyObject_Compare:PyObject*:o1:0:
785PyObject_Compare:PyObject*:o2:0:
786
787PyObject_DelAttr:int:::
788PyObject_DelAttr:PyObject*:o:0:
789PyObject_DelAttr:PyObject*:attr_name:0:
790
791PyObject_DelAttrString:int:::
792PyObject_DelAttrString:PyObject*:o:0:
793PyObject_DelAttrString:char*:attr_name::
794
795PyObject_DelItem:int:::
796PyObject_DelItem:PyObject*:o:0:
797PyObject_DelItem:PyObject*:key:0:
798
Fred Drake9c75ff72001-09-06 18:06:46 +0000799PyObject_Dir:PyObject*::+1:
800PyObject_Dir:PyObject*:o:0:
801
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000802PyObject_GetAttr:PyObject*::+1:
803PyObject_GetAttr:PyObject*:o:0:
804PyObject_GetAttr:PyObject*:attr_name:0:
805
806PyObject_GetAttrString:PyObject*::+1:
807PyObject_GetAttrString:PyObject*:o:0:
808PyObject_GetAttrString:char*:attr_name::
809
810PyObject_GetItem:PyObject*::+1:
811PyObject_GetItem:PyObject*:o:0:
812PyObject_GetItem:PyObject*:key:0:
813
Fred Drakeb915a382002-10-04 18:58:58 +0000814PyObject_GetIter:PyObject*::+1:
815PyObject_GetIter:PyObject*:o:0:
816
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000817PyObject_HasAttr:int:::
818PyObject_HasAttr:PyObject*:o:0:
819PyObject_HasAttr:PyObject*:attr_name:0:
820
821PyObject_HasAttrString:int:::
822PyObject_HasAttrString:PyObject*:o:0:
823PyObject_HasAttrString:char*:attr_name:0:
824
825PyObject_Hash:int:::
826PyObject_Hash:PyObject*:o:0:
827
828PyObject_IsTrue:int:::
829PyObject_IsTrue:PyObject*:o:0:
830
Fred Drakef913e542000-09-12 20:17:17 +0000831PyObject_Init:PyObject*::0:
832PyObject_Init:PyObject*:op:0:
833
834PyObject_InitVar:PyVarObject*::0:
835PyObject_InitVar:PyVarObject*:op:0:
836
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000837PyObject_Length:int:::
838PyObject_Length:PyObject*:o:0:
839
Fred Drake8e0c09d2001-07-06 23:31:49 +0000840PyObject_NEW:PyObject*::+1:
841
842PyObject_New:PyObject*::+1:
843
844PyObject_NEW_VAR:PyObject*::+1:
845
846PyObject_NewVar:PyObject*::+1:
847
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000848PyObject_Print:int:::
849PyObject_Print:PyObject*:o:0:
850PyObject_Print:FILE*:fp::
851PyObject_Print:int:flags::
852
853PyObject_Repr:PyObject*::+1:
854PyObject_Repr:PyObject*:o:0:
855
Fred Drakea0c5e9f2002-06-14 14:35:56 +0000856PyObject_RichCompare:PyObject*::+1:
857PyObject_RichCompare:PyObject*:o1:0:
858PyObject_RichCompare:PyObject*:o2:0:
859PyObject_RichCompare:int:opid::
860
861PyObject_RichCompareBool:int:::
862PyObject_RichCompareBool:PyObject*:o1:0:
863PyObject_RichCompareBool:PyObject*:o2:0:
864PyObject_RichCompareBool:int:opid::
865
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000866PyObject_SetAttr:int:::
867PyObject_SetAttr:PyObject*:o:0:
868PyObject_SetAttr:PyObject*:attr_name:0:
869PyObject_SetAttr:PyObject*:v:+1:
870
871PyObject_SetAttrString:int:::
872PyObject_SetAttrString:PyObject*:o:0:
873PyObject_SetAttrString:char*:attr_name::
874PyObject_SetAttrString:PyObject*:v:+1:
875
876PyObject_SetItem:int:::
877PyObject_SetItem:PyObject*:o:0:
878PyObject_SetItem:PyObject*:key:0:
879PyObject_SetItem:PyObject*:v:+1:
880
881PyObject_Str:PyObject*::+1:
882PyObject_Str:PyObject*:o:0:
883
884PyObject_Type:PyObject*::+1:
885PyObject_Type:PyObject*:o:0:
886
Fred Drakeb2625eb2001-05-29 15:34:06 +0000887PyObject_Unicode:PyObject*::+1:
888PyObject_Unicode:PyObject*:o:0:
889
Fred Drake805bf1b1999-10-20 16:03:38 +0000890PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000891PyParser_SimpleParseFile:FILE*:fp::
892PyParser_SimpleParseFile:char*:filename::
893PyParser_SimpleParseFile:int:start::
894
Fred Drake805bf1b1999-10-20 16:03:38 +0000895PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000896PyParser_SimpleParseString:char*:str::
897PyParser_SimpleParseString:int:start::
898
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000899PyRun_AnyFile:int:::
900PyRun_AnyFile:FILE*:fp::
901PyRun_AnyFile:char*:filename::
902
Fred Drake4ca744c2000-08-12 03:39:47 +0000903PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000904PyRun_File:FILE*:fp::
905PyRun_File:char*:filename::
906PyRun_File:int:start::
907PyRun_File:PyObject*:globals:0:
908PyRun_File:PyObject*:locals:0:
909
910PyRun_InteractiveLoop:int:::
911PyRun_InteractiveLoop:FILE*:fp::
912PyRun_InteractiveLoop:char*:filename::
913
914PyRun_InteractiveOne:int:::
915PyRun_InteractiveOne:FILE*:fp::
916PyRun_InteractiveOne:char*:filename::
917
918PyRun_SimpleFile:int:::
919PyRun_SimpleFile:FILE*:fp::
920PyRun_SimpleFile:char*:filename::
921
922PyRun_SimpleString:int:::
923PyRun_SimpleString:char*:command::
924
Fred Drake4ca744c2000-08-12 03:39:47 +0000925PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000926PyRun_String:char*:str::
927PyRun_String:int:start::
928PyRun_String:PyObject*:globals:0:
929PyRun_String:PyObject*:locals:0:
930
Fred Draked61d0d32001-09-23 02:05:26 +0000931PySeqIter_New:PyObject*::+1:
932PySeqIter_New:PyObject*:seq::
933
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000934PySequence_Check:int:::
935PySequence_Check:PyObject*:o:0:
936
937PySequence_Concat:PyObject*::+1:
938PySequence_Concat:PyObject*:o1:0:
939PySequence_Concat:PyObject*:o2:0:
940
941PySequence_Count:int:::
942PySequence_Count:PyObject*:o:0:
943PySequence_Count:PyObject*:value:0:
944
945PySequence_DelItem:int:::
946PySequence_DelItem:PyObject*:o:0:
947PySequence_DelItem:int:i::
948
949PySequence_DelSlice:int:::
950PySequence_DelSlice:PyObject*:o:0:
951PySequence_DelSlice:int:i1::
952PySequence_DelSlice:int:i2::
953
Fred Drake81cccb72000-09-12 15:22:05 +0000954PySequence_Fast:PyObject*::+1:
955PySequence_Fast:PyObject*:v:0:
956PySequence_Fast:const char*:m::
957
958PySequence_Fast_GET_ITEM:PyObject*::0:
959PySequence_Fast_GET_ITEM:PyObject*:o:0:
960PySequence_Fast_GET_ITEM:int:i::
961
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000962PySequence_GetItem:PyObject*::+1:
963PySequence_GetItem:PyObject*:o:0:
964PySequence_GetItem:int:i::
965
966PySequence_GetSlice:PyObject*::+1:
967PySequence_GetSlice:PyObject*:o:0:
968PySequence_GetSlice:int:i1::
969PySequence_GetSlice:int:i2::
970
971PySequence_In:int:::
972PySequence_In:PyObject*:o:0:
973PySequence_In:PyObject*:value:0:
974
975PySequence_Index:int:::
976PySequence_Index:PyObject*:o:0:
977PySequence_Index:PyObject*:value:0:
978
Fred Drake1fa93652000-09-22 18:19:37 +0000979PySequence_InPlaceConcat:PyObject*::+1:
980PySequence_InPlaceConcat:PyObject*:s:0:
981PySequence_InPlaceConcat:PyObject*:o:0:
982
983PySequence_InPlaceRepeat:PyObject*::+1:
984PySequence_InPlaceRepeat:PyObject*:s:0:
985PySequence_InPlaceRepeat:PyObject*:o:0:
986
Fred Drakeffb294b2002-05-23 16:03:16 +0000987PySequence_ITEM:PyObject*::+1:
988PySequence_ITEM:PyObject*:o:0:
989PySequence_ITEM:int:i::
990
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000991PySequence_Repeat:PyObject*::+1:
992PySequence_Repeat:PyObject*:o:0:
993PySequence_Repeat:int:count::
994
995PySequence_SetItem:int:::
996PySequence_SetItem:PyObject*:o:0:
997PySequence_SetItem:int:i::
998PySequence_SetItem:PyObject*:v:+1:
999
1000PySequence_SetSlice:int:::
1001PySequence_SetSlice:PyObject*:o:0:
1002PySequence_SetSlice:int:i1::
1003PySequence_SetSlice:int:i2::
1004PySequence_SetSlice:PyObject*:v:+1:
1005
Fred Drake1c2d06a2000-06-16 20:00:04 +00001006PySequence_List:PyObject*::+1:
1007PySequence_List:PyObject*:o:0:
1008
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001009PySequence_Tuple:PyObject*::+1:
1010PySequence_Tuple:PyObject*:o:0:
1011
Fred Drake23a78cf2001-09-24 15:29:47 +00001012PySlice_Check:int:::
1013PySlice_Check:PyObject*:ob:0:
1014
1015PySlice_New:PyObject*::+1:
1016PySlice_New:PyObject*:start:0:
1017PySlice_New:PyObject*:stop:0:
1018PySlice_New:PyObject*:step:0:
1019
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001020PyString_AS_STRING:char*:::
1021PyString_AS_STRING:PyObject*:string:0:
1022
Fred Drakeb2625eb2001-05-29 15:34:06 +00001023PyString_AsDecodedObject:PyObject*::+1:
1024PyString_AsDecodedObject:PyObject*:str:0:
1025PyString_AsDecodedObject:const char*:encoding::
1026PyString_AsDecodedObject:const char*:errors::
1027
1028PyString_AsEncodedObject:PyObject*::+1:
1029PyString_AsEncodedObject:PyObject*:str:0:
1030PyString_AsEncodedObject:const char*:encoding::
1031PyString_AsEncodedObject:const char*:errors::
1032
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001033PyString_AsString:char*:::
1034PyString_AsString:PyObject*:string:0:
1035
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +00001036PyString_AsStringAndSize:int:::
1037PyString_AsStringAndSize:PyObject*:obj:0:
1038PyString_AsStringAndSize:char**:buffer::
1039PyString_AsStringAndSize:int*:length::
1040
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001041PyString_Check:int:::
1042PyString_Check:PyObject*:o:0:
1043
1044PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001045PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001046PyString_Concat:PyObject*:newpart:0:
1047
1048PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001049PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001050PyString_ConcatAndDel:PyObject*:newpart:-1:
1051
1052PyString_Format:PyObject*::+1:
1053PyString_Format:PyObject*:format:0:
1054PyString_Format:PyObject*:args:0:
1055
1056PyString_FromString:PyObject*::+1:
1057PyString_FromString:const char*:v::
1058
1059PyString_FromStringAndSize:PyObject*::+1:
1060PyString_FromStringAndSize:const char*:v::
1061PyString_FromStringAndSize:int:len::
1062
Barry Warsaw8c64a542001-08-28 02:32:04 +00001063PyString_FromFormat:PyObject*::+1:
1064PyString_FromFormat:const char*:format::
1065PyString_FromFormat::...::
1066
1067PyString_FromFormatV:PyObject*::+1:
1068PyString_FromFormatV:const char*:format::
1069PyString_FromFormatV:va_list:vargs::
1070
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001071PyString_GET_SIZE:int:::
1072PyString_GET_SIZE:PyObject*:string:0:
1073
1074PyString_InternFromString:PyObject*::+1:
1075PyString_InternFromString:const char*:v::
1076
1077PyString_InternInPlace:void:::
1078PyString_InternInPlace:PyObject**:string:+1:???
1079
1080PyString_Size:int:::
1081PyString_Size:PyObject*:string:0:
1082
Marc-André Lemburg47073202000-07-07 15:48:54 +00001083PyString_Decode:PyObject*::+1:
1084PyString_Decode:const char*:s::
1085PyString_Decode:int:size::
1086PyString_Decode:const char*:encoding::
1087PyString_Decode:const char*:errors::
1088
1089PyString_Encode:PyObject*::+1:
1090PyString_Encode:const char*:s::
1091PyString_Encode:int:size::
1092PyString_Encode:const char*:encoding::
1093PyString_Encode:const char*:errors::
1094
1095PyString_AsEncodedString:PyObject*::+1:
1096PyString_AsEncodedString:PyObject*:str::
1097PyString_AsEncodedString:const char*:encoding::
1098PyString_AsEncodedString:const char*:errors::
1099
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001100PySys_SetArgv:int:::
1101PySys_SetArgv:int:argc::
1102PySys_SetArgv:char**:argv::
1103
1104PyThreadState_Clear:void:::
1105PyThreadState_Clear:PyThreadState*:tstate::
1106
1107PyThreadState_Delete:void:::
1108PyThreadState_Delete:PyThreadState*:tstate::
1109
1110PyThreadState_Get:PyThreadState*:::
1111
Fred Drakeb2625eb2001-05-29 15:34:06 +00001112PyThreadState_GetDict:PyObject*::0:
1113
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001114PyThreadState_New:PyThreadState*:::
1115PyThreadState_New:PyInterpreterState*:interp::
1116
1117PyThreadState_Swap:PyThreadState*:::
1118PyThreadState_Swap:PyThreadState*:tstate::
1119
1120PyTuple_Check:int:::
1121PyTuple_Check:PyObject*:p:0:
1122
1123PyTuple_GET_ITEM:PyObject*::0:
1124PyTuple_GET_ITEM:PyTupleObject*:p:0:
1125PyTuple_GET_ITEM:int:pos::
1126
1127PyTuple_GetItem:PyObject*::0:
1128PyTuple_GetItem:PyTupleObject*:p:0:
1129PyTuple_GetItem:int:pos::
1130
1131PyTuple_GetSlice:PyObject*::+1:
1132PyTuple_GetSlice:PyTupleObject*:p:0:
1133PyTuple_GetSlice:int:low::
1134PyTuple_GetSlice:int:high::
1135
1136PyTuple_New:PyObject*::+1:
1137PyTuple_New:int:len::
1138
1139PyTuple_SET_ITEM:void:::
1140PyTuple_SET_ITEM:PyTupleObject*:p:0:
1141PyTuple_SET_ITEM:int:pos::
1142PyTuple_SET_ITEM:PyObject*:o:0:
1143
1144PyTuple_SetItem:int:::
1145PyTuple_SetItem:PyTupleObject*:p:0:
1146PyTuple_SetItem:int:pos::
1147PyTuple_SetItem:PyObject*:o:0:
1148
1149PyTuple_Size:int:::
1150PyTuple_Size:PyTupleObject*:p:0:
1151
Fred Drake1b58bff2001-10-29 17:43:14 +00001152PyType_GenericAlloc:PyObject*::+1:
1153PyType_GenericAlloc:PyObject*:type:0:
1154PyType_GenericAlloc:int:nitems:0:
1155
1156PyType_GenericNew:PyObject*::+1:
1157PyType_GenericNew:PyObject*:type:0:
1158PyType_GenericNew:PyObject*:args:0:
1159PyType_GenericNew:PyObject*:kwds:0:
1160
Fred Drake992fe5a2000-06-16 21:04:15 +00001161PyUnicode_Check:int:::
1162PyUnicode_Check:PyObject*:o:0:
1163
1164PyUnicode_GET_SIZE:int:::
1165PyUnicode_GET_SIZE:PyObject*:o:0:
1166
1167PyUnicode_GET_DATA_SIZE:int:::
1168PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1169
1170PyUnicode_AS_UNICODE:Py_UNICODE*:::
1171PyUnicode_AS_UNICODE:PyObject*:o:0:
1172
1173PyUnicode_AS_DATA:const char*:::
1174PyUnicode_AS_DATA:PyObject*:o:0:
1175
1176Py_UNICODE_ISSPACE:int:::
1177Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1178
1179Py_UNICODE_ISLOWER:int:::
1180Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1181
1182Py_UNICODE_ISUPPER:int:::
1183Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1184
1185Py_UNICODE_ISTITLE:int:::
1186Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1187
1188Py_UNICODE_ISLINEBREAK:int:::
1189Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1190
1191Py_UNICODE_ISDECIMAL:int:::
1192Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1193
1194Py_UNICODE_ISDIGIT:int:::
1195Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1196
1197Py_UNICODE_ISNUMERIC:int:::
1198Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1199
1200Py_UNICODE_TOLOWER:Py_UNICODE:::
1201Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1202
1203Py_UNICODE_TOUPPER:Py_UNICODE:::
1204Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1205
1206Py_UNICODE_TOTITLE:Py_UNICODE:::
1207Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1208
1209Py_UNICODE_TODECIMAL:int:::
1210Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1211
1212Py_UNICODE_TODIGIT:int:::
1213Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1214
1215Py_UNICODE_TONUMERIC:double:::
1216Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1217
1218PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001219PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001220PyUnicode_FromUnicode:int:size::
1221
1222PyUnicode_AsUnicode:Py_UNICODE*:::
1223PyUnicode_AsUnicode:PyObject :*unicode:0:
1224
1225PyUnicode_GetSize:int:::
1226PyUnicode_GetSize:PyObject :*unicode:0:
1227
1228PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001229PyUnicode_FromObject:PyObject*:*obj:0:
1230
1231PyUnicode_FromEncodedObject:PyObject*::+1:
1232PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1233PyUnicode_FromEncodedObject:const char*:encoding::
1234PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001235
1236PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001237PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001238PyUnicode_FromWideChar:int:size::
1239
1240PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001241PyUnicode_AsWideChar:PyObject*:*unicode:0:
1242PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001243PyUnicode_AsWideChar:int:size::
1244
1245PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001246PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001247PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001248PyUnicode_Decode:const char*:encoding::
1249PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001250
1251PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001252PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001253PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001254PyUnicode_Encode:const char*:encoding::
1255PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001256
1257PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001258PyUnicode_AsEncodedString:PyObject*:unicode::
1259PyUnicode_AsEncodedString:const char*:encoding::
1260PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001261
1262PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001263PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001264PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001265PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001266
1267PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001268PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001269PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001270PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001271
1272PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001273PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001274
1275PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001276PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001277PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001278PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001279PyUnicode_DecodeUTF16:int*:byteorder::
1280
1281PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001282PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001283PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001284PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001285PyUnicode_EncodeUTF16:int:byteorder::
1286
1287PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001288PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001289
1290PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001291PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001292PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001293PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001294
1295PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001296PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001297PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001298PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001299
1300PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001301PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001302
1303PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001304PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001305PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001306PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001307
1308PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001309PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001310PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001311PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001312
1313PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001314PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001315
1316PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001317PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001318PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001319PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001320
1321PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001322PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001323PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001324PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001325
1326PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001327PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001328
1329PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001330PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001331PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001332PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001333
1334PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001335PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001336PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001337PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001338
1339PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001340PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001341
1342PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001343PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001344PyUnicode_DecodeCharmap:int:size::
1345PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001346PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001347
1348PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001349PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001350PyUnicode_EncodeCharmap:int:size::
1351PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001352PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001353
1354PyUnicode_AsCharmapString:PyObject*::+1:
1355PyUnicode_AsCharmapString:PyObject*:unicode:0:
1356PyUnicode_AsCharmapString:PyObject*:mapping:0:
1357
1358PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001359PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001360PyUnicode_TranslateCharmap:int:size::
1361PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001362PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001363
1364PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001365PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001366PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001367PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001368
1369PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001370PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001371PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001372PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001373
1374PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001375PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001376
1377PyUnicode_Concat:PyObject*::+1:
1378PyUnicode_Concat:PyObject*:left:0:
1379PyUnicode_Concat:PyObject*:right:0:
1380
1381PyUnicode_Split:PyObject*::+1:
1382PyUnicode_Split:PyObject*:left:0:
1383PyUnicode_Split:PyObject*:right:0:
1384PyUnicode_Split:int:maxsplit::
1385
1386PyUnicode_Splitlines:PyObject*::+1:
1387PyUnicode_Splitlines:PyObject*:s:0:
1388PyUnicode_Splitlines:int:maxsplit::
1389
1390PyUnicode_Translate:PyObject*::+1:
1391PyUnicode_Translate:PyObject*:str:0:
1392PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001393PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001394
1395PyUnicode_Join:PyObject*::+1:
1396PyUnicode_Join:PyObject*:separator:0:
1397PyUnicode_Join:PyObject*:seq:0:
1398
1399PyUnicode_Tailmatch:PyObject*::+1:
1400PyUnicode_Tailmatch:PyObject*:str:0:
1401PyUnicode_Tailmatch:PyObject*:substr:0:
1402PyUnicode_Tailmatch:int:start::
1403PyUnicode_Tailmatch:int:end::
1404PyUnicode_Tailmatch:int:direction::
1405
Fred Drake1d1e1db2002-06-20 22:07:04 +00001406PyUnicode_Find:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001407PyUnicode_Find:PyObject*:str:0:
1408PyUnicode_Find:PyObject*:substr:0:
1409PyUnicode_Find:int:start::
1410PyUnicode_Find:int:end::
1411PyUnicode_Find:int:direction::
1412
Fred Drake1d1e1db2002-06-20 22:07:04 +00001413PyUnicode_Count:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001414PyUnicode_Count:PyObject*:str:0:
1415PyUnicode_Count:PyObject*:substr:0:
1416PyUnicode_Count:int:start::
1417PyUnicode_Count:int:end::
1418
1419PyUnicode_Replace:PyObject*::+1:
1420PyUnicode_Replace:PyObject*:str:0:
1421PyUnicode_Replace:PyObject*:substr:0:
1422PyUnicode_Replace:PyObject*:replstr:0:
1423PyUnicode_Replace:int:maxcount::
1424
1425PyUnicode_Compare:int:::
1426PyUnicode_Compare:PyObject*:left:0:
1427PyUnicode_Compare:PyObject*:right:0:
1428
1429PyUnicode_Format:PyObject*::+1:
1430PyUnicode_Format:PyObject*:format:0:
1431PyUnicode_Format:PyObject*:args:0:
1432
1433PyUnicode_Contains:int:::
1434PyUnicode_Contains:PyObject*:container:0:
1435PyUnicode_Contains:PyObject*:element:0:
1436
Fred Drake1b58bff2001-10-29 17:43:14 +00001437PyWeakref_GET_OBJECT:PyObject*::0:
1438PyWeakref_GET_OBJECT:PyObject*:ref:0:
1439
Fred Drake8371e842002-02-20 05:07:36 +00001440PyWeakref_GetObject:PyObject*::0:
Fred Drake1b58bff2001-10-29 17:43:14 +00001441PyWeakref_GetObject:PyObject*:ref:0:
1442
1443PyWeakref_NewProxy:PyObject*::+1:
1444PyWeakref_NewProxy:PyObject*:ob:0:
1445PyWeakref_NewProxy:PyObject*:callback:0:
1446
1447PyWeakref_NewRef:PyObject*::+1:
1448PyWeakref_NewRef:PyObject*:ob:0:
1449PyWeakref_NewRef:PyObject*:callback:0:
1450
1451PyWrapper_New:PyObject*::+1:
1452PyWrapper_New:PyObject*:d:0:
1453PyWrapper_New:PyObject*:self:0:
1454
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001455Py_AtExit:int:::
1456Py_AtExit:void (*)():func::
1457
Fred Drake6d988552001-07-20 20:55:31 +00001458Py_BuildValue:PyObject*::+1:
1459Py_BuildValue:char*:format::
1460
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001461Py_CompileString:PyObject*::+1:
1462Py_CompileString:char*:str::
1463Py_CompileString:char*:filename::
1464Py_CompileString:int:start::
1465
1466Py_DECREF:void:::
1467Py_DECREF:PyObject*:o:-1:
1468
1469Py_EndInterpreter:void:::
1470Py_EndInterpreter:PyThreadState*:tstate::
1471
1472Py_Exit:void:::
1473Py_Exit:int:status::
1474
1475Py_FatalError:void:::
1476Py_FatalError:char*:message::
1477
1478Py_FdIsInteractive:int:::
1479Py_FdIsInteractive:FILE*:fp::
1480Py_FdIsInteractive:char*:filename::
1481
1482Py_Finalize:void:::
1483
Fred Drake8520cc22000-04-10 19:38:24 +00001484Py_FindMethod:PyObject*::+1:
1485Py_FindMethod:PyMethodDef[]:methods::
1486Py_FindMethod:PyObject*:self:+1:
1487Py_FindMethod:char*:name::
1488
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001489Py_GetBuildInfoconst:char*:::
1490
1491Py_GetCompilerconst:char*:::
1492
1493Py_GetCopyrightconst:char*:::
1494
1495Py_GetExecPrefix:char*:::
1496
1497Py_GetPath:char*:::
1498
1499Py_GetPlatformconst:char*:::
1500
1501Py_GetPrefix:char*:::
1502
1503Py_GetProgramFullPath:char*:::
1504
1505Py_GetProgramName:char*:::
1506
1507Py_GetVersionconst:char*:::
1508
1509Py_INCREF:void:::
1510Py_INCREF:PyObject*:o:+1:
1511
1512Py_Initialize:void:::
1513
1514Py_IsInitialized:int:::
1515
1516Py_NewInterpreter:PyThreadState*:::
1517
1518Py_SetProgramName:void:::
1519Py_SetProgramName:char*:name::
1520
1521Py_XDECREF:void:::
1522Py_XDECREF:PyObject*:o:-1:if o is not NULL
1523
1524Py_XINCREF:void:::
1525Py_XINCREF:PyObject*:o:+1:if o is not NULL
1526
1527_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1528_PyImport_FindExtension:char*:::
1529_PyImport_FindExtension:char*:::
1530
1531_PyImport_Fini:void:::
1532
1533_PyImport_FixupExtension:PyObject*:::???
1534_PyImport_FixupExtension:char*:::
1535_PyImport_FixupExtension:char*:::
1536
1537_PyImport_Init:void:::
1538
Fred Drakef913e542000-09-12 20:17:17 +00001539_PyObject_Del:void:::
1540_PyObject_Del:PyObject*:op:0:
1541
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001542_PyObject_New:PyObject*::+1:
1543_PyObject_New:PyTypeObject*:type:0:
1544
Fred Drake8e0c09d2001-07-06 23:31:49 +00001545_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001546_PyObject_NewVar:PyTypeObject*:type:0:
1547_PyObject_NewVar:int:size::
1548
1549_PyString_Resize:int:::
1550_PyString_Resize:PyObject**:string:+1:
1551_PyString_Resize:int:newsize::
1552
1553_PyTuple_Resize:int:::
1554_PyTuple_Resize:PyTupleObject**:p:+1:
1555_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001556
1557_Py_c_diff:Py_complex:::
1558_Py_c_diff:Py_complex:left::
1559_Py_c_diff:Py_complex:right::
1560
1561_Py_c_neg:Py_complex:::
1562_Py_c_neg:Py_complex:complex::
1563
1564_Py_c_pow:Py_complex:::
1565_Py_c_pow:Py_complex:num::
1566_Py_c_pow:Py_complex:exp::
1567
1568_Py_c_prod:Py_complex:::
1569_Py_c_prod:Py_complex:left::
1570_Py_c_prod:Py_complex:right::
1571
1572_Py_c_quot:Py_complex:::
1573_Py_c_quot:Py_complex:dividend::
1574_Py_c_quot:Py_complex:divisor::
1575
1576_Py_c_sum:Py_complex:::
1577_Py_c_sum:Py_complex:left::
1578_Py_c_sum:Py_complex:right::