blob: 00556a8626ce15fa3805420a0c64ebc17b884863 [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
814PyObject_HasAttr:int:::
815PyObject_HasAttr:PyObject*:o:0:
816PyObject_HasAttr:PyObject*:attr_name:0:
817
818PyObject_HasAttrString:int:::
819PyObject_HasAttrString:PyObject*:o:0:
820PyObject_HasAttrString:char*:attr_name:0:
821
822PyObject_Hash:int:::
823PyObject_Hash:PyObject*:o:0:
824
825PyObject_IsTrue:int:::
826PyObject_IsTrue:PyObject*:o:0:
827
Fred Drakef913e542000-09-12 20:17:17 +0000828PyObject_Init:PyObject*::0:
829PyObject_Init:PyObject*:op:0:
830
831PyObject_InitVar:PyVarObject*::0:
832PyObject_InitVar:PyVarObject*:op:0:
833
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000834PyObject_Length:int:::
835PyObject_Length:PyObject*:o:0:
836
Fred Drake8e0c09d2001-07-06 23:31:49 +0000837PyObject_NEW:PyObject*::+1:
838
839PyObject_New:PyObject*::+1:
840
841PyObject_NEW_VAR:PyObject*::+1:
842
843PyObject_NewVar:PyObject*::+1:
844
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000845PyObject_Print:int:::
846PyObject_Print:PyObject*:o:0:
847PyObject_Print:FILE*:fp::
848PyObject_Print:int:flags::
849
850PyObject_Repr:PyObject*::+1:
851PyObject_Repr:PyObject*:o:0:
852
Fred Drakea0c5e9f2002-06-14 14:35:56 +0000853PyObject_RichCompare:PyObject*::+1:
854PyObject_RichCompare:PyObject*:o1:0:
855PyObject_RichCompare:PyObject*:o2:0:
856PyObject_RichCompare:int:opid::
857
858PyObject_RichCompareBool:int:::
859PyObject_RichCompareBool:PyObject*:o1:0:
860PyObject_RichCompareBool:PyObject*:o2:0:
861PyObject_RichCompareBool:int:opid::
862
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000863PyObject_SetAttr:int:::
864PyObject_SetAttr:PyObject*:o:0:
865PyObject_SetAttr:PyObject*:attr_name:0:
866PyObject_SetAttr:PyObject*:v:+1:
867
868PyObject_SetAttrString:int:::
869PyObject_SetAttrString:PyObject*:o:0:
870PyObject_SetAttrString:char*:attr_name::
871PyObject_SetAttrString:PyObject*:v:+1:
872
873PyObject_SetItem:int:::
874PyObject_SetItem:PyObject*:o:0:
875PyObject_SetItem:PyObject*:key:0:
876PyObject_SetItem:PyObject*:v:+1:
877
878PyObject_Str:PyObject*::+1:
879PyObject_Str:PyObject*:o:0:
880
881PyObject_Type:PyObject*::+1:
882PyObject_Type:PyObject*:o:0:
883
Fred Drakeb2625eb2001-05-29 15:34:06 +0000884PyObject_Unicode:PyObject*::+1:
885PyObject_Unicode:PyObject*:o:0:
886
Fred Drake805bf1b1999-10-20 16:03:38 +0000887PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000888PyParser_SimpleParseFile:FILE*:fp::
889PyParser_SimpleParseFile:char*:filename::
890PyParser_SimpleParseFile:int:start::
891
Fred Drake805bf1b1999-10-20 16:03:38 +0000892PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000893PyParser_SimpleParseString:char*:str::
894PyParser_SimpleParseString:int:start::
895
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000896PyRun_AnyFile:int:::
897PyRun_AnyFile:FILE*:fp::
898PyRun_AnyFile:char*:filename::
899
Fred Drake4ca744c2000-08-12 03:39:47 +0000900PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000901PyRun_File:FILE*:fp::
902PyRun_File:char*:filename::
903PyRun_File:int:start::
904PyRun_File:PyObject*:globals:0:
905PyRun_File:PyObject*:locals:0:
906
907PyRun_InteractiveLoop:int:::
908PyRun_InteractiveLoop:FILE*:fp::
909PyRun_InteractiveLoop:char*:filename::
910
911PyRun_InteractiveOne:int:::
912PyRun_InteractiveOne:FILE*:fp::
913PyRun_InteractiveOne:char*:filename::
914
915PyRun_SimpleFile:int:::
916PyRun_SimpleFile:FILE*:fp::
917PyRun_SimpleFile:char*:filename::
918
919PyRun_SimpleString:int:::
920PyRun_SimpleString:char*:command::
921
Fred Drake4ca744c2000-08-12 03:39:47 +0000922PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000923PyRun_String:char*:str::
924PyRun_String:int:start::
925PyRun_String:PyObject*:globals:0:
926PyRun_String:PyObject*:locals:0:
927
Fred Draked61d0d32001-09-23 02:05:26 +0000928PySeqIter_New:PyObject*::+1:
929PySeqIter_New:PyObject*:seq::
930
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000931PySequence_Check:int:::
932PySequence_Check:PyObject*:o:0:
933
934PySequence_Concat:PyObject*::+1:
935PySequence_Concat:PyObject*:o1:0:
936PySequence_Concat:PyObject*:o2:0:
937
938PySequence_Count:int:::
939PySequence_Count:PyObject*:o:0:
940PySequence_Count:PyObject*:value:0:
941
942PySequence_DelItem:int:::
943PySequence_DelItem:PyObject*:o:0:
944PySequence_DelItem:int:i::
945
946PySequence_DelSlice:int:::
947PySequence_DelSlice:PyObject*:o:0:
948PySequence_DelSlice:int:i1::
949PySequence_DelSlice:int:i2::
950
Fred Drake81cccb72000-09-12 15:22:05 +0000951PySequence_Fast:PyObject*::+1:
952PySequence_Fast:PyObject*:v:0:
953PySequence_Fast:const char*:m::
954
955PySequence_Fast_GET_ITEM:PyObject*::0:
956PySequence_Fast_GET_ITEM:PyObject*:o:0:
957PySequence_Fast_GET_ITEM:int:i::
958
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000959PySequence_GetItem:PyObject*::+1:
960PySequence_GetItem:PyObject*:o:0:
961PySequence_GetItem:int:i::
962
963PySequence_GetSlice:PyObject*::+1:
964PySequence_GetSlice:PyObject*:o:0:
965PySequence_GetSlice:int:i1::
966PySequence_GetSlice:int:i2::
967
968PySequence_In:int:::
969PySequence_In:PyObject*:o:0:
970PySequence_In:PyObject*:value:0:
971
972PySequence_Index:int:::
973PySequence_Index:PyObject*:o:0:
974PySequence_Index:PyObject*:value:0:
975
Fred Drake1fa93652000-09-22 18:19:37 +0000976PySequence_InPlaceConcat:PyObject*::+1:
977PySequence_InPlaceConcat:PyObject*:s:0:
978PySequence_InPlaceConcat:PyObject*:o:0:
979
980PySequence_InPlaceRepeat:PyObject*::+1:
981PySequence_InPlaceRepeat:PyObject*:s:0:
982PySequence_InPlaceRepeat:PyObject*:o:0:
983
Fred Drakeffb294b2002-05-23 16:03:16 +0000984PySequence_ITEM:PyObject*::+1:
985PySequence_ITEM:PyObject*:o:0:
986PySequence_ITEM:int:i::
987
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000988PySequence_Repeat:PyObject*::+1:
989PySequence_Repeat:PyObject*:o:0:
990PySequence_Repeat:int:count::
991
992PySequence_SetItem:int:::
993PySequence_SetItem:PyObject*:o:0:
994PySequence_SetItem:int:i::
995PySequence_SetItem:PyObject*:v:+1:
996
997PySequence_SetSlice:int:::
998PySequence_SetSlice:PyObject*:o:0:
999PySequence_SetSlice:int:i1::
1000PySequence_SetSlice:int:i2::
1001PySequence_SetSlice:PyObject*:v:+1:
1002
Fred Drake1c2d06a2000-06-16 20:00:04 +00001003PySequence_List:PyObject*::+1:
1004PySequence_List:PyObject*:o:0:
1005
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001006PySequence_Tuple:PyObject*::+1:
1007PySequence_Tuple:PyObject*:o:0:
1008
Fred Drake23a78cf2001-09-24 15:29:47 +00001009PySlice_Check:int:::
1010PySlice_Check:PyObject*:ob:0:
1011
1012PySlice_New:PyObject*::+1:
1013PySlice_New:PyObject*:start:0:
1014PySlice_New:PyObject*:stop:0:
1015PySlice_New:PyObject*:step:0:
1016
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001017PyString_AS_STRING:char*:::
1018PyString_AS_STRING:PyObject*:string:0:
1019
Fred Drakeb2625eb2001-05-29 15:34:06 +00001020PyString_AsDecodedObject:PyObject*::+1:
1021PyString_AsDecodedObject:PyObject*:str:0:
1022PyString_AsDecodedObject:const char*:encoding::
1023PyString_AsDecodedObject:const char*:errors::
1024
1025PyString_AsEncodedObject:PyObject*::+1:
1026PyString_AsEncodedObject:PyObject*:str:0:
1027PyString_AsEncodedObject:const char*:encoding::
1028PyString_AsEncodedObject:const char*:errors::
1029
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001030PyString_AsString:char*:::
1031PyString_AsString:PyObject*:string:0:
1032
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +00001033PyString_AsStringAndSize:int:::
1034PyString_AsStringAndSize:PyObject*:obj:0:
1035PyString_AsStringAndSize:char**:buffer::
1036PyString_AsStringAndSize:int*:length::
1037
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001038PyString_Check:int:::
1039PyString_Check:PyObject*:o:0:
1040
1041PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001042PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001043PyString_Concat:PyObject*:newpart:0:
1044
1045PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001046PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001047PyString_ConcatAndDel:PyObject*:newpart:-1:
1048
1049PyString_Format:PyObject*::+1:
1050PyString_Format:PyObject*:format:0:
1051PyString_Format:PyObject*:args:0:
1052
1053PyString_FromString:PyObject*::+1:
1054PyString_FromString:const char*:v::
1055
1056PyString_FromStringAndSize:PyObject*::+1:
1057PyString_FromStringAndSize:const char*:v::
1058PyString_FromStringAndSize:int:len::
1059
Barry Warsaw8c64a542001-08-28 02:32:04 +00001060PyString_FromFormat:PyObject*::+1:
1061PyString_FromFormat:const char*:format::
1062PyString_FromFormat::...::
1063
1064PyString_FromFormatV:PyObject*::+1:
1065PyString_FromFormatV:const char*:format::
1066PyString_FromFormatV:va_list:vargs::
1067
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001068PyString_GET_SIZE:int:::
1069PyString_GET_SIZE:PyObject*:string:0:
1070
1071PyString_InternFromString:PyObject*::+1:
1072PyString_InternFromString:const char*:v::
1073
1074PyString_InternInPlace:void:::
1075PyString_InternInPlace:PyObject**:string:+1:???
1076
1077PyString_Size:int:::
1078PyString_Size:PyObject*:string:0:
1079
Marc-André Lemburg47073202000-07-07 15:48:54 +00001080PyString_Decode:PyObject*::+1:
1081PyString_Decode:const char*:s::
1082PyString_Decode:int:size::
1083PyString_Decode:const char*:encoding::
1084PyString_Decode:const char*:errors::
1085
1086PyString_Encode:PyObject*::+1:
1087PyString_Encode:const char*:s::
1088PyString_Encode:int:size::
1089PyString_Encode:const char*:encoding::
1090PyString_Encode:const char*:errors::
1091
1092PyString_AsEncodedString:PyObject*::+1:
1093PyString_AsEncodedString:PyObject*:str::
1094PyString_AsEncodedString:const char*:encoding::
1095PyString_AsEncodedString:const char*:errors::
1096
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001097PySys_SetArgv:int:::
1098PySys_SetArgv:int:argc::
1099PySys_SetArgv:char**:argv::
1100
1101PyThreadState_Clear:void:::
1102PyThreadState_Clear:PyThreadState*:tstate::
1103
1104PyThreadState_Delete:void:::
1105PyThreadState_Delete:PyThreadState*:tstate::
1106
1107PyThreadState_Get:PyThreadState*:::
1108
Fred Drakeb2625eb2001-05-29 15:34:06 +00001109PyThreadState_GetDict:PyObject*::0:
1110
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001111PyThreadState_New:PyThreadState*:::
1112PyThreadState_New:PyInterpreterState*:interp::
1113
1114PyThreadState_Swap:PyThreadState*:::
1115PyThreadState_Swap:PyThreadState*:tstate::
1116
1117PyTuple_Check:int:::
1118PyTuple_Check:PyObject*:p:0:
1119
1120PyTuple_GET_ITEM:PyObject*::0:
1121PyTuple_GET_ITEM:PyTupleObject*:p:0:
1122PyTuple_GET_ITEM:int:pos::
1123
1124PyTuple_GetItem:PyObject*::0:
1125PyTuple_GetItem:PyTupleObject*:p:0:
1126PyTuple_GetItem:int:pos::
1127
1128PyTuple_GetSlice:PyObject*::+1:
1129PyTuple_GetSlice:PyTupleObject*:p:0:
1130PyTuple_GetSlice:int:low::
1131PyTuple_GetSlice:int:high::
1132
1133PyTuple_New:PyObject*::+1:
1134PyTuple_New:int:len::
1135
1136PyTuple_SET_ITEM:void:::
1137PyTuple_SET_ITEM:PyTupleObject*:p:0:
1138PyTuple_SET_ITEM:int:pos::
1139PyTuple_SET_ITEM:PyObject*:o:0:
1140
1141PyTuple_SetItem:int:::
1142PyTuple_SetItem:PyTupleObject*:p:0:
1143PyTuple_SetItem:int:pos::
1144PyTuple_SetItem:PyObject*:o:0:
1145
1146PyTuple_Size:int:::
1147PyTuple_Size:PyTupleObject*:p:0:
1148
Fred Drake1b58bff2001-10-29 17:43:14 +00001149PyType_GenericAlloc:PyObject*::+1:
1150PyType_GenericAlloc:PyObject*:type:0:
1151PyType_GenericAlloc:int:nitems:0:
1152
1153PyType_GenericNew:PyObject*::+1:
1154PyType_GenericNew:PyObject*:type:0:
1155PyType_GenericNew:PyObject*:args:0:
1156PyType_GenericNew:PyObject*:kwds:0:
1157
Fred Drake992fe5a2000-06-16 21:04:15 +00001158PyUnicode_Check:int:::
1159PyUnicode_Check:PyObject*:o:0:
1160
1161PyUnicode_GET_SIZE:int:::
1162PyUnicode_GET_SIZE:PyObject*:o:0:
1163
1164PyUnicode_GET_DATA_SIZE:int:::
1165PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1166
1167PyUnicode_AS_UNICODE:Py_UNICODE*:::
1168PyUnicode_AS_UNICODE:PyObject*:o:0:
1169
1170PyUnicode_AS_DATA:const char*:::
1171PyUnicode_AS_DATA:PyObject*:o:0:
1172
1173Py_UNICODE_ISSPACE:int:::
1174Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1175
1176Py_UNICODE_ISLOWER:int:::
1177Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1178
1179Py_UNICODE_ISUPPER:int:::
1180Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1181
1182Py_UNICODE_ISTITLE:int:::
1183Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1184
1185Py_UNICODE_ISLINEBREAK:int:::
1186Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1187
1188Py_UNICODE_ISDECIMAL:int:::
1189Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1190
1191Py_UNICODE_ISDIGIT:int:::
1192Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1193
1194Py_UNICODE_ISNUMERIC:int:::
1195Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1196
1197Py_UNICODE_TOLOWER:Py_UNICODE:::
1198Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1199
1200Py_UNICODE_TOUPPER:Py_UNICODE:::
1201Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1202
1203Py_UNICODE_TOTITLE:Py_UNICODE:::
1204Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1205
1206Py_UNICODE_TODECIMAL:int:::
1207Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1208
1209Py_UNICODE_TODIGIT:int:::
1210Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1211
1212Py_UNICODE_TONUMERIC:double:::
1213Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1214
1215PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001216PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001217PyUnicode_FromUnicode:int:size::
1218
1219PyUnicode_AsUnicode:Py_UNICODE*:::
1220PyUnicode_AsUnicode:PyObject :*unicode:0:
1221
1222PyUnicode_GetSize:int:::
1223PyUnicode_GetSize:PyObject :*unicode:0:
1224
1225PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001226PyUnicode_FromObject:PyObject*:*obj:0:
1227
1228PyUnicode_FromEncodedObject:PyObject*::+1:
1229PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1230PyUnicode_FromEncodedObject:const char*:encoding::
1231PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001232
1233PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001234PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001235PyUnicode_FromWideChar:int:size::
1236
1237PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001238PyUnicode_AsWideChar:PyObject*:*unicode:0:
1239PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001240PyUnicode_AsWideChar:int:size::
1241
1242PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001243PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001244PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001245PyUnicode_Decode:const char*:encoding::
1246PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001247
1248PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001249PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001250PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001251PyUnicode_Encode:const char*:encoding::
1252PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001253
1254PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001255PyUnicode_AsEncodedString:PyObject*:unicode::
1256PyUnicode_AsEncodedString:const char*:encoding::
1257PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001258
1259PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001260PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001261PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001262PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001263
1264PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001265PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001266PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001267PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001268
1269PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001270PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001271
1272PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001273PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001274PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001275PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001276PyUnicode_DecodeUTF16:int*:byteorder::
1277
1278PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001279PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001280PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001281PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001282PyUnicode_EncodeUTF16:int:byteorder::
1283
1284PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001285PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001286
1287PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001288PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001289PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001290PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001291
1292PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001293PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001294PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001295PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001296
1297PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001298PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001299
1300PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001301PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001302PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001303PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001304
1305PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001306PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001307PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001308PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001309
1310PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001311PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001312
1313PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001314PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001315PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001316PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001317
1318PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001319PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001320PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001321PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001322
1323PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001324PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001325
1326PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001327PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001328PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001329PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001330
1331PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001332PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001333PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001334PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001335
1336PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001337PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001338
1339PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001340PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001341PyUnicode_DecodeCharmap:int:size::
1342PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001343PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001344
1345PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001346PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001347PyUnicode_EncodeCharmap:int:size::
1348PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001349PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001350
1351PyUnicode_AsCharmapString:PyObject*::+1:
1352PyUnicode_AsCharmapString:PyObject*:unicode:0:
1353PyUnicode_AsCharmapString:PyObject*:mapping:0:
1354
1355PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001356PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001357PyUnicode_TranslateCharmap:int:size::
1358PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001359PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001360
1361PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001362PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001363PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001364PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001365
1366PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001367PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001368PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001369PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001370
1371PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001372PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001373
1374PyUnicode_Concat:PyObject*::+1:
1375PyUnicode_Concat:PyObject*:left:0:
1376PyUnicode_Concat:PyObject*:right:0:
1377
1378PyUnicode_Split:PyObject*::+1:
1379PyUnicode_Split:PyObject*:left:0:
1380PyUnicode_Split:PyObject*:right:0:
1381PyUnicode_Split:int:maxsplit::
1382
1383PyUnicode_Splitlines:PyObject*::+1:
1384PyUnicode_Splitlines:PyObject*:s:0:
1385PyUnicode_Splitlines:int:maxsplit::
1386
1387PyUnicode_Translate:PyObject*::+1:
1388PyUnicode_Translate:PyObject*:str:0:
1389PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001390PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001391
1392PyUnicode_Join:PyObject*::+1:
1393PyUnicode_Join:PyObject*:separator:0:
1394PyUnicode_Join:PyObject*:seq:0:
1395
1396PyUnicode_Tailmatch:PyObject*::+1:
1397PyUnicode_Tailmatch:PyObject*:str:0:
1398PyUnicode_Tailmatch:PyObject*:substr:0:
1399PyUnicode_Tailmatch:int:start::
1400PyUnicode_Tailmatch:int:end::
1401PyUnicode_Tailmatch:int:direction::
1402
Fred Drake1d1e1db2002-06-20 22:07:04 +00001403PyUnicode_Find:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001404PyUnicode_Find:PyObject*:str:0:
1405PyUnicode_Find:PyObject*:substr:0:
1406PyUnicode_Find:int:start::
1407PyUnicode_Find:int:end::
1408PyUnicode_Find:int:direction::
1409
Fred Drake1d1e1db2002-06-20 22:07:04 +00001410PyUnicode_Count:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001411PyUnicode_Count:PyObject*:str:0:
1412PyUnicode_Count:PyObject*:substr:0:
1413PyUnicode_Count:int:start::
1414PyUnicode_Count:int:end::
1415
1416PyUnicode_Replace:PyObject*::+1:
1417PyUnicode_Replace:PyObject*:str:0:
1418PyUnicode_Replace:PyObject*:substr:0:
1419PyUnicode_Replace:PyObject*:replstr:0:
1420PyUnicode_Replace:int:maxcount::
1421
1422PyUnicode_Compare:int:::
1423PyUnicode_Compare:PyObject*:left:0:
1424PyUnicode_Compare:PyObject*:right:0:
1425
1426PyUnicode_Format:PyObject*::+1:
1427PyUnicode_Format:PyObject*:format:0:
1428PyUnicode_Format:PyObject*:args:0:
1429
1430PyUnicode_Contains:int:::
1431PyUnicode_Contains:PyObject*:container:0:
1432PyUnicode_Contains:PyObject*:element:0:
1433
Fred Drake1b58bff2001-10-29 17:43:14 +00001434PyWeakref_GET_OBJECT:PyObject*::0:
1435PyWeakref_GET_OBJECT:PyObject*:ref:0:
1436
Fred Drake8371e842002-02-20 05:07:36 +00001437PyWeakref_GetObject:PyObject*::0:
Fred Drake1b58bff2001-10-29 17:43:14 +00001438PyWeakref_GetObject:PyObject*:ref:0:
1439
1440PyWeakref_NewProxy:PyObject*::+1:
1441PyWeakref_NewProxy:PyObject*:ob:0:
1442PyWeakref_NewProxy:PyObject*:callback:0:
1443
1444PyWeakref_NewRef:PyObject*::+1:
1445PyWeakref_NewRef:PyObject*:ob:0:
1446PyWeakref_NewRef:PyObject*:callback:0:
1447
1448PyWrapper_New:PyObject*::+1:
1449PyWrapper_New:PyObject*:d:0:
1450PyWrapper_New:PyObject*:self:0:
1451
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001452Py_AtExit:int:::
1453Py_AtExit:void (*)():func::
1454
Fred Drake6d988552001-07-20 20:55:31 +00001455Py_BuildValue:PyObject*::+1:
1456Py_BuildValue:char*:format::
1457
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001458Py_CompileString:PyObject*::+1:
1459Py_CompileString:char*:str::
1460Py_CompileString:char*:filename::
1461Py_CompileString:int:start::
1462
1463Py_DECREF:void:::
1464Py_DECREF:PyObject*:o:-1:
1465
1466Py_EndInterpreter:void:::
1467Py_EndInterpreter:PyThreadState*:tstate::
1468
1469Py_Exit:void:::
1470Py_Exit:int:status::
1471
1472Py_FatalError:void:::
1473Py_FatalError:char*:message::
1474
1475Py_FdIsInteractive:int:::
1476Py_FdIsInteractive:FILE*:fp::
1477Py_FdIsInteractive:char*:filename::
1478
1479Py_Finalize:void:::
1480
Fred Drake8520cc22000-04-10 19:38:24 +00001481Py_FindMethod:PyObject*::+1:
1482Py_FindMethod:PyMethodDef[]:methods::
1483Py_FindMethod:PyObject*:self:+1:
1484Py_FindMethod:char*:name::
1485
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001486Py_GetBuildInfoconst:char*:::
1487
1488Py_GetCompilerconst:char*:::
1489
1490Py_GetCopyrightconst:char*:::
1491
1492Py_GetExecPrefix:char*:::
1493
1494Py_GetPath:char*:::
1495
1496Py_GetPlatformconst:char*:::
1497
1498Py_GetPrefix:char*:::
1499
1500Py_GetProgramFullPath:char*:::
1501
1502Py_GetProgramName:char*:::
1503
1504Py_GetVersionconst:char*:::
1505
1506Py_INCREF:void:::
1507Py_INCREF:PyObject*:o:+1:
1508
1509Py_Initialize:void:::
1510
1511Py_IsInitialized:int:::
1512
1513Py_NewInterpreter:PyThreadState*:::
1514
1515Py_SetProgramName:void:::
1516Py_SetProgramName:char*:name::
1517
1518Py_XDECREF:void:::
1519Py_XDECREF:PyObject*:o:-1:if o is not NULL
1520
1521Py_XINCREF:void:::
1522Py_XINCREF:PyObject*:o:+1:if o is not NULL
1523
1524_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1525_PyImport_FindExtension:char*:::
1526_PyImport_FindExtension:char*:::
1527
1528_PyImport_Fini:void:::
1529
1530_PyImport_FixupExtension:PyObject*:::???
1531_PyImport_FixupExtension:char*:::
1532_PyImport_FixupExtension:char*:::
1533
1534_PyImport_Init:void:::
1535
Fred Drakef913e542000-09-12 20:17:17 +00001536_PyObject_Del:void:::
1537_PyObject_Del:PyObject*:op:0:
1538
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001539_PyObject_New:PyObject*::+1:
1540_PyObject_New:PyTypeObject*:type:0:
1541
Fred Drake8e0c09d2001-07-06 23:31:49 +00001542_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001543_PyObject_NewVar:PyTypeObject*:type:0:
1544_PyObject_NewVar:int:size::
1545
1546_PyString_Resize:int:::
1547_PyString_Resize:PyObject**:string:+1:
1548_PyString_Resize:int:newsize::
1549
1550_PyTuple_Resize:int:::
1551_PyTuple_Resize:PyTupleObject**:p:+1:
1552_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001553
1554_Py_c_diff:Py_complex:::
1555_Py_c_diff:Py_complex:left::
1556_Py_c_diff:Py_complex:right::
1557
1558_Py_c_neg:Py_complex:::
1559_Py_c_neg:Py_complex:complex::
1560
1561_Py_c_pow:Py_complex:::
1562_Py_c_pow:Py_complex:num::
1563_Py_c_pow:Py_complex:exp::
1564
1565_Py_c_prod:Py_complex:::
1566_Py_c_prod:Py_complex:left::
1567_Py_c_prod:Py_complex:right::
1568
1569_Py_c_quot:Py_complex:::
1570_Py_c_quot:Py_complex:dividend::
1571_Py_c_quot:Py_complex:divisor::
1572
1573_Py_c_sum:Py_complex:::
1574_Py_c_sum:Py_complex:left::
1575_Py_c_sum:Py_complex:right::