blob: f3bd32e7fc1f6fcf4e8a4dcab1852c4459c1b2c5 [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
Georg Brandl9b743f52006-02-20 12:57:53 +0000340PyFunction_GetClosure:PyObject*::0:
341PyFunction_GetClosure:PyObject*:op:0:
342
343PyFunction_GetCode:PyObject*::0:
344PyFunction_GetCode:PyObject*:op:0:
345
346PyFunction_GetDefaults:PyObject*::0:
347PyFunction_GetDefaults:PyObject*:op:0:
348
349PyFunction_GetGlobals:PyObject*::0:
350PyFunction_GetGlobals:PyObject*:op:0:
351
352PyFunction_GetModule:PyObject*::0:
353PyFunction_GetModule:PyObject*:op:0:
354
355PyFunction_New:PyObject*::+1:
356PyFunction_New:PyObject*:code:+1:
357PyFunction_New:PyObject*:globals:+1:
358
359PyFunction_SetClosure:int:::
360PyFunction_SetClosure:PyObject*:op:0:
361PyFunction_SetClosure:PyObject*:closure:+1:
362
363PyFunction_SetDefaults:int:::
364PyFunction_SetDefaults:PyObject*:op:0:
365PyFunction_SetDefaults:PyObject*:defaults:+1:
366
Fred Drakeee814bf2000-11-28 22:34:32 +0000367Py_InitModule:PyObject*::0:
Georg Brandl9b743f52006-02-20 12:57:53 +0000368Py_InitModule:char*:name::
369Py_InitModule:PyMethodDef[]:methods::
Fred Drakeee814bf2000-11-28 22:34:32 +0000370
371Py_InitModule3:PyObject*::0:
Georg Brandl9b743f52006-02-20 12:57:53 +0000372Py_InitModule3:char*:name::
373Py_InitModule3:PyMethodDef[]:methods::
374Py_InitModule3:char*:doc::
Fred Drakeee814bf2000-11-28 22:34:32 +0000375
376Py_InitModule4:PyObject*::0:
Georg Brandl9b743f52006-02-20 12:57:53 +0000377Py_InitModule4:char*:name::
378Py_InitModule4:PyMethodDef[]:methods::
379Py_InitModule4:char*:doc::
380Py_InitModule4:PyObject*:self::
381Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
Fred Drakeee814bf2000-11-28 22:34:32 +0000382
Fred Drake805bf1b1999-10-20 16:03:38 +0000383PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000384PyImport_AddModule:char*:name::
385
386PyImport_Cleanup:void:::
387
388PyImport_ExecCodeModule:PyObject*::+1:
389PyImport_ExecCodeModule:char*:name::
390PyImport_ExecCodeModule:PyObject*:co:0:
391
392PyImport_GetMagicNumber:long:::
393
394PyImport_GetModuleDict:PyObject*::0:
395
396PyImport_Import:PyObject*::+1:
397PyImport_Import:PyObject*:name:0:
398
399PyImport_ImportFrozenModule:int:::
400PyImport_ImportFrozenModule:char*:::
401
Fred Drakeeb725cd2000-04-03 15:06:40 +0000402PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000403PyImport_ImportModule:char*:name::
404
Fred Drakeeb725cd2000-04-03 15:06:40 +0000405PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000406PyImport_ImportModuleEx:char*:name::
407PyImport_ImportModuleEx:PyObject*:globals:0:???
408PyImport_ImportModuleEx:PyObject*:locals:0:???
409PyImport_ImportModuleEx:PyObject*:fromlist:0:???
410
Fred Drakeeb725cd2000-04-03 15:06:40 +0000411PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000412PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000413
Fred Drake5838d0f2001-01-28 06:39:35 +0000414PyInstance_New:PyObject*::+1:
415PyInstance_New:PyObject*:klass:+1:
416PyInstance_New:PyObject*:arg:0:
417PyInstance_New:PyObject*:kw:0:
418
419PyInstance_NewRaw:PyObject*::+1:
420PyInstance_NewRaw:PyObject*:klass:+1:
421PyInstance_NewRaw:PyObject*:dict:+1:
422
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000423PyInt_AS_LONG:long:::
424PyInt_AS_LONG:PyIntObject*:io:0:
425
426PyInt_AsLong:long:::
427PyInt_AsLong:PyObject*:io:0:
428
429PyInt_Check:int:::
Fred Drake9c75ff72001-09-06 18:06:46 +0000430PyInt_Check:PyObject*:op:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000431
432PyInt_FromLong:PyObject*::+1:
433PyInt_FromLong:long:ival::
434
435PyInt_GetMax:long:::
436
437PyInterpreterState_Clear:void:::
438PyInterpreterState_Clear:PyInterpreterState*:interp::
439
440PyInterpreterState_Delete:void:::
441PyInterpreterState_Delete:PyInterpreterState*:interp::
442
443PyInterpreterState_New:PyInterpreterState*:::
444
Fred Drakeb2625eb2001-05-29 15:34:06 +0000445PyIter_Check:int:o:0:
446
447PyIter_Next:PyObject*::+1:
448PyIter_Next:PyObject*:o:0:
449
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000450PyList_Append:int:::
451PyList_Append:PyObject*:list:0:
452PyList_Append:PyObject*:item:+1:
453
454PyList_AsTuple:PyObject*::+1:
455PyList_AsTuple:PyObject*:list:0:
456
457PyList_Check:int:::
458PyList_Check:PyObject*:p:0:
459
460PyList_GET_ITEM:PyObject*::0:
461PyList_GET_ITEM:PyObject*:list:0:
462PyList_GET_ITEM:int:i:0:
463
464PyList_GET_SIZE:int:::
465PyList_GET_SIZE:PyObject*:list:0:
466
467PyList_GetItem:PyObject*::0:
468PyList_GetItem:PyObject*:list:0:
469PyList_GetItem:int:index::
470
471PyList_GetSlice:PyObject*::+1:
472PyList_GetSlice:PyObject*:list:0:
473PyList_GetSlice:int:low::
474PyList_GetSlice:int:high::
475
476PyList_Insert:int:::
477PyList_Insert:PyObject*:list:0:
478PyList_Insert:int:index::
479PyList_Insert:PyObject*:item:+1:
480
481PyList_New:PyObject*::+1:
482PyList_New:int:len::
483
484PyList_Reverse:int:::
485PyList_Reverse:PyObject*:list:0:
486
Fred Draked8548312001-07-10 16:19:13 +0000487PyList_SET_ITEM:void:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000488PyList_SET_ITEM:PyObject*:list:0:
489PyList_SET_ITEM:int:i::
490PyList_SET_ITEM:PyObject*:o:0:
491
492PyList_SetItem:int:::
493PyList_SetItem:PyObject*:list:0:
494PyList_SetItem:int:index::
495PyList_SetItem:PyObject*:item:0:
496
497PyList_SetSlice:int:::
498PyList_SetSlice:PyObject*:list:0:
499PyList_SetSlice:int:low::
500PyList_SetSlice:int:high::
501PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
502
503PyList_Size:int:::
504PyList_Size:PyObject*:list:0:
505
506PyList_Sort:int:::
507PyList_Sort:PyObject*:list:0:
508
509PyLong_AsDouble:double:::
510PyLong_AsDouble:PyObject*:pylong:0:
511
512PyLong_AsLong:long:::
513PyLong_AsLong:PyObject*:pylong:0:
514
515PyLong_AsUnsignedLong:unsigned long:::
516PyLong_AsUnsignedLong:PyObject*:pylong:0:
517
518PyLong_Check:int:::
519PyLong_Check:PyObject*:p:0:
520
521PyLong_FromDouble:PyObject*::+1:
522PyLong_FromDouble:double:v::
523
524PyLong_FromLong:PyObject*::+1:
525PyLong_FromLong:long:v::
526
Fred Drakef47d8ef2001-09-20 19:18:52 +0000527PyLong_FromLongLong:PyObject*::+1:
528PyLong_FromLongLong:long long:v::
529
530PyLong_FromUnsignedLongLong:PyObject*::+1:
531PyLong_FromUnsignedLongLong:unsigned long long:v::
532
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000533PyLong_FromString:PyObject*::+1:
534PyLong_FromString:char*:str::
535PyLong_FromString:char**:pend::
536PyLong_FromString:int:base::
537
Fred Drakef47d8ef2001-09-20 19:18:52 +0000538PyLong_FromUnicode:PyObject*::+1:
539PyLong_FromUnicode:Py_UNICODE:u::
540PyLong_FromUnicode:int:length::
541PyLong_FromUnicode:int:base::
542
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000543PyLong_FromUnsignedLong:PyObject*::+1:
544PyLong_FromUnsignedLong:unsignedlong:v::
545
Fred Drakef47d8ef2001-09-20 19:18:52 +0000546PyLong_FromVoidPtr:PyObject*::+1:
547PyLong_FromVoidPtr:void*:p::
548
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000549PyMapping_Check:int:::
550PyMapping_Check:PyObject*:o:0:
551
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000552PyMapping_DelItem:int:::
553PyMapping_DelItem:PyObject*:o:0:
554PyMapping_DelItem:PyObject*:key:0:
555
556PyMapping_DelItemString:int:::
557PyMapping_DelItemString:PyObject*:o:0:
558PyMapping_DelItemString:char*:key::
559
560PyMapping_GetItemString:PyObject*::+1:
561PyMapping_GetItemString:PyObject*:o:0:
562PyMapping_GetItemString:char*:key::
563
564PyMapping_HasKey:int:::
565PyMapping_HasKey:PyObject*:o:0:
566PyMapping_HasKey:PyObject*:key::
567
568PyMapping_HasKeyString:int:::
569PyMapping_HasKeyString:PyObject*:o:0:
570PyMapping_HasKeyString:char*:key::
571
572PyMapping_Items:PyObject*::+1:
573PyMapping_Items:PyObject*:o:0:
574
575PyMapping_Keys:PyObject*::+1:
576PyMapping_Keys:PyObject*:o:0:
577
578PyMapping_Length:int:::
579PyMapping_Length:PyObject*:o:0:
580
581PyMapping_SetItemString:int:::
582PyMapping_SetItemString:PyObject*:o:0:
583PyMapping_SetItemString:char*:key::
584PyMapping_SetItemString:PyObject*:v:+1:
585
586PyMapping_Values:PyObject*::+1:
587PyMapping_Values:PyObject*:o:0:
588
Fred Drake1b58bff2001-10-29 17:43:14 +0000589PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
590PyMarshal_ReadLastObjectFromFile:FILE*:file::
591
592PyMarshal_ReadObjectFromFile:PyObject*::+1:
593PyMarshal_ReadObjectFromFile:FILE*:file::
594
595PyMarshal_ReadObjectFromString:PyObject*::+1:
596PyMarshal_ReadObjectFromString:char*:string::
597PyMarshal_ReadObjectFromString:int:len::
598
599PyMarshal_WriteObjectToString:PyObject*::+1:
600PyMarshal_WriteObjectToString:PyObject*:value:0:
601
Fred Drake9c75ff72001-09-06 18:06:46 +0000602PyMethod_Class:PyObject*::0:
603PyMethod_Class:PyObject*:im:0:
604
605PyMethod_Function:PyObject*::0:
606PyMethod_Function:PyObject*:im:0:
607
608PyMethod_GET_CLASS:PyObject*::0:
609PyMethod_GET_CLASS:PyObject*:im:0:
610
611PyMethod_GET_FUNCTION:PyObject*::0:
612PyMethod_GET_FUNCTION:PyObject*:im:0:
613
614PyMethod_GET_SELF:PyObject*::0:
615PyMethod_GET_SELF:PyObject*:im:0:
616
617PyMethod_New:PyObject*::+1:
618PyMethod_New:PyObject*:func:0:
619PyMethod_New:PyObject*:self:0:
620PyMethod_New:PyObject*:class:0:
621
622PyMethod_Self:PyObject*::0:
623PyMethod_Self:PyObject*:im:0:
624
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000625PyModule_GetDict:PyObject*::0:
626PyModule_GetDict::PyObject* module:0:
627
628PyModule_GetFilename:char*:::
629PyModule_GetFilename:PyObject*:module:0:
630
631PyModule_GetName:char*:::
632PyModule_GetName:PyObject*:module:0:
633
634PyModule_New:PyObject*::+1:
635PyModule_New::char* name::
636
637PyNumber_Absolute:PyObject*::+1:
638PyNumber_Absolute:PyObject*:o:0:
639
640PyNumber_Add:PyObject*::+1:
641PyNumber_Add:PyObject*:o1:0:
642PyNumber_Add:PyObject*:o2:0:
643
644PyNumber_And:PyObject*::+1:
645PyNumber_And:PyObject*:o1:0:
646PyNumber_And:PyObject*:o2:0:
647
648PyNumber_Check:PyObject*:o:0:
649PyNumber_Check:int:::
650
651PyNumber_Coerce:int:::
652PyNumber_Coerce:PyObject**:p1:+1:
653PyNumber_Coerce:PyObject**:p2:+1:
654
655PyNumber_Divide:PyObject*::+1:
656PyNumber_Divide:PyObject*:o1:0:
657PyNumber_Divide:PyObject*:o2:0:
658
659PyNumber_Divmod:PyObject*::+1:
660PyNumber_Divmod:PyObject*:o1:0:
661PyNumber_Divmod:PyObject*:o2:0:
662
663PyNumber_Float:PyObject*::+1:
664PyNumber_Float:PyObject*:o:0:
665
Fred Drake03590c62001-08-08 18:50:18 +0000666PyNumber_FloorDivide:PyObject*::+1:
667PyNumber_FloorDivide:PyObject*:v:0:
668PyNumber_FloorDivide:PyObject*:w:0:
669
Fred Drake1fa93652000-09-22 18:19:37 +0000670PyNumber_InPlaceAdd:PyObject*::+1:
671PyNumber_InPlaceAdd:PyObject*:v:0:
672PyNumber_InPlaceAdd:PyObject*:w:0:
673
674PyNumber_InPlaceAnd:PyObject*::+1:
675PyNumber_InPlaceAnd:PyObject*:v:0:
676PyNumber_InPlaceAnd:PyObject*:w:0:
677
678PyNumber_InPlaceDivide:PyObject*::+1:
679PyNumber_InPlaceDivide:PyObject*:v:0:
680PyNumber_InPlaceDivide:PyObject*:w:0:
681
Fred Drake03590c62001-08-08 18:50:18 +0000682PyNumber_InPlaceFloorDivide:PyObject*::+1:
683PyNumber_InPlaceFloorDivide:PyObject*:v:0:
684PyNumber_InPlaceFloorDivide:PyObject*:w:0:
685
Fred Drake1fa93652000-09-22 18:19:37 +0000686PyNumber_InPlaceLshift:PyObject*::+1:
687PyNumber_InPlaceLshift:PyObject*:v:0:
688PyNumber_InPlaceLshift:PyObject*:w:0:
689
690PyNumber_InPlaceMultiply:PyObject*::+1:
691PyNumber_InPlaceMultiply:PyObject*:v:0:
692PyNumber_InPlaceMultiply:PyObject*:w:0:
693
694PyNumber_InPlaceOr:PyObject*::+1:
695PyNumber_InPlaceOr:PyObject*:v:0:
696PyNumber_InPlaceOr:PyObject*:w:0:
697
698PyNumber_InPlacePower:PyObject*::+1:
699PyNumber_InPlacePower:PyObject*:v:0:
700PyNumber_InPlacePower:PyObject*:w:0:
701PyNumber_InPlacePower:PyObject*:z:0:
702
703PyNumber_InPlaceRemainder:PyObject*::+1:
704PyNumber_InPlaceRemainder:PyObject*:v:0:
705PyNumber_InPlaceRemainder:PyObject*:w:0:
706
707PyNumber_InPlaceRshift:PyObject*::+1:
708PyNumber_InPlaceRshift:PyObject*:v:0:
709PyNumber_InPlaceRshift:PyObject*:w:0:
710
711PyNumber_InPlaceSubtract:PyObject*::+1:
712PyNumber_InPlaceSubtract:PyObject*:v:0:
713PyNumber_InPlaceSubtract:PyObject*:w:0:
714
Fred Drake03590c62001-08-08 18:50:18 +0000715PyNumber_InPlaceTrueDivide:PyObject*::+1:
716PyNumber_InPlaceTrueDivide:PyObject*:v:0:
717PyNumber_InPlaceTrueDivide:PyObject*:w:0:
718
Fred Drake1fa93652000-09-22 18:19:37 +0000719PyNumber_InPlaceXor:PyObject*::+1:
720PyNumber_InPlaceXor:PyObject*:v:0:
721PyNumber_InPlaceXor:PyObject*:w:0:
722
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000723PyNumber_Int:PyObject*::+1:
724PyNumber_Int:PyObject*:o:0:
725
726PyNumber_Invert:PyObject*::+1:
727PyNumber_Invert:PyObject*:o:0:
728
729PyNumber_Long:PyObject*::+1:
730PyNumber_Long:PyObject*:o:0:
731
732PyNumber_Lshift:PyObject*::+1:
733PyNumber_Lshift:PyObject*:o1:0:
734PyNumber_Lshift:PyObject*:o2:0:
735
736PyNumber_Multiply:PyObject*::+1:
737PyNumber_Multiply:PyObject*:o1:0:
738PyNumber_Multiply:PyObject*:o2:0:
739
740PyNumber_Negative:PyObject*::+1:
741PyNumber_Negative:PyObject*:o:0:
742
743PyNumber_Or:PyObject*::+1:
744PyNumber_Or:PyObject*:o1:0:
745PyNumber_Or:PyObject*:o2:0:
746
747PyNumber_Positive:PyObject*::+1:
748PyNumber_Positive:PyObject*:o:0:
749
750PyNumber_Power:PyObject*::+1:
751PyNumber_Power:PyObject*:o1:0:
752PyNumber_Power:PyObject*:o2:0:
753PyNumber_Power:PyObject*:o3:0:
754
755PyNumber_Remainder:PyObject*::+1:
756PyNumber_Remainder:PyObject*:o1:0:
757PyNumber_Remainder:PyObject*:o2:0:
758
759PyNumber_Rshift:PyObject*::+1:
760PyNumber_Rshift:PyObject*:o1:0:
761PyNumber_Rshift:PyObject*:o2:0:
762
763PyNumber_Subtract:PyObject*::+1:
764PyNumber_Subtract:PyObject*:o1:0:
765PyNumber_Subtract:PyObject*:o2:0:
766
Fred Drake03590c62001-08-08 18:50:18 +0000767PyNumber_TrueDivide:PyObject*::+1:
768PyNumber_TrueDivide:PyObject*:v:0:
769PyNumber_TrueDivide:PyObject*:w:0:
770
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000771PyNumber_Xor:PyObject*::+1:
772PyNumber_Xor:PyObject*:o1:0:
773PyNumber_Xor:PyObject*:o2:0:
774
775PyOS_GetLastModificationTime:long:::
776PyOS_GetLastModificationTime:char*:filename::
777
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000778PyObject_AsFileDescriptor:int:::
779PyObject_AsFileDescriptor:PyObject*:o:0:
780
Fredrik Lundh118be0c2005-12-18 19:39:59 +0000781PyObject_Call:PyObject*::+1:
782PyObject_Call:PyObject*:callable_object:0:
783PyObject_Call:PyObject*:args:0:
784PyObject_Call:PyObject*:kw:0:
785
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000786PyObject_CallFunction:PyObject*::+1:
787PyObject_CallFunction:PyObject*:callable_object:0:
788PyObject_CallFunction:char*:format::
789PyObject_CallFunction::...::
790
Fred Drakeb0c079e2001-10-28 02:39:03 +0000791PyObject_CallFunctionObjArgs:PyObject*::+1:
792PyObject_CallFunctionObjArgs:PyObject*:callable:0:
793PyObject_CallFunctionObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000794
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000795PyObject_CallMethod:PyObject*::+1:
796PyObject_CallMethod:PyObject*:o:0:
797PyObject_CallMethod:char*:m::
798PyObject_CallMethod:char*:format::
799PyObject_CallMethod::...::
800
Fred Drakeb0c079e2001-10-28 02:39:03 +0000801PyObject_CallMethodObjArgs:PyObject*::+1:
802PyObject_CallMethodObjArgs:PyObject*:o:0:
803PyObject_CallMethodObjArgs:char*:name::
804PyObject_CallMethodObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000805
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000806PyObject_CallObject:PyObject*::+1:
807PyObject_CallObject:PyObject*:callable_object:0:
808PyObject_CallObject:PyObject*:args:0:
809
810PyObject_Cmp:int:::
811PyObject_Cmp:PyObject*:o1:0:
812PyObject_Cmp:PyObject*:o2:0:
813PyObject_Cmp:int*:result::
814
815PyObject_Compare:int:::
816PyObject_Compare:PyObject*:o1:0:
817PyObject_Compare:PyObject*:o2:0:
818
819PyObject_DelAttr:int:::
820PyObject_DelAttr:PyObject*:o:0:
821PyObject_DelAttr:PyObject*:attr_name:0:
822
823PyObject_DelAttrString:int:::
824PyObject_DelAttrString:PyObject*:o:0:
825PyObject_DelAttrString:char*:attr_name::
826
827PyObject_DelItem:int:::
828PyObject_DelItem:PyObject*:o:0:
829PyObject_DelItem:PyObject*:key:0:
830
Fred Drake9c75ff72001-09-06 18:06:46 +0000831PyObject_Dir:PyObject*::+1:
832PyObject_Dir:PyObject*:o:0:
833
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000834PyObject_GetAttr:PyObject*::+1:
835PyObject_GetAttr:PyObject*:o:0:
836PyObject_GetAttr:PyObject*:attr_name:0:
837
838PyObject_GetAttrString:PyObject*::+1:
839PyObject_GetAttrString:PyObject*:o:0:
840PyObject_GetAttrString:char*:attr_name::
841
842PyObject_GetItem:PyObject*::+1:
843PyObject_GetItem:PyObject*:o:0:
844PyObject_GetItem:PyObject*:key:0:
845
Fred Drakeb915a382002-10-04 18:58:58 +0000846PyObject_GetIter:PyObject*::+1:
847PyObject_GetIter:PyObject*:o:0:
848
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000849PyObject_HasAttr:int:::
850PyObject_HasAttr:PyObject*:o:0:
851PyObject_HasAttr:PyObject*:attr_name:0:
852
853PyObject_HasAttrString:int:::
854PyObject_HasAttrString:PyObject*:o:0:
855PyObject_HasAttrString:char*:attr_name:0:
856
857PyObject_Hash:int:::
858PyObject_Hash:PyObject*:o:0:
859
860PyObject_IsTrue:int:::
861PyObject_IsTrue:PyObject*:o:0:
862
Fred Drakef913e542000-09-12 20:17:17 +0000863PyObject_Init:PyObject*::0:
864PyObject_Init:PyObject*:op:0:
865
866PyObject_InitVar:PyVarObject*::0:
867PyObject_InitVar:PyVarObject*:op:0:
868
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000869PyObject_Length:int:::
870PyObject_Length:PyObject*:o:0:
871
Fred Drake8e0c09d2001-07-06 23:31:49 +0000872PyObject_NEW:PyObject*::+1:
873
874PyObject_New:PyObject*::+1:
875
876PyObject_NEW_VAR:PyObject*::+1:
877
878PyObject_NewVar:PyObject*::+1:
879
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000880PyObject_Print:int:::
881PyObject_Print:PyObject*:o:0:
882PyObject_Print:FILE*:fp::
883PyObject_Print:int:flags::
884
885PyObject_Repr:PyObject*::+1:
886PyObject_Repr:PyObject*:o:0:
887
Fred Drakea0c5e9f2002-06-14 14:35:56 +0000888PyObject_RichCompare:PyObject*::+1:
889PyObject_RichCompare:PyObject*:o1:0:
890PyObject_RichCompare:PyObject*:o2:0:
891PyObject_RichCompare:int:opid::
892
893PyObject_RichCompareBool:int:::
894PyObject_RichCompareBool:PyObject*:o1:0:
895PyObject_RichCompareBool:PyObject*:o2:0:
896PyObject_RichCompareBool:int:opid::
897
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000898PyObject_SetAttr:int:::
899PyObject_SetAttr:PyObject*:o:0:
900PyObject_SetAttr:PyObject*:attr_name:0:
901PyObject_SetAttr:PyObject*:v:+1:
902
903PyObject_SetAttrString:int:::
904PyObject_SetAttrString:PyObject*:o:0:
905PyObject_SetAttrString:char*:attr_name::
906PyObject_SetAttrString:PyObject*:v:+1:
907
908PyObject_SetItem:int:::
909PyObject_SetItem:PyObject*:o:0:
910PyObject_SetItem:PyObject*:key:0:
911PyObject_SetItem:PyObject*:v:+1:
912
913PyObject_Str:PyObject*::+1:
914PyObject_Str:PyObject*:o:0:
915
916PyObject_Type:PyObject*::+1:
917PyObject_Type:PyObject*:o:0:
918
Fred Drakeb2625eb2001-05-29 15:34:06 +0000919PyObject_Unicode:PyObject*::+1:
920PyObject_Unicode:PyObject*:o:0:
921
Fred Drake805bf1b1999-10-20 16:03:38 +0000922PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000923PyParser_SimpleParseFile:FILE*:fp::
924PyParser_SimpleParseFile:char*:filename::
925PyParser_SimpleParseFile:int:start::
926
Fred Drake805bf1b1999-10-20 16:03:38 +0000927PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000928PyParser_SimpleParseString:char*:str::
929PyParser_SimpleParseString:int:start::
930
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000931PyRun_AnyFile:int:::
932PyRun_AnyFile:FILE*:fp::
933PyRun_AnyFile:char*:filename::
934
Fred Drake4ca744c2000-08-12 03:39:47 +0000935PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000936PyRun_File:FILE*:fp::
937PyRun_File:char*:filename::
938PyRun_File:int:start::
939PyRun_File:PyObject*:globals:0:
940PyRun_File:PyObject*:locals:0:
941
942PyRun_InteractiveLoop:int:::
943PyRun_InteractiveLoop:FILE*:fp::
944PyRun_InteractiveLoop:char*:filename::
945
946PyRun_InteractiveOne:int:::
947PyRun_InteractiveOne:FILE*:fp::
948PyRun_InteractiveOne:char*:filename::
949
950PyRun_SimpleFile:int:::
951PyRun_SimpleFile:FILE*:fp::
952PyRun_SimpleFile:char*:filename::
953
954PyRun_SimpleString:int:::
955PyRun_SimpleString:char*:command::
956
Fred Drake4ca744c2000-08-12 03:39:47 +0000957PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000958PyRun_String:char*:str::
959PyRun_String:int:start::
960PyRun_String:PyObject*:globals:0:
961PyRun_String:PyObject*:locals:0:
962
Fred Draked61d0d32001-09-23 02:05:26 +0000963PySeqIter_New:PyObject*::+1:
964PySeqIter_New:PyObject*:seq::
965
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000966PySequence_Check:int:::
967PySequence_Check:PyObject*:o:0:
968
969PySequence_Concat:PyObject*::+1:
970PySequence_Concat:PyObject*:o1:0:
971PySequence_Concat:PyObject*:o2:0:
972
973PySequence_Count:int:::
974PySequence_Count:PyObject*:o:0:
975PySequence_Count:PyObject*:value:0:
976
977PySequence_DelItem:int:::
978PySequence_DelItem:PyObject*:o:0:
979PySequence_DelItem:int:i::
980
981PySequence_DelSlice:int:::
982PySequence_DelSlice:PyObject*:o:0:
983PySequence_DelSlice:int:i1::
984PySequence_DelSlice:int:i2::
985
Fred Drake81cccb72000-09-12 15:22:05 +0000986PySequence_Fast:PyObject*::+1:
987PySequence_Fast:PyObject*:v:0:
988PySequence_Fast:const char*:m::
989
990PySequence_Fast_GET_ITEM:PyObject*::0:
991PySequence_Fast_GET_ITEM:PyObject*:o:0:
992PySequence_Fast_GET_ITEM:int:i::
993
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000994PySequence_GetItem:PyObject*::+1:
995PySequence_GetItem:PyObject*:o:0:
996PySequence_GetItem:int:i::
997
998PySequence_GetSlice:PyObject*::+1:
999PySequence_GetSlice:PyObject*:o:0:
1000PySequence_GetSlice:int:i1::
1001PySequence_GetSlice:int:i2::
1002
1003PySequence_In:int:::
1004PySequence_In:PyObject*:o:0:
1005PySequence_In:PyObject*:value:0:
1006
1007PySequence_Index:int:::
1008PySequence_Index:PyObject*:o:0:
1009PySequence_Index:PyObject*:value:0:
1010
Fred Drake1fa93652000-09-22 18:19:37 +00001011PySequence_InPlaceConcat:PyObject*::+1:
1012PySequence_InPlaceConcat:PyObject*:s:0:
1013PySequence_InPlaceConcat:PyObject*:o:0:
1014
1015PySequence_InPlaceRepeat:PyObject*::+1:
1016PySequence_InPlaceRepeat:PyObject*:s:0:
1017PySequence_InPlaceRepeat:PyObject*:o:0:
1018
Fred Drakeffb294b2002-05-23 16:03:16 +00001019PySequence_ITEM:PyObject*::+1:
1020PySequence_ITEM:PyObject*:o:0:
1021PySequence_ITEM:int:i::
1022
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001023PySequence_Repeat:PyObject*::+1:
1024PySequence_Repeat:PyObject*:o:0:
1025PySequence_Repeat:int:count::
1026
1027PySequence_SetItem:int:::
1028PySequence_SetItem:PyObject*:o:0:
1029PySequence_SetItem:int:i::
1030PySequence_SetItem:PyObject*:v:+1:
1031
1032PySequence_SetSlice:int:::
1033PySequence_SetSlice:PyObject*:o:0:
1034PySequence_SetSlice:int:i1::
1035PySequence_SetSlice:int:i2::
1036PySequence_SetSlice:PyObject*:v:+1:
1037
Fred Drake1c2d06a2000-06-16 20:00:04 +00001038PySequence_List:PyObject*::+1:
1039PySequence_List:PyObject*:o:0:
1040
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001041PySequence_Tuple:PyObject*::+1:
1042PySequence_Tuple:PyObject*:o:0:
1043
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001044PySet_Append:int:::
1045PySet_Append:PyObject*:set:0:
1046PySet_Append:PyObject*:key:+1:
1047
1048PySet_Contains:int:::
1049PySet_Contains:PyObject*:anyset:0:
1050PySet_Contains:PyObject*:key:0:
1051
1052PySet_Discard:int:::
1053PySet_Discard:PyObject*:set:0:
1054PySet_Discard:PyObject*:key:-1:no effect if key not found
1055
Raymond Hettinger76382492005-08-21 00:08:36 +00001056PySet_Pop:PyObject*::0:or returns NULL and raises KeyError if set is empty
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001057PySet_Pop:PyObject*:set:0:
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001058
1059PySet_Size:int:::
1060PySet_Size:PyObject*:anyset:0:
1061
Fred Drake23a78cf2001-09-24 15:29:47 +00001062PySlice_Check:int:::
1063PySlice_Check:PyObject*:ob:0:
1064
1065PySlice_New:PyObject*::+1:
1066PySlice_New:PyObject*:start:0:
1067PySlice_New:PyObject*:stop:0:
1068PySlice_New:PyObject*:step:0:
1069
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001070PyString_AS_STRING:char*:::
1071PyString_AS_STRING:PyObject*:string:0:
1072
Fred Drakeb2625eb2001-05-29 15:34:06 +00001073PyString_AsDecodedObject:PyObject*::+1:
1074PyString_AsDecodedObject:PyObject*:str:0:
1075PyString_AsDecodedObject:const char*:encoding::
1076PyString_AsDecodedObject:const char*:errors::
1077
1078PyString_AsEncodedObject:PyObject*::+1:
1079PyString_AsEncodedObject:PyObject*:str:0:
1080PyString_AsEncodedObject:const char*:encoding::
1081PyString_AsEncodedObject:const char*:errors::
1082
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001083PyString_AsString:char*:::
1084PyString_AsString:PyObject*:string:0:
1085
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +00001086PyString_AsStringAndSize:int:::
1087PyString_AsStringAndSize:PyObject*:obj:0:
1088PyString_AsStringAndSize:char**:buffer::
1089PyString_AsStringAndSize:int*:length::
1090
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001091PyString_Check:int:::
1092PyString_Check:PyObject*:o:0:
1093
1094PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001095PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001096PyString_Concat:PyObject*:newpart:0:
1097
1098PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001099PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001100PyString_ConcatAndDel:PyObject*:newpart:-1:
1101
1102PyString_Format:PyObject*::+1:
1103PyString_Format:PyObject*:format:0:
1104PyString_Format:PyObject*:args:0:
1105
1106PyString_FromString:PyObject*::+1:
1107PyString_FromString:const char*:v::
1108
1109PyString_FromStringAndSize:PyObject*::+1:
1110PyString_FromStringAndSize:const char*:v::
1111PyString_FromStringAndSize:int:len::
1112
Barry Warsaw8c64a542001-08-28 02:32:04 +00001113PyString_FromFormat:PyObject*::+1:
1114PyString_FromFormat:const char*:format::
1115PyString_FromFormat::...::
1116
1117PyString_FromFormatV:PyObject*::+1:
1118PyString_FromFormatV:const char*:format::
1119PyString_FromFormatV:va_list:vargs::
1120
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001121PyString_GET_SIZE:int:::
1122PyString_GET_SIZE:PyObject*:string:0:
1123
1124PyString_InternFromString:PyObject*::+1:
1125PyString_InternFromString:const char*:v::
1126
1127PyString_InternInPlace:void:::
1128PyString_InternInPlace:PyObject**:string:+1:???
1129
1130PyString_Size:int:::
1131PyString_Size:PyObject*:string:0:
1132
Marc-André Lemburg47073202000-07-07 15:48:54 +00001133PyString_Decode:PyObject*::+1:
1134PyString_Decode:const char*:s::
1135PyString_Decode:int:size::
1136PyString_Decode:const char*:encoding::
1137PyString_Decode:const char*:errors::
1138
1139PyString_Encode:PyObject*::+1:
1140PyString_Encode:const char*:s::
1141PyString_Encode:int:size::
1142PyString_Encode:const char*:encoding::
1143PyString_Encode:const char*:errors::
1144
1145PyString_AsEncodedString:PyObject*::+1:
1146PyString_AsEncodedString:PyObject*:str::
1147PyString_AsEncodedString:const char*:encoding::
1148PyString_AsEncodedString:const char*:errors::
1149
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001150PySys_SetArgv:int:::
1151PySys_SetArgv:int:argc::
1152PySys_SetArgv:char**:argv::
1153
1154PyThreadState_Clear:void:::
1155PyThreadState_Clear:PyThreadState*:tstate::
1156
1157PyThreadState_Delete:void:::
1158PyThreadState_Delete:PyThreadState*:tstate::
1159
1160PyThreadState_Get:PyThreadState*:::
1161
Fred Drakeb2625eb2001-05-29 15:34:06 +00001162PyThreadState_GetDict:PyObject*::0:
1163
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001164PyThreadState_New:PyThreadState*:::
1165PyThreadState_New:PyInterpreterState*:interp::
1166
1167PyThreadState_Swap:PyThreadState*:::
1168PyThreadState_Swap:PyThreadState*:tstate::
1169
1170PyTuple_Check:int:::
1171PyTuple_Check:PyObject*:p:0:
1172
1173PyTuple_GET_ITEM:PyObject*::0:
1174PyTuple_GET_ITEM:PyTupleObject*:p:0:
1175PyTuple_GET_ITEM:int:pos::
1176
1177PyTuple_GetItem:PyObject*::0:
1178PyTuple_GetItem:PyTupleObject*:p:0:
1179PyTuple_GetItem:int:pos::
1180
1181PyTuple_GetSlice:PyObject*::+1:
1182PyTuple_GetSlice:PyTupleObject*:p:0:
1183PyTuple_GetSlice:int:low::
1184PyTuple_GetSlice:int:high::
1185
1186PyTuple_New:PyObject*::+1:
1187PyTuple_New:int:len::
1188
1189PyTuple_SET_ITEM:void:::
1190PyTuple_SET_ITEM:PyTupleObject*:p:0:
1191PyTuple_SET_ITEM:int:pos::
1192PyTuple_SET_ITEM:PyObject*:o:0:
1193
1194PyTuple_SetItem:int:::
1195PyTuple_SetItem:PyTupleObject*:p:0:
1196PyTuple_SetItem:int:pos::
1197PyTuple_SetItem:PyObject*:o:0:
1198
1199PyTuple_Size:int:::
1200PyTuple_Size:PyTupleObject*:p:0:
1201
Fred Drake1b58bff2001-10-29 17:43:14 +00001202PyType_GenericAlloc:PyObject*::+1:
1203PyType_GenericAlloc:PyObject*:type:0:
1204PyType_GenericAlloc:int:nitems:0:
1205
1206PyType_GenericNew:PyObject*::+1:
1207PyType_GenericNew:PyObject*:type:0:
1208PyType_GenericNew:PyObject*:args:0:
1209PyType_GenericNew:PyObject*:kwds:0:
1210
Fred Drake992fe5a2000-06-16 21:04:15 +00001211PyUnicode_Check:int:::
1212PyUnicode_Check:PyObject*:o:0:
1213
1214PyUnicode_GET_SIZE:int:::
1215PyUnicode_GET_SIZE:PyObject*:o:0:
1216
1217PyUnicode_GET_DATA_SIZE:int:::
1218PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1219
1220PyUnicode_AS_UNICODE:Py_UNICODE*:::
1221PyUnicode_AS_UNICODE:PyObject*:o:0:
1222
1223PyUnicode_AS_DATA:const char*:::
1224PyUnicode_AS_DATA:PyObject*:o:0:
1225
1226Py_UNICODE_ISSPACE:int:::
1227Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1228
1229Py_UNICODE_ISLOWER:int:::
1230Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1231
1232Py_UNICODE_ISUPPER:int:::
1233Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1234
1235Py_UNICODE_ISTITLE:int:::
1236Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1237
1238Py_UNICODE_ISLINEBREAK:int:::
1239Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1240
1241Py_UNICODE_ISDECIMAL:int:::
1242Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1243
1244Py_UNICODE_ISDIGIT:int:::
1245Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1246
1247Py_UNICODE_ISNUMERIC:int:::
1248Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1249
1250Py_UNICODE_TOLOWER:Py_UNICODE:::
1251Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1252
1253Py_UNICODE_TOUPPER:Py_UNICODE:::
1254Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1255
1256Py_UNICODE_TOTITLE:Py_UNICODE:::
1257Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1258
1259Py_UNICODE_TODECIMAL:int:::
1260Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1261
1262Py_UNICODE_TODIGIT:int:::
1263Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1264
1265Py_UNICODE_TONUMERIC:double:::
1266Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1267
1268PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001269PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001270PyUnicode_FromUnicode:int:size::
1271
1272PyUnicode_AsUnicode:Py_UNICODE*:::
1273PyUnicode_AsUnicode:PyObject :*unicode:0:
1274
1275PyUnicode_GetSize:int:::
1276PyUnicode_GetSize:PyObject :*unicode:0:
1277
1278PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001279PyUnicode_FromObject:PyObject*:*obj:0:
1280
1281PyUnicode_FromEncodedObject:PyObject*::+1:
1282PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1283PyUnicode_FromEncodedObject:const char*:encoding::
1284PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001285
1286PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001287PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001288PyUnicode_FromWideChar:int:size::
1289
1290PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001291PyUnicode_AsWideChar:PyObject*:*unicode:0:
1292PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001293PyUnicode_AsWideChar:int:size::
1294
1295PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001296PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001297PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001298PyUnicode_Decode:const char*:encoding::
1299PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001300
1301PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001302PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001303PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001304PyUnicode_Encode:const char*:encoding::
1305PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001306
1307PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001308PyUnicode_AsEncodedString:PyObject*:unicode::
1309PyUnicode_AsEncodedString:const char*:encoding::
1310PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001311
1312PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001313PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001314PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001315PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001316
1317PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001318PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001319PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001320PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001321
1322PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001323PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001324
1325PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001326PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001327PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001328PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001329PyUnicode_DecodeUTF16:int*:byteorder::
1330
1331PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001332PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001333PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001334PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001335PyUnicode_EncodeUTF16:int:byteorder::
1336
1337PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001338PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001339
1340PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001341PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001342PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001343PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001344
1345PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001346PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001347PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001348PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001349
1350PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001351PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001352
1353PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001354PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001355PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001356PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001357
1358PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001359PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001360PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001361PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001362
1363PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001364PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001365
1366PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001367PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001368PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001369PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001370
1371PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001372PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001373PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001374PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001375
1376PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001377PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001378
1379PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001380PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001381PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001382PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001383
1384PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001385PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001386PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001387PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001388
1389PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001390PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001391
1392PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001393PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001394PyUnicode_DecodeCharmap:int:size::
1395PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001396PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001397
1398PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001399PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001400PyUnicode_EncodeCharmap:int:size::
1401PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001402PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001403
1404PyUnicode_AsCharmapString:PyObject*::+1:
1405PyUnicode_AsCharmapString:PyObject*:unicode:0:
1406PyUnicode_AsCharmapString:PyObject*:mapping:0:
1407
1408PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001409PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001410PyUnicode_TranslateCharmap:int:size::
1411PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001412PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001413
1414PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001415PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001416PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001417PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001418
1419PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001420PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001421PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001422PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001423
1424PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001425PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001426
1427PyUnicode_Concat:PyObject*::+1:
1428PyUnicode_Concat:PyObject*:left:0:
1429PyUnicode_Concat:PyObject*:right:0:
1430
1431PyUnicode_Split:PyObject*::+1:
1432PyUnicode_Split:PyObject*:left:0:
1433PyUnicode_Split:PyObject*:right:0:
1434PyUnicode_Split:int:maxsplit::
1435
1436PyUnicode_Splitlines:PyObject*::+1:
1437PyUnicode_Splitlines:PyObject*:s:0:
1438PyUnicode_Splitlines:int:maxsplit::
1439
1440PyUnicode_Translate:PyObject*::+1:
1441PyUnicode_Translate:PyObject*:str:0:
1442PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001443PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001444
1445PyUnicode_Join:PyObject*::+1:
1446PyUnicode_Join:PyObject*:separator:0:
1447PyUnicode_Join:PyObject*:seq:0:
1448
1449PyUnicode_Tailmatch:PyObject*::+1:
1450PyUnicode_Tailmatch:PyObject*:str:0:
1451PyUnicode_Tailmatch:PyObject*:substr:0:
1452PyUnicode_Tailmatch:int:start::
1453PyUnicode_Tailmatch:int:end::
1454PyUnicode_Tailmatch:int:direction::
1455
Fred Drake1d1e1db2002-06-20 22:07:04 +00001456PyUnicode_Find:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001457PyUnicode_Find:PyObject*:str:0:
1458PyUnicode_Find:PyObject*:substr:0:
1459PyUnicode_Find:int:start::
1460PyUnicode_Find:int:end::
1461PyUnicode_Find:int:direction::
1462
Fred Drake1d1e1db2002-06-20 22:07:04 +00001463PyUnicode_Count:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001464PyUnicode_Count:PyObject*:str:0:
1465PyUnicode_Count:PyObject*:substr:0:
1466PyUnicode_Count:int:start::
1467PyUnicode_Count:int:end::
1468
1469PyUnicode_Replace:PyObject*::+1:
1470PyUnicode_Replace:PyObject*:str:0:
1471PyUnicode_Replace:PyObject*:substr:0:
1472PyUnicode_Replace:PyObject*:replstr:0:
1473PyUnicode_Replace:int:maxcount::
1474
1475PyUnicode_Compare:int:::
1476PyUnicode_Compare:PyObject*:left:0:
1477PyUnicode_Compare:PyObject*:right:0:
1478
1479PyUnicode_Format:PyObject*::+1:
1480PyUnicode_Format:PyObject*:format:0:
1481PyUnicode_Format:PyObject*:args:0:
1482
1483PyUnicode_Contains:int:::
1484PyUnicode_Contains:PyObject*:container:0:
1485PyUnicode_Contains:PyObject*:element:0:
1486
Fred Drake1b58bff2001-10-29 17:43:14 +00001487PyWeakref_GET_OBJECT:PyObject*::0:
1488PyWeakref_GET_OBJECT:PyObject*:ref:0:
1489
Fred Drake8371e842002-02-20 05:07:36 +00001490PyWeakref_GetObject:PyObject*::0:
Fred Drake1b58bff2001-10-29 17:43:14 +00001491PyWeakref_GetObject:PyObject*:ref:0:
1492
1493PyWeakref_NewProxy:PyObject*::+1:
1494PyWeakref_NewProxy:PyObject*:ob:0:
1495PyWeakref_NewProxy:PyObject*:callback:0:
1496
1497PyWeakref_NewRef:PyObject*::+1:
1498PyWeakref_NewRef:PyObject*:ob:0:
1499PyWeakref_NewRef:PyObject*:callback:0:
1500
1501PyWrapper_New:PyObject*::+1:
1502PyWrapper_New:PyObject*:d:0:
1503PyWrapper_New:PyObject*:self:0:
1504
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001505Py_AtExit:int:::
1506Py_AtExit:void (*)():func::
1507
Fred Drake6d988552001-07-20 20:55:31 +00001508Py_BuildValue:PyObject*::+1:
1509Py_BuildValue:char*:format::
1510
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001511Py_CompileString:PyObject*::+1:
1512Py_CompileString:char*:str::
1513Py_CompileString:char*:filename::
1514Py_CompileString:int:start::
1515
1516Py_DECREF:void:::
1517Py_DECREF:PyObject*:o:-1:
1518
1519Py_EndInterpreter:void:::
1520Py_EndInterpreter:PyThreadState*:tstate::
1521
1522Py_Exit:void:::
1523Py_Exit:int:status::
1524
1525Py_FatalError:void:::
1526Py_FatalError:char*:message::
1527
1528Py_FdIsInteractive:int:::
1529Py_FdIsInteractive:FILE*:fp::
1530Py_FdIsInteractive:char*:filename::
1531
1532Py_Finalize:void:::
1533
Fred Drake8520cc22000-04-10 19:38:24 +00001534Py_FindMethod:PyObject*::+1:
1535Py_FindMethod:PyMethodDef[]:methods::
1536Py_FindMethod:PyObject*:self:+1:
1537Py_FindMethod:char*:name::
1538
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001539Py_GetBuildInfoconst:char*:::
1540
1541Py_GetCompilerconst:char*:::
1542
1543Py_GetCopyrightconst:char*:::
1544
1545Py_GetExecPrefix:char*:::
1546
1547Py_GetPath:char*:::
1548
1549Py_GetPlatformconst:char*:::
1550
1551Py_GetPrefix:char*:::
1552
1553Py_GetProgramFullPath:char*:::
1554
1555Py_GetProgramName:char*:::
1556
1557Py_GetVersionconst:char*:::
1558
1559Py_INCREF:void:::
1560Py_INCREF:PyObject*:o:+1:
1561
1562Py_Initialize:void:::
1563
1564Py_IsInitialized:int:::
1565
1566Py_NewInterpreter:PyThreadState*:::
1567
1568Py_SetProgramName:void:::
1569Py_SetProgramName:char*:name::
1570
1571Py_XDECREF:void:::
1572Py_XDECREF:PyObject*:o:-1:if o is not NULL
1573
1574Py_XINCREF:void:::
1575Py_XINCREF:PyObject*:o:+1:if o is not NULL
1576
1577_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1578_PyImport_FindExtension:char*:::
1579_PyImport_FindExtension:char*:::
1580
1581_PyImport_Fini:void:::
1582
1583_PyImport_FixupExtension:PyObject*:::???
1584_PyImport_FixupExtension:char*:::
1585_PyImport_FixupExtension:char*:::
1586
1587_PyImport_Init:void:::
1588
Fred Drakef913e542000-09-12 20:17:17 +00001589_PyObject_Del:void:::
1590_PyObject_Del:PyObject*:op:0:
1591
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001592_PyObject_New:PyObject*::+1:
1593_PyObject_New:PyTypeObject*:type:0:
1594
Fred Drake8e0c09d2001-07-06 23:31:49 +00001595_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001596_PyObject_NewVar:PyTypeObject*:type:0:
1597_PyObject_NewVar:int:size::
1598
1599_PyString_Resize:int:::
1600_PyString_Resize:PyObject**:string:+1:
1601_PyString_Resize:int:newsize::
1602
1603_PyTuple_Resize:int:::
1604_PyTuple_Resize:PyTupleObject**:p:+1:
1605_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001606
1607_Py_c_diff:Py_complex:::
1608_Py_c_diff:Py_complex:left::
1609_Py_c_diff:Py_complex:right::
1610
1611_Py_c_neg:Py_complex:::
1612_Py_c_neg:Py_complex:complex::
1613
1614_Py_c_pow:Py_complex:::
1615_Py_c_pow:Py_complex:num::
1616_Py_c_pow:Py_complex:exp::
1617
1618_Py_c_prod:Py_complex:::
1619_Py_c_prod:Py_complex:left::
1620_Py_c_prod:Py_complex:right::
1621
1622_Py_c_quot:Py_complex:::
1623_Py_c_quot:Py_complex:dividend::
1624_Py_c_quot:Py_complex:divisor::
1625
1626_Py_c_sum:Py_complex:::
1627_Py_c_sum:Py_complex:left::
1628_Py_c_sum:Py_complex:right::