blob: 463eaf470804173545b49e9409ee8e3cf73fb415 [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 Drake7b7dc6b1999-10-20 15:06:24 +0000236PyErr_SetInterrupt:void:::
237
238PyErr_SetNone:void:::
239PyErr_SetNone:PyObject*:type:+1:
240
241PyErr_SetObject:void:::
242PyErr_SetObject:PyObject*:type:+1:
243PyErr_SetObject:PyObject*:value:+1:
244
245PyErr_SetString:void:::
246PyErr_SetString:PyObject*:type:+1:
247PyErr_SetString:char*:message::
248
Jeremy Hylton98605b52000-04-10 18:40:57 +0000249PyErr_Format:PyObject*::null:
250PyErr_Format:PyObject*:exception:+1:
251PyErr_Format:char*:format::
252PyErr_Format::...::
253
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000254PyErr_Warn:int:::
Guido van Rossume22e4b22000-12-19 03:58:11 +0000255PyErr_Warn:PyObject*:category:0:
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000256PyErr_Warn:char*:message::
257
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000258PyEval_AcquireLock:void:::
259
260PyEval_AcquireThread:void:::
261PyEval_AcquireThread:PyThreadState*:tstate::
262
263PyEval_InitThreads:void:::
264
265PyEval_ReleaseLock:void:::
266
267PyEval_ReleaseThread:void:::
268PyEval_ReleaseThread:PyThreadState*:tstate::
269
270PyEval_RestoreThread:void:::
271PyEval_RestoreThread:PyThreadState*:tstate::
272
273PyEval_SaveThread:PyThreadState*:::
274
Fred Drake4ca744c2000-08-12 03:39:47 +0000275PyEval_EvalCode:PyObject*::+1:
276PyEval_EvalCode:PyCodeObject*:co:0:
277PyEval_EvalCode:PyObject*:globals:0:
278PyEval_EvalCode:PyObject*:locals:0:
279
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000280PyFile_AsFile:FILE*:::
281PyFile_AsFile:PyFileObject*:p:0:
282
283PyFile_Check:int:::
284PyFile_Check:PyObject*:p:0:
285
286PyFile_FromFile:PyObject*::+1:
287PyFile_FromFile:FILE*:fp::
288PyFile_FromFile:char*:name::
289PyFile_FromFile:char*:mode::
290PyFile_FromFile:int(*:close)::
291
292PyFile_FromString:PyObject*::+1:
293PyFile_FromString:char*:name::
294PyFile_FromString:char*:mode::
295
296PyFile_GetLine:PyObject*::+1:
297PyFile_GetLine:PyObject*:p::
298PyFile_GetLine:int:n::
299
300PyFile_Name:PyObject*::0:
301PyFile_Name:PyObject*:p:0:
302
303PyFile_SetBufSize:void:::
304PyFile_SetBufSize:PyFileObject*:p:0:
305PyFile_SetBufSize:int:n::
306
307PyFile_SoftSpace:int:::
308PyFile_SoftSpace:PyFileObject*:p:0:
309PyFile_SoftSpace:int:newflag::
310
311PyFile_WriteObject:int:::
312PyFile_WriteObject:PyObject*:obj:0:
313PyFile_WriteObject:PyFileObject*:p:0:
314PyFile_WriteObject:int:flags::
315
316PyFile_WriteString:int:::
Fred Drake454af892001-11-29 22:42:59 +0000317PyFile_WriteString:const char*:s::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000318PyFile_WriteString:PyFileObject*:p:0:
319PyFile_WriteString:int:flags::
320
321PyFloat_AS_DOUBLE:double:::
322PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
323
324PyFloat_AsDouble:double:::
325PyFloat_AsDouble:PyObject*:pyfloat:0:
326
327PyFloat_Check:int:::
328PyFloat_Check:PyObject*:p:0:
329
330PyFloat_FromDouble:PyObject*::+1:
331PyFloat_FromDouble:double:v::
332
Fred Drakeee814bf2000-11-28 22:34:32 +0000333Py_InitModule:PyObject*::0:
334Py_InitModule:name:char*::
335Py_InitModule:methods:PyMethodDef[]::
336
337Py_InitModule3:PyObject*::0:
338Py_InitModule3:name:char*::
339Py_InitModule3:methods:PyMethodDef[]::
340Py_InitModule3:doc:char*::
341
342Py_InitModule4:PyObject*::0:
343Py_InitModule4:name:char*::
344Py_InitModule4:methods:PyMethodDef[]::
345Py_InitModule4:doc:char*::
346Py_InitModule4:self:PyObject*::
347Py_InitModule4:apiver:int::usually provided by Py_InitModule or Py_InitModule3
348
Fred Drake805bf1b1999-10-20 16:03:38 +0000349PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000350PyImport_AddModule:char*:name::
351
352PyImport_Cleanup:void:::
353
354PyImport_ExecCodeModule:PyObject*::+1:
355PyImport_ExecCodeModule:char*:name::
356PyImport_ExecCodeModule:PyObject*:co:0:
357
358PyImport_GetMagicNumber:long:::
359
360PyImport_GetModuleDict:PyObject*::0:
361
362PyImport_Import:PyObject*::+1:
363PyImport_Import:PyObject*:name:0:
364
365PyImport_ImportFrozenModule:int:::
366PyImport_ImportFrozenModule:char*:::
367
Fred Drakeeb725cd2000-04-03 15:06:40 +0000368PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000369PyImport_ImportModule:char*:name::
370
Fred Drakeeb725cd2000-04-03 15:06:40 +0000371PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000372PyImport_ImportModuleEx:char*:name::
373PyImport_ImportModuleEx:PyObject*:globals:0:???
374PyImport_ImportModuleEx:PyObject*:locals:0:???
375PyImport_ImportModuleEx:PyObject*:fromlist:0:???
376
Fred Drakeeb725cd2000-04-03 15:06:40 +0000377PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000378PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000379
Fred Drake5838d0f2001-01-28 06:39:35 +0000380PyInstance_New:PyObject*::+1:
381PyInstance_New:PyObject*:klass:+1:
382PyInstance_New:PyObject*:arg:0:
383PyInstance_New:PyObject*:kw:0:
384
385PyInstance_NewRaw:PyObject*::+1:
386PyInstance_NewRaw:PyObject*:klass:+1:
387PyInstance_NewRaw:PyObject*:dict:+1:
388
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000389PyInt_AS_LONG:long:::
390PyInt_AS_LONG:PyIntObject*:io:0:
391
392PyInt_AsLong:long:::
393PyInt_AsLong:PyObject*:io:0:
394
395PyInt_Check:int:::
Fred Drake9c75ff72001-09-06 18:06:46 +0000396PyInt_Check:PyObject*:op:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000397
398PyInt_FromLong:PyObject*::+1:
399PyInt_FromLong:long:ival::
400
401PyInt_GetMax:long:::
402
403PyInterpreterState_Clear:void:::
404PyInterpreterState_Clear:PyInterpreterState*:interp::
405
406PyInterpreterState_Delete:void:::
407PyInterpreterState_Delete:PyInterpreterState*:interp::
408
409PyInterpreterState_New:PyInterpreterState*:::
410
Fred Drakeb2625eb2001-05-29 15:34:06 +0000411PyIter_Check:int:o:0:
412
413PyIter_Next:PyObject*::+1:
414PyIter_Next:PyObject*:o:0:
415
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000416PyList_Append:int:::
417PyList_Append:PyObject*:list:0:
418PyList_Append:PyObject*:item:+1:
419
420PyList_AsTuple:PyObject*::+1:
421PyList_AsTuple:PyObject*:list:0:
422
423PyList_Check:int:::
424PyList_Check:PyObject*:p:0:
425
426PyList_GET_ITEM:PyObject*::0:
427PyList_GET_ITEM:PyObject*:list:0:
428PyList_GET_ITEM:int:i:0:
429
430PyList_GET_SIZE:int:::
431PyList_GET_SIZE:PyObject*:list:0:
432
433PyList_GetItem:PyObject*::0:
434PyList_GetItem:PyObject*:list:0:
435PyList_GetItem:int:index::
436
437PyList_GetSlice:PyObject*::+1:
438PyList_GetSlice:PyObject*:list:0:
439PyList_GetSlice:int:low::
440PyList_GetSlice:int:high::
441
442PyList_Insert:int:::
443PyList_Insert:PyObject*:list:0:
444PyList_Insert:int:index::
445PyList_Insert:PyObject*:item:+1:
446
447PyList_New:PyObject*::+1:
448PyList_New:int:len::
449
450PyList_Reverse:int:::
451PyList_Reverse:PyObject*:list:0:
452
Fred Draked8548312001-07-10 16:19:13 +0000453PyList_SET_ITEM:void:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000454PyList_SET_ITEM:PyObject*:list:0:
455PyList_SET_ITEM:int:i::
456PyList_SET_ITEM:PyObject*:o:0:
457
458PyList_SetItem:int:::
459PyList_SetItem:PyObject*:list:0:
460PyList_SetItem:int:index::
461PyList_SetItem:PyObject*:item:0:
462
463PyList_SetSlice:int:::
464PyList_SetSlice:PyObject*:list:0:
465PyList_SetSlice:int:low::
466PyList_SetSlice:int:high::
467PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
468
469PyList_Size:int:::
470PyList_Size:PyObject*:list:0:
471
472PyList_Sort:int:::
473PyList_Sort:PyObject*:list:0:
474
475PyLong_AsDouble:double:::
476PyLong_AsDouble:PyObject*:pylong:0:
477
478PyLong_AsLong:long:::
479PyLong_AsLong:PyObject*:pylong:0:
480
481PyLong_AsUnsignedLong:unsigned long:::
482PyLong_AsUnsignedLong:PyObject*:pylong:0:
483
484PyLong_Check:int:::
485PyLong_Check:PyObject*:p:0:
486
487PyLong_FromDouble:PyObject*::+1:
488PyLong_FromDouble:double:v::
489
490PyLong_FromLong:PyObject*::+1:
491PyLong_FromLong:long:v::
492
Fred Drakef47d8ef2001-09-20 19:18:52 +0000493PyLong_FromLongLong:PyObject*::+1:
494PyLong_FromLongLong:long long:v::
495
496PyLong_FromUnsignedLongLong:PyObject*::+1:
497PyLong_FromUnsignedLongLong:unsigned long long:v::
498
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000499PyLong_FromString:PyObject*::+1:
500PyLong_FromString:char*:str::
501PyLong_FromString:char**:pend::
502PyLong_FromString:int:base::
503
Fred Drakef47d8ef2001-09-20 19:18:52 +0000504PyLong_FromUnicode:PyObject*::+1:
505PyLong_FromUnicode:Py_UNICODE:u::
506PyLong_FromUnicode:int:length::
507PyLong_FromUnicode:int:base::
508
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000509PyLong_FromUnsignedLong:PyObject*::+1:
510PyLong_FromUnsignedLong:unsignedlong:v::
511
Fred Drakef47d8ef2001-09-20 19:18:52 +0000512PyLong_FromVoidPtr:PyObject*::+1:
513PyLong_FromVoidPtr:void*:p::
514
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000515PyMapping_Check:int:::
516PyMapping_Check:PyObject*:o:0:
517
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000518PyMapping_DelItem:int:::
519PyMapping_DelItem:PyObject*:o:0:
520PyMapping_DelItem:PyObject*:key:0:
521
522PyMapping_DelItemString:int:::
523PyMapping_DelItemString:PyObject*:o:0:
524PyMapping_DelItemString:char*:key::
525
526PyMapping_GetItemString:PyObject*::+1:
527PyMapping_GetItemString:PyObject*:o:0:
528PyMapping_GetItemString:char*:key::
529
530PyMapping_HasKey:int:::
531PyMapping_HasKey:PyObject*:o:0:
532PyMapping_HasKey:PyObject*:key::
533
534PyMapping_HasKeyString:int:::
535PyMapping_HasKeyString:PyObject*:o:0:
536PyMapping_HasKeyString:char*:key::
537
538PyMapping_Items:PyObject*::+1:
539PyMapping_Items:PyObject*:o:0:
540
541PyMapping_Keys:PyObject*::+1:
542PyMapping_Keys:PyObject*:o:0:
543
544PyMapping_Length:int:::
545PyMapping_Length:PyObject*:o:0:
546
547PyMapping_SetItemString:int:::
548PyMapping_SetItemString:PyObject*:o:0:
549PyMapping_SetItemString:char*:key::
550PyMapping_SetItemString:PyObject*:v:+1:
551
552PyMapping_Values:PyObject*::+1:
553PyMapping_Values:PyObject*:o:0:
554
Fred Drake1b58bff2001-10-29 17:43:14 +0000555PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
556PyMarshal_ReadLastObjectFromFile:FILE*:file::
557
558PyMarshal_ReadObjectFromFile:PyObject*::+1:
559PyMarshal_ReadObjectFromFile:FILE*:file::
560
561PyMarshal_ReadObjectFromString:PyObject*::+1:
562PyMarshal_ReadObjectFromString:char*:string::
563PyMarshal_ReadObjectFromString:int:len::
564
565PyMarshal_WriteObjectToString:PyObject*::+1:
566PyMarshal_WriteObjectToString:PyObject*:value:0:
567
Fred Drake9c75ff72001-09-06 18:06:46 +0000568PyMethod_Class:PyObject*::0:
569PyMethod_Class:PyObject*:im:0:
570
571PyMethod_Function:PyObject*::0:
572PyMethod_Function:PyObject*:im:0:
573
574PyMethod_GET_CLASS:PyObject*::0:
575PyMethod_GET_CLASS:PyObject*:im:0:
576
577PyMethod_GET_FUNCTION:PyObject*::0:
578PyMethod_GET_FUNCTION:PyObject*:im:0:
579
580PyMethod_GET_SELF:PyObject*::0:
581PyMethod_GET_SELF:PyObject*:im:0:
582
583PyMethod_New:PyObject*::+1:
584PyMethod_New:PyObject*:func:0:
585PyMethod_New:PyObject*:self:0:
586PyMethod_New:PyObject*:class:0:
587
588PyMethod_Self:PyObject*::0:
589PyMethod_Self:PyObject*:im:0:
590
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000591PyModule_GetDict:PyObject*::0:
592PyModule_GetDict::PyObject* module:0:
593
594PyModule_GetFilename:char*:::
595PyModule_GetFilename:PyObject*:module:0:
596
597PyModule_GetName:char*:::
598PyModule_GetName:PyObject*:module:0:
599
600PyModule_New:PyObject*::+1:
601PyModule_New::char* name::
602
603PyNumber_Absolute:PyObject*::+1:
604PyNumber_Absolute:PyObject*:o:0:
605
606PyNumber_Add:PyObject*::+1:
607PyNumber_Add:PyObject*:o1:0:
608PyNumber_Add:PyObject*:o2:0:
609
610PyNumber_And:PyObject*::+1:
611PyNumber_And:PyObject*:o1:0:
612PyNumber_And:PyObject*:o2:0:
613
614PyNumber_Check:PyObject*:o:0:
615PyNumber_Check:int:::
616
617PyNumber_Coerce:int:::
618PyNumber_Coerce:PyObject**:p1:+1:
619PyNumber_Coerce:PyObject**:p2:+1:
620
621PyNumber_Divide:PyObject*::+1:
622PyNumber_Divide:PyObject*:o1:0:
623PyNumber_Divide:PyObject*:o2:0:
624
625PyNumber_Divmod:PyObject*::+1:
626PyNumber_Divmod:PyObject*:o1:0:
627PyNumber_Divmod:PyObject*:o2:0:
628
629PyNumber_Float:PyObject*::+1:
630PyNumber_Float:PyObject*:o:0:
631
Fred Drake03590c62001-08-08 18:50:18 +0000632PyNumber_FloorDivide:PyObject*::+1:
633PyNumber_FloorDivide:PyObject*:v:0:
634PyNumber_FloorDivide:PyObject*:w:0:
635
Fred Drake1fa93652000-09-22 18:19:37 +0000636PyNumber_InPlaceAdd:PyObject*::+1:
637PyNumber_InPlaceAdd:PyObject*:v:0:
638PyNumber_InPlaceAdd:PyObject*:w:0:
639
640PyNumber_InPlaceAnd:PyObject*::+1:
641PyNumber_InPlaceAnd:PyObject*:v:0:
642PyNumber_InPlaceAnd:PyObject*:w:0:
643
644PyNumber_InPlaceDivide:PyObject*::+1:
645PyNumber_InPlaceDivide:PyObject*:v:0:
646PyNumber_InPlaceDivide:PyObject*:w:0:
647
Fred Drake03590c62001-08-08 18:50:18 +0000648PyNumber_InPlaceFloorDivide:PyObject*::+1:
649PyNumber_InPlaceFloorDivide:PyObject*:v:0:
650PyNumber_InPlaceFloorDivide:PyObject*:w:0:
651
Fred Drake1fa93652000-09-22 18:19:37 +0000652PyNumber_InPlaceLshift:PyObject*::+1:
653PyNumber_InPlaceLshift:PyObject*:v:0:
654PyNumber_InPlaceLshift:PyObject*:w:0:
655
656PyNumber_InPlaceMultiply:PyObject*::+1:
657PyNumber_InPlaceMultiply:PyObject*:v:0:
658PyNumber_InPlaceMultiply:PyObject*:w:0:
659
660PyNumber_InPlaceOr:PyObject*::+1:
661PyNumber_InPlaceOr:PyObject*:v:0:
662PyNumber_InPlaceOr:PyObject*:w:0:
663
664PyNumber_InPlacePower:PyObject*::+1:
665PyNumber_InPlacePower:PyObject*:v:0:
666PyNumber_InPlacePower:PyObject*:w:0:
667PyNumber_InPlacePower:PyObject*:z:0:
668
669PyNumber_InPlaceRemainder:PyObject*::+1:
670PyNumber_InPlaceRemainder:PyObject*:v:0:
671PyNumber_InPlaceRemainder:PyObject*:w:0:
672
673PyNumber_InPlaceRshift:PyObject*::+1:
674PyNumber_InPlaceRshift:PyObject*:v:0:
675PyNumber_InPlaceRshift:PyObject*:w:0:
676
677PyNumber_InPlaceSubtract:PyObject*::+1:
678PyNumber_InPlaceSubtract:PyObject*:v:0:
679PyNumber_InPlaceSubtract:PyObject*:w:0:
680
Fred Drake03590c62001-08-08 18:50:18 +0000681PyNumber_InPlaceTrueDivide:PyObject*::+1:
682PyNumber_InPlaceTrueDivide:PyObject*:v:0:
683PyNumber_InPlaceTrueDivide:PyObject*:w:0:
684
Fred Drake1fa93652000-09-22 18:19:37 +0000685PyNumber_InPlaceXor:PyObject*::+1:
686PyNumber_InPlaceXor:PyObject*:v:0:
687PyNumber_InPlaceXor:PyObject*:w:0:
688
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000689PyNumber_Int:PyObject*::+1:
690PyNumber_Int:PyObject*:o:0:
691
692PyNumber_Invert:PyObject*::+1:
693PyNumber_Invert:PyObject*:o:0:
694
695PyNumber_Long:PyObject*::+1:
696PyNumber_Long:PyObject*:o:0:
697
698PyNumber_Lshift:PyObject*::+1:
699PyNumber_Lshift:PyObject*:o1:0:
700PyNumber_Lshift:PyObject*:o2:0:
701
702PyNumber_Multiply:PyObject*::+1:
703PyNumber_Multiply:PyObject*:o1:0:
704PyNumber_Multiply:PyObject*:o2:0:
705
706PyNumber_Negative:PyObject*::+1:
707PyNumber_Negative:PyObject*:o:0:
708
709PyNumber_Or:PyObject*::+1:
710PyNumber_Or:PyObject*:o1:0:
711PyNumber_Or:PyObject*:o2:0:
712
713PyNumber_Positive:PyObject*::+1:
714PyNumber_Positive:PyObject*:o:0:
715
716PyNumber_Power:PyObject*::+1:
717PyNumber_Power:PyObject*:o1:0:
718PyNumber_Power:PyObject*:o2:0:
719PyNumber_Power:PyObject*:o3:0:
720
721PyNumber_Remainder:PyObject*::+1:
722PyNumber_Remainder:PyObject*:o1:0:
723PyNumber_Remainder:PyObject*:o2:0:
724
725PyNumber_Rshift:PyObject*::+1:
726PyNumber_Rshift:PyObject*:o1:0:
727PyNumber_Rshift:PyObject*:o2:0:
728
729PyNumber_Subtract:PyObject*::+1:
730PyNumber_Subtract:PyObject*:o1:0:
731PyNumber_Subtract:PyObject*:o2:0:
732
Fred Drake03590c62001-08-08 18:50:18 +0000733PyNumber_TrueDivide:PyObject*::+1:
734PyNumber_TrueDivide:PyObject*:v:0:
735PyNumber_TrueDivide:PyObject*:w:0:
736
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000737PyNumber_Xor:PyObject*::+1:
738PyNumber_Xor:PyObject*:o1:0:
739PyNumber_Xor:PyObject*:o2:0:
740
741PyOS_GetLastModificationTime:long:::
742PyOS_GetLastModificationTime:char*:filename::
743
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000744PyObject_AsFileDescriptor:int:::
745PyObject_AsFileDescriptor:PyObject*:o:0:
746
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000747PyObject_CallFunction:PyObject*::+1:
748PyObject_CallFunction:PyObject*:callable_object:0:
749PyObject_CallFunction:char*:format::
750PyObject_CallFunction::...::
751
Fred Drakeb0c079e2001-10-28 02:39:03 +0000752PyObject_CallFunctionObjArgs:PyObject*::+1:
753PyObject_CallFunctionObjArgs:PyObject*:callable:0:
754PyObject_CallFunctionObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000755
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000756PyObject_CallMethod:PyObject*::+1:
757PyObject_CallMethod:PyObject*:o:0:
758PyObject_CallMethod:char*:m::
759PyObject_CallMethod:char*:format::
760PyObject_CallMethod::...::
761
Fred Drakeb0c079e2001-10-28 02:39:03 +0000762PyObject_CallMethodObjArgs:PyObject*::+1:
763PyObject_CallMethodObjArgs:PyObject*:o:0:
764PyObject_CallMethodObjArgs:char*:name::
765PyObject_CallMethodObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000766
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000767PyObject_CallObject:PyObject*::+1:
768PyObject_CallObject:PyObject*:callable_object:0:
769PyObject_CallObject:PyObject*:args:0:
770
771PyObject_Cmp:int:::
772PyObject_Cmp:PyObject*:o1:0:
773PyObject_Cmp:PyObject*:o2:0:
774PyObject_Cmp:int*:result::
775
776PyObject_Compare:int:::
777PyObject_Compare:PyObject*:o1:0:
778PyObject_Compare:PyObject*:o2:0:
779
780PyObject_DelAttr:int:::
781PyObject_DelAttr:PyObject*:o:0:
782PyObject_DelAttr:PyObject*:attr_name:0:
783
784PyObject_DelAttrString:int:::
785PyObject_DelAttrString:PyObject*:o:0:
786PyObject_DelAttrString:char*:attr_name::
787
788PyObject_DelItem:int:::
789PyObject_DelItem:PyObject*:o:0:
790PyObject_DelItem:PyObject*:key:0:
791
Fred Drake9c75ff72001-09-06 18:06:46 +0000792PyObject_Dir:PyObject*::+1:
793PyObject_Dir:PyObject*:o:0:
794
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000795PyObject_GetAttr:PyObject*::+1:
796PyObject_GetAttr:PyObject*:o:0:
797PyObject_GetAttr:PyObject*:attr_name:0:
798
799PyObject_GetAttrString:PyObject*::+1:
800PyObject_GetAttrString:PyObject*:o:0:
801PyObject_GetAttrString:char*:attr_name::
802
803PyObject_GetItem:PyObject*::+1:
804PyObject_GetItem:PyObject*:o:0:
805PyObject_GetItem:PyObject*:key:0:
806
807PyObject_HasAttr:int:::
808PyObject_HasAttr:PyObject*:o:0:
809PyObject_HasAttr:PyObject*:attr_name:0:
810
811PyObject_HasAttrString:int:::
812PyObject_HasAttrString:PyObject*:o:0:
813PyObject_HasAttrString:char*:attr_name:0:
814
815PyObject_Hash:int:::
816PyObject_Hash:PyObject*:o:0:
817
818PyObject_IsTrue:int:::
819PyObject_IsTrue:PyObject*:o:0:
820
Fred Drakef913e542000-09-12 20:17:17 +0000821PyObject_Init:PyObject*::0:
822PyObject_Init:PyObject*:op:0:
823
824PyObject_InitVar:PyVarObject*::0:
825PyObject_InitVar:PyVarObject*:op:0:
826
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000827PyObject_Length:int:::
828PyObject_Length:PyObject*:o:0:
829
Fred Drake8e0c09d2001-07-06 23:31:49 +0000830PyObject_NEW:PyObject*::+1:
831
832PyObject_New:PyObject*::+1:
833
834PyObject_NEW_VAR:PyObject*::+1:
835
836PyObject_NewVar:PyObject*::+1:
837
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000838PyObject_Print:int:::
839PyObject_Print:PyObject*:o:0:
840PyObject_Print:FILE*:fp::
841PyObject_Print:int:flags::
842
843PyObject_Repr:PyObject*::+1:
844PyObject_Repr:PyObject*:o:0:
845
846PyObject_SetAttr:int:::
847PyObject_SetAttr:PyObject*:o:0:
848PyObject_SetAttr:PyObject*:attr_name:0:
849PyObject_SetAttr:PyObject*:v:+1:
850
851PyObject_SetAttrString:int:::
852PyObject_SetAttrString:PyObject*:o:0:
853PyObject_SetAttrString:char*:attr_name::
854PyObject_SetAttrString:PyObject*:v:+1:
855
856PyObject_SetItem:int:::
857PyObject_SetItem:PyObject*:o:0:
858PyObject_SetItem:PyObject*:key:0:
859PyObject_SetItem:PyObject*:v:+1:
860
861PyObject_Str:PyObject*::+1:
862PyObject_Str:PyObject*:o:0:
863
864PyObject_Type:PyObject*::+1:
865PyObject_Type:PyObject*:o:0:
866
Fred Drakeb2625eb2001-05-29 15:34:06 +0000867PyObject_Unicode:PyObject*::+1:
868PyObject_Unicode:PyObject*:o:0:
869
Fred Drake805bf1b1999-10-20 16:03:38 +0000870PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000871PyParser_SimpleParseFile:FILE*:fp::
872PyParser_SimpleParseFile:char*:filename::
873PyParser_SimpleParseFile:int:start::
874
Fred Drake805bf1b1999-10-20 16:03:38 +0000875PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000876PyParser_SimpleParseString:char*:str::
877PyParser_SimpleParseString:int:start::
878
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000879PyRun_AnyFile:int:::
880PyRun_AnyFile:FILE*:fp::
881PyRun_AnyFile:char*:filename::
882
Fred Drake4ca744c2000-08-12 03:39:47 +0000883PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000884PyRun_File:FILE*:fp::
885PyRun_File:char*:filename::
886PyRun_File:int:start::
887PyRun_File:PyObject*:globals:0:
888PyRun_File:PyObject*:locals:0:
889
890PyRun_InteractiveLoop:int:::
891PyRun_InteractiveLoop:FILE*:fp::
892PyRun_InteractiveLoop:char*:filename::
893
894PyRun_InteractiveOne:int:::
895PyRun_InteractiveOne:FILE*:fp::
896PyRun_InteractiveOne:char*:filename::
897
898PyRun_SimpleFile:int:::
899PyRun_SimpleFile:FILE*:fp::
900PyRun_SimpleFile:char*:filename::
901
902PyRun_SimpleString:int:::
903PyRun_SimpleString:char*:command::
904
Fred Drake4ca744c2000-08-12 03:39:47 +0000905PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000906PyRun_String:char*:str::
907PyRun_String:int:start::
908PyRun_String:PyObject*:globals:0:
909PyRun_String:PyObject*:locals:0:
910
Fred Draked61d0d32001-09-23 02:05:26 +0000911PySeqIter_New:PyObject*::+1:
912PySeqIter_New:PyObject*:seq::
913
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000914PySequence_Check:int:::
915PySequence_Check:PyObject*:o:0:
916
917PySequence_Concat:PyObject*::+1:
918PySequence_Concat:PyObject*:o1:0:
919PySequence_Concat:PyObject*:o2:0:
920
921PySequence_Count:int:::
922PySequence_Count:PyObject*:o:0:
923PySequence_Count:PyObject*:value:0:
924
925PySequence_DelItem:int:::
926PySequence_DelItem:PyObject*:o:0:
927PySequence_DelItem:int:i::
928
929PySequence_DelSlice:int:::
930PySequence_DelSlice:PyObject*:o:0:
931PySequence_DelSlice:int:i1::
932PySequence_DelSlice:int:i2::
933
Fred Drake81cccb72000-09-12 15:22:05 +0000934PySequence_Fast:PyObject*::+1:
935PySequence_Fast:PyObject*:v:0:
936PySequence_Fast:const char*:m::
937
938PySequence_Fast_GET_ITEM:PyObject*::0:
939PySequence_Fast_GET_ITEM:PyObject*:o:0:
940PySequence_Fast_GET_ITEM:int:i::
941
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000942PySequence_GetItem:PyObject*::+1:
943PySequence_GetItem:PyObject*:o:0:
944PySequence_GetItem:int:i::
945
946PySequence_GetSlice:PyObject*::+1:
947PySequence_GetSlice:PyObject*:o:0:
948PySequence_GetSlice:int:i1::
949PySequence_GetSlice:int:i2::
950
951PySequence_In:int:::
952PySequence_In:PyObject*:o:0:
953PySequence_In:PyObject*:value:0:
954
955PySequence_Index:int:::
956PySequence_Index:PyObject*:o:0:
957PySequence_Index:PyObject*:value:0:
958
Fred Drake1fa93652000-09-22 18:19:37 +0000959PySequence_InPlaceConcat:PyObject*::+1:
960PySequence_InPlaceConcat:PyObject*:s:0:
961PySequence_InPlaceConcat:PyObject*:o:0:
962
963PySequence_InPlaceRepeat:PyObject*::+1:
964PySequence_InPlaceRepeat:PyObject*:s:0:
965PySequence_InPlaceRepeat:PyObject*:o:0:
966
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000967PySequence_Repeat:PyObject*::+1:
968PySequence_Repeat:PyObject*:o:0:
969PySequence_Repeat:int:count::
970
971PySequence_SetItem:int:::
972PySequence_SetItem:PyObject*:o:0:
973PySequence_SetItem:int:i::
974PySequence_SetItem:PyObject*:v:+1:
975
976PySequence_SetSlice:int:::
977PySequence_SetSlice:PyObject*:o:0:
978PySequence_SetSlice:int:i1::
979PySequence_SetSlice:int:i2::
980PySequence_SetSlice:PyObject*:v:+1:
981
Fred Drake1c2d06a2000-06-16 20:00:04 +0000982PySequence_List:PyObject*::+1:
983PySequence_List:PyObject*:o:0:
984
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000985PySequence_Tuple:PyObject*::+1:
986PySequence_Tuple:PyObject*:o:0:
987
Fred Drake23a78cf2001-09-24 15:29:47 +0000988PySlice_Check:int:::
989PySlice_Check:PyObject*:ob:0:
990
991PySlice_New:PyObject*::+1:
992PySlice_New:PyObject*:start:0:
993PySlice_New:PyObject*:stop:0:
994PySlice_New:PyObject*:step:0:
995
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000996PyString_AS_STRING:char*:::
997PyString_AS_STRING:PyObject*:string:0:
998
Fred Drakeb2625eb2001-05-29 15:34:06 +0000999PyString_AsDecodedObject:PyObject*::+1:
1000PyString_AsDecodedObject:PyObject*:str:0:
1001PyString_AsDecodedObject:const char*:encoding::
1002PyString_AsDecodedObject:const char*:errors::
1003
1004PyString_AsEncodedObject:PyObject*::+1:
1005PyString_AsEncodedObject:PyObject*:str:0:
1006PyString_AsEncodedObject:const char*:encoding::
1007PyString_AsEncodedObject:const char*:errors::
1008
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001009PyString_AsString:char*:::
1010PyString_AsString:PyObject*:string:0:
1011
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +00001012PyString_AsStringAndSize:int:::
1013PyString_AsStringAndSize:PyObject*:obj:0:
1014PyString_AsStringAndSize:char**:buffer::
1015PyString_AsStringAndSize:int*:length::
1016
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001017PyString_Check:int:::
1018PyString_Check:PyObject*:o:0:
1019
1020PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001021PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001022PyString_Concat:PyObject*:newpart:0:
1023
1024PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001025PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001026PyString_ConcatAndDel:PyObject*:newpart:-1:
1027
1028PyString_Format:PyObject*::+1:
1029PyString_Format:PyObject*:format:0:
1030PyString_Format:PyObject*:args:0:
1031
1032PyString_FromString:PyObject*::+1:
1033PyString_FromString:const char*:v::
1034
1035PyString_FromStringAndSize:PyObject*::+1:
1036PyString_FromStringAndSize:const char*:v::
1037PyString_FromStringAndSize:int:len::
1038
Barry Warsaw8c64a542001-08-28 02:32:04 +00001039PyString_FromFormat:PyObject*::+1:
1040PyString_FromFormat:const char*:format::
1041PyString_FromFormat::...::
1042
1043PyString_FromFormatV:PyObject*::+1:
1044PyString_FromFormatV:const char*:format::
1045PyString_FromFormatV:va_list:vargs::
1046
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001047PyString_GET_SIZE:int:::
1048PyString_GET_SIZE:PyObject*:string:0:
1049
1050PyString_InternFromString:PyObject*::+1:
1051PyString_InternFromString:const char*:v::
1052
1053PyString_InternInPlace:void:::
1054PyString_InternInPlace:PyObject**:string:+1:???
1055
1056PyString_Size:int:::
1057PyString_Size:PyObject*:string:0:
1058
Marc-André Lemburg47073202000-07-07 15:48:54 +00001059PyString_Decode:PyObject*::+1:
1060PyString_Decode:const char*:s::
1061PyString_Decode:int:size::
1062PyString_Decode:const char*:encoding::
1063PyString_Decode:const char*:errors::
1064
1065PyString_Encode:PyObject*::+1:
1066PyString_Encode:const char*:s::
1067PyString_Encode:int:size::
1068PyString_Encode:const char*:encoding::
1069PyString_Encode:const char*:errors::
1070
1071PyString_AsEncodedString:PyObject*::+1:
1072PyString_AsEncodedString:PyObject*:str::
1073PyString_AsEncodedString:const char*:encoding::
1074PyString_AsEncodedString:const char*:errors::
1075
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001076PySys_SetArgv:int:::
1077PySys_SetArgv:int:argc::
1078PySys_SetArgv:char**:argv::
1079
1080PyThreadState_Clear:void:::
1081PyThreadState_Clear:PyThreadState*:tstate::
1082
1083PyThreadState_Delete:void:::
1084PyThreadState_Delete:PyThreadState*:tstate::
1085
1086PyThreadState_Get:PyThreadState*:::
1087
Fred Drakeb2625eb2001-05-29 15:34:06 +00001088PyThreadState_GetDict:PyObject*::0:
1089
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001090PyThreadState_New:PyThreadState*:::
1091PyThreadState_New:PyInterpreterState*:interp::
1092
1093PyThreadState_Swap:PyThreadState*:::
1094PyThreadState_Swap:PyThreadState*:tstate::
1095
1096PyTuple_Check:int:::
1097PyTuple_Check:PyObject*:p:0:
1098
1099PyTuple_GET_ITEM:PyObject*::0:
1100PyTuple_GET_ITEM:PyTupleObject*:p:0:
1101PyTuple_GET_ITEM:int:pos::
1102
1103PyTuple_GetItem:PyObject*::0:
1104PyTuple_GetItem:PyTupleObject*:p:0:
1105PyTuple_GetItem:int:pos::
1106
1107PyTuple_GetSlice:PyObject*::+1:
1108PyTuple_GetSlice:PyTupleObject*:p:0:
1109PyTuple_GetSlice:int:low::
1110PyTuple_GetSlice:int:high::
1111
1112PyTuple_New:PyObject*::+1:
1113PyTuple_New:int:len::
1114
1115PyTuple_SET_ITEM:void:::
1116PyTuple_SET_ITEM:PyTupleObject*:p:0:
1117PyTuple_SET_ITEM:int:pos::
1118PyTuple_SET_ITEM:PyObject*:o:0:
1119
1120PyTuple_SetItem:int:::
1121PyTuple_SetItem:PyTupleObject*:p:0:
1122PyTuple_SetItem:int:pos::
1123PyTuple_SetItem:PyObject*:o:0:
1124
1125PyTuple_Size:int:::
1126PyTuple_Size:PyTupleObject*:p:0:
1127
Fred Drake1b58bff2001-10-29 17:43:14 +00001128PyType_GenericAlloc:PyObject*::+1:
1129PyType_GenericAlloc:PyObject*:type:0:
1130PyType_GenericAlloc:int:nitems:0:
1131
1132PyType_GenericNew:PyObject*::+1:
1133PyType_GenericNew:PyObject*:type:0:
1134PyType_GenericNew:PyObject*:args:0:
1135PyType_GenericNew:PyObject*:kwds:0:
1136
Fred Drake992fe5a2000-06-16 21:04:15 +00001137PyUnicode_Check:int:::
1138PyUnicode_Check:PyObject*:o:0:
1139
1140PyUnicode_GET_SIZE:int:::
1141PyUnicode_GET_SIZE:PyObject*:o:0:
1142
1143PyUnicode_GET_DATA_SIZE:int:::
1144PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1145
1146PyUnicode_AS_UNICODE:Py_UNICODE*:::
1147PyUnicode_AS_UNICODE:PyObject*:o:0:
1148
1149PyUnicode_AS_DATA:const char*:::
1150PyUnicode_AS_DATA:PyObject*:o:0:
1151
1152Py_UNICODE_ISSPACE:int:::
1153Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1154
1155Py_UNICODE_ISLOWER:int:::
1156Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1157
1158Py_UNICODE_ISUPPER:int:::
1159Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1160
1161Py_UNICODE_ISTITLE:int:::
1162Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1163
1164Py_UNICODE_ISLINEBREAK:int:::
1165Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1166
1167Py_UNICODE_ISDECIMAL:int:::
1168Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1169
1170Py_UNICODE_ISDIGIT:int:::
1171Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1172
1173Py_UNICODE_ISNUMERIC:int:::
1174Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1175
1176Py_UNICODE_TOLOWER:Py_UNICODE:::
1177Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1178
1179Py_UNICODE_TOUPPER:Py_UNICODE:::
1180Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1181
1182Py_UNICODE_TOTITLE:Py_UNICODE:::
1183Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1184
1185Py_UNICODE_TODECIMAL:int:::
1186Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1187
1188Py_UNICODE_TODIGIT:int:::
1189Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1190
1191Py_UNICODE_TONUMERIC:double:::
1192Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1193
1194PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001195PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001196PyUnicode_FromUnicode:int:size::
1197
1198PyUnicode_AsUnicode:Py_UNICODE*:::
1199PyUnicode_AsUnicode:PyObject :*unicode:0:
1200
1201PyUnicode_GetSize:int:::
1202PyUnicode_GetSize:PyObject :*unicode:0:
1203
1204PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001205PyUnicode_FromObject:PyObject*:*obj:0:
1206
1207PyUnicode_FromEncodedObject:PyObject*::+1:
1208PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1209PyUnicode_FromEncodedObject:const char*:encoding::
1210PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001211
1212PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001213PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001214PyUnicode_FromWideChar:int:size::
1215
1216PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001217PyUnicode_AsWideChar:PyObject*:*unicode:0:
1218PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001219PyUnicode_AsWideChar:int:size::
1220
1221PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001222PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001223PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001224PyUnicode_Decode:const char*:encoding::
1225PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001226
1227PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001228PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001229PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001230PyUnicode_Encode:const char*:encoding::
1231PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001232
1233PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001234PyUnicode_AsEncodedString:PyObject*:unicode::
1235PyUnicode_AsEncodedString:const char*:encoding::
1236PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001237
1238PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001239PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001240PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001241PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001242
1243PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001244PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001245PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001246PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001247
1248PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001249PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001250
1251PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001252PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001253PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001254PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001255PyUnicode_DecodeUTF16:int*:byteorder::
1256
1257PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001258PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001259PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001260PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001261PyUnicode_EncodeUTF16:int:byteorder::
1262
1263PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001264PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001265
1266PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001267PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001268PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001269PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001270
1271PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001272PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001273PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001274PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001275
1276PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001277PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001278
1279PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001280PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001281PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001282PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001283
1284PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001285PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001286PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001287PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001288
1289PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001290PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001291
1292PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001293PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001294PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001295PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001296
1297PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001298PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001299PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001300PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001301
1302PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001303PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001304
1305PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001306PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001307PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001308PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001309
1310PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001311PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001312PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001313PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001314
1315PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001316PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001317
1318PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001319PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001320PyUnicode_DecodeCharmap:int:size::
1321PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001322PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001323
1324PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001325PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001326PyUnicode_EncodeCharmap:int:size::
1327PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001328PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001329
1330PyUnicode_AsCharmapString:PyObject*::+1:
1331PyUnicode_AsCharmapString:PyObject*:unicode:0:
1332PyUnicode_AsCharmapString:PyObject*:mapping:0:
1333
1334PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001335PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001336PyUnicode_TranslateCharmap:int:size::
1337PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001338PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001339
1340PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001341PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001342PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001343PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001344
1345PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001346PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001347PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001348PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001349
1350PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001351PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001352
1353PyUnicode_Concat:PyObject*::+1:
1354PyUnicode_Concat:PyObject*:left:0:
1355PyUnicode_Concat:PyObject*:right:0:
1356
1357PyUnicode_Split:PyObject*::+1:
1358PyUnicode_Split:PyObject*:left:0:
1359PyUnicode_Split:PyObject*:right:0:
1360PyUnicode_Split:int:maxsplit::
1361
1362PyUnicode_Splitlines:PyObject*::+1:
1363PyUnicode_Splitlines:PyObject*:s:0:
1364PyUnicode_Splitlines:int:maxsplit::
1365
1366PyUnicode_Translate:PyObject*::+1:
1367PyUnicode_Translate:PyObject*:str:0:
1368PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001369PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001370
1371PyUnicode_Join:PyObject*::+1:
1372PyUnicode_Join:PyObject*:separator:0:
1373PyUnicode_Join:PyObject*:seq:0:
1374
1375PyUnicode_Tailmatch:PyObject*::+1:
1376PyUnicode_Tailmatch:PyObject*:str:0:
1377PyUnicode_Tailmatch:PyObject*:substr:0:
1378PyUnicode_Tailmatch:int:start::
1379PyUnicode_Tailmatch:int:end::
1380PyUnicode_Tailmatch:int:direction::
1381
1382PyUnicode_Find:PyObject*::+1:
1383PyUnicode_Find:PyObject*:str:0:
1384PyUnicode_Find:PyObject*:substr:0:
1385PyUnicode_Find:int:start::
1386PyUnicode_Find:int:end::
1387PyUnicode_Find:int:direction::
1388
1389PyUnicode_Count:PyObject*::+1:
1390PyUnicode_Count:PyObject*:str:0:
1391PyUnicode_Count:PyObject*:substr:0:
1392PyUnicode_Count:int:start::
1393PyUnicode_Count:int:end::
1394
1395PyUnicode_Replace:PyObject*::+1:
1396PyUnicode_Replace:PyObject*:str:0:
1397PyUnicode_Replace:PyObject*:substr:0:
1398PyUnicode_Replace:PyObject*:replstr:0:
1399PyUnicode_Replace:int:maxcount::
1400
1401PyUnicode_Compare:int:::
1402PyUnicode_Compare:PyObject*:left:0:
1403PyUnicode_Compare:PyObject*:right:0:
1404
1405PyUnicode_Format:PyObject*::+1:
1406PyUnicode_Format:PyObject*:format:0:
1407PyUnicode_Format:PyObject*:args:0:
1408
1409PyUnicode_Contains:int:::
1410PyUnicode_Contains:PyObject*:container:0:
1411PyUnicode_Contains:PyObject*:element:0:
1412
Fred Drake1b58bff2001-10-29 17:43:14 +00001413PyWeakref_GET_OBJECT:PyObject*::0:
1414PyWeakref_GET_OBJECT:PyObject*:ref:0:
1415
1416PyWeakref_GetObject:PyObject*::+1:
1417PyWeakref_GetObject:PyObject*:ref:0:
1418
1419PyWeakref_NewProxy:PyObject*::+1:
1420PyWeakref_NewProxy:PyObject*:ob:0:
1421PyWeakref_NewProxy:PyObject*:callback:0:
1422
1423PyWeakref_NewRef:PyObject*::+1:
1424PyWeakref_NewRef:PyObject*:ob:0:
1425PyWeakref_NewRef:PyObject*:callback:0:
1426
1427PyWrapper_New:PyObject*::+1:
1428PyWrapper_New:PyObject*:d:0:
1429PyWrapper_New:PyObject*:self:0:
1430
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001431Py_AtExit:int:::
1432Py_AtExit:void (*)():func::
1433
Fred Drake6d988552001-07-20 20:55:31 +00001434Py_BuildValue:PyObject*::+1:
1435Py_BuildValue:char*:format::
1436
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001437Py_CompileString:PyObject*::+1:
1438Py_CompileString:char*:str::
1439Py_CompileString:char*:filename::
1440Py_CompileString:int:start::
1441
1442Py_DECREF:void:::
1443Py_DECREF:PyObject*:o:-1:
1444
1445Py_EndInterpreter:void:::
1446Py_EndInterpreter:PyThreadState*:tstate::
1447
1448Py_Exit:void:::
1449Py_Exit:int:status::
1450
1451Py_FatalError:void:::
1452Py_FatalError:char*:message::
1453
1454Py_FdIsInteractive:int:::
1455Py_FdIsInteractive:FILE*:fp::
1456Py_FdIsInteractive:char*:filename::
1457
1458Py_Finalize:void:::
1459
Fred Drake8520cc22000-04-10 19:38:24 +00001460Py_FindMethod:PyObject*::+1:
1461Py_FindMethod:PyMethodDef[]:methods::
1462Py_FindMethod:PyObject*:self:+1:
1463Py_FindMethod:char*:name::
1464
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001465Py_GetBuildInfoconst:char*:::
1466
1467Py_GetCompilerconst:char*:::
1468
1469Py_GetCopyrightconst:char*:::
1470
1471Py_GetExecPrefix:char*:::
1472
1473Py_GetPath:char*:::
1474
1475Py_GetPlatformconst:char*:::
1476
1477Py_GetPrefix:char*:::
1478
1479Py_GetProgramFullPath:char*:::
1480
1481Py_GetProgramName:char*:::
1482
1483Py_GetVersionconst:char*:::
1484
1485Py_INCREF:void:::
1486Py_INCREF:PyObject*:o:+1:
1487
1488Py_Initialize:void:::
1489
1490Py_IsInitialized:int:::
1491
1492Py_NewInterpreter:PyThreadState*:::
1493
1494Py_SetProgramName:void:::
1495Py_SetProgramName:char*:name::
1496
1497Py_XDECREF:void:::
1498Py_XDECREF:PyObject*:o:-1:if o is not NULL
1499
1500Py_XINCREF:void:::
1501Py_XINCREF:PyObject*:o:+1:if o is not NULL
1502
1503_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1504_PyImport_FindExtension:char*:::
1505_PyImport_FindExtension:char*:::
1506
1507_PyImport_Fini:void:::
1508
1509_PyImport_FixupExtension:PyObject*:::???
1510_PyImport_FixupExtension:char*:::
1511_PyImport_FixupExtension:char*:::
1512
1513_PyImport_Init:void:::
1514
Fred Drakef913e542000-09-12 20:17:17 +00001515_PyObject_Del:void:::
1516_PyObject_Del:PyObject*:op:0:
1517
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001518_PyObject_New:PyObject*::+1:
1519_PyObject_New:PyTypeObject*:type:0:
1520
Fred Drake8e0c09d2001-07-06 23:31:49 +00001521_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001522_PyObject_NewVar:PyTypeObject*:type:0:
1523_PyObject_NewVar:int:size::
1524
1525_PyString_Resize:int:::
1526_PyString_Resize:PyObject**:string:+1:
1527_PyString_Resize:int:newsize::
1528
1529_PyTuple_Resize:int:::
1530_PyTuple_Resize:PyTupleObject**:p:+1:
1531_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001532
1533_Py_c_diff:Py_complex:::
1534_Py_c_diff:Py_complex:left::
1535_Py_c_diff:Py_complex:right::
1536
1537_Py_c_neg:Py_complex:::
1538_Py_c_neg:Py_complex:complex::
1539
1540_Py_c_pow:Py_complex:::
1541_Py_c_pow:Py_complex:num::
1542_Py_c_pow:Py_complex:exp::
1543
1544_Py_c_prod:Py_complex:::
1545_Py_c_prod:Py_complex:left::
1546_Py_c_prod:Py_complex:right::
1547
1548_Py_c_quot:Py_complex:::
1549_Py_c_quot:Py_complex:dividend::
1550_Py_c_quot:Py_complex:divisor::
1551
1552_Py_c_sum:Py_complex:::
1553_Py_c_sum:Py_complex:left::
1554_Py_c_sum:Py_complex:right::