blob: 1dbbeebb4073644eb99c4a8b9e2519abe2d53a7a [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 Draked61d0d32001-09-23 02:05:26 +000070PyCallIter_New:PyObject*::+1:
71PyCallIter_New:PyObject*:callable::
72PyCallIter_New:PyObject*:sentinel::
73
Fred Drake7b7dc6b1999-10-20 15:06:24 +000074PyCallable_Check:int:::
75PyCallable_Check:PyObject*:o:0:
76
77PyComplex_AsCComplex:Py_complex:::
78PyComplex_AsCComplex:PyObject*:op:0:
79
80PyComplex_Check:int:::
81PyComplex_Check:PyObject*:p:0:
82
83PyComplex_FromCComplex:PyObject*::+1:
84PyComplex_FromCComplex::Py_complex v::
85
86PyComplex_FromDoubles:PyObject*::+1:
87PyComplex_FromDoubles::double real::
88PyComplex_FromDoubles::double imag::
89
90PyComplex_ImagAsDouble:double:::
91PyComplex_ImagAsDouble:PyObject*:op:0:
92
93PyComplex_RealAsDouble:double:::
94PyComplex_RealAsDouble:PyObject*:op:0:
95
Fred Drake23a78cf2001-09-24 15:29:47 +000096PyDescr_NewGetSet:PyObject*::+1:
97PyDescr_NewGetSet:PyTypeObject*:type::
98PyDescr_NewGetSet:PyGetSetDef*:getset::
99
100PyDescr_NewMember:PyObject*::+1:
101PyDescr_NewMember:PyTypeObject*:type::
102PyDescr_NewMember:PyMemberDef*:member::
103
104PyDescr_NewMethod:PyObject*::+1:
105PyDescr_NewMethod:PyTypeObject*:type::
106PyDescr_NewMethod:PyMethodDef*:meth::
107
108PyDescr_NewWrapper:PyObject*::+1:
109PyDescr_NewWrapper:PyTypeObject*:type::
110PyDescr_NewWrapper:struct wrapperbase*:base::
111PyDescr_NewWrapper:void*:wrapped::
112
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000113PyDict_Check:int:::
114PyDict_Check:PyObject*:p:0:
115
116PyDict_Clear:void:::
Fred Drake81473b12001-01-08 05:53:53 +0000117PyDict_Clear:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000118
119PyDict_DelItem:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000120PyDict_DelItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000121PyDict_DelItem:PyObject*:key:0:
122
123PyDict_DelItemString:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000124PyDict_DelItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000125PyDict_DelItemString:char*:key::
126
Fred Drake805bf1b1999-10-20 16:03:38 +0000127PyDict_GetItem:PyObject*::0:0
Fred Drake81473b12001-01-08 05:53:53 +0000128PyDict_GetItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000129PyDict_GetItem:PyObject*:key:0:
130
Fred Drake805bf1b1999-10-20 16:03:38 +0000131PyDict_GetItemString:PyObject*::0:
Fred Drake81473b12001-01-08 05:53:53 +0000132PyDict_GetItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000133PyDict_GetItemString:char*:key::
134
135PyDict_Items:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000136PyDict_Items:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000137
138PyDict_Keys:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000139PyDict_Keys:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000140
141PyDict_New:PyObject*::+1:
142
Jeremy Hyltona12c7a72000-03-30 22:27:31 +0000143PyDict_Copy:PyObject*::+1:
144PyDict_Copy:PyObject*:p:0:
145
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000146PyDict_Next:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000147PyDict_Next:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000148PyDict_Next:int:ppos::
149PyDict_Next:PyObject**:pkey:0:
150PyDict_Next:PyObject**:pvalue:0:
151
152PyDict_SetItem:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000153PyDict_SetItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000154PyDict_SetItem:PyObject*:key:+1:
155PyDict_SetItem:PyObject*:val:+1:
156
157PyDict_SetItemString:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000158PyDict_SetItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000159PyDict_SetItemString:char*:key::
160PyDict_SetItemString:PyObject*:val:+1:
161
162PyDict_Size:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000163PyDict_Size:PyObject*:p::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000164
165PyDict_Values:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000166PyDict_Values:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000167
Fred Drake23a78cf2001-09-24 15:29:47 +0000168PyDictProxy_New:PyObject*::+1:
169PyDictProxy_New:PyObject*:dict:0:
170
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000171PyErr_BadArgument:int:::
172
173PyErr_BadInternalCall:void:::
174
175PyErr_CheckSignals:int:::
176
177PyErr_Clear:void:::
178
179PyErr_ExceptionMatches:int:::
180PyErr_ExceptionMatches:PyObject*:exc:0:
181
182PyErr_Fetch:void:::
183PyErr_Fetch:PyObject**:ptype:0:
184PyErr_Fetch:PyObject**:pvalue:0:
185PyErr_Fetch:PyObject**:ptraceback:0:
186
187PyErr_GivenExceptionMatches:int:::
188PyErr_GivenExceptionMatches:PyObject*:given:0:
189PyErr_GivenExceptionMatches:PyObject*:exc:0:
190
191PyErr_NewException:PyObject*::+1:
192PyErr_NewException:char*:name::
193PyErr_NewException:PyObject*:base:0:
194PyErr_NewException:PyObject*:dict:0:
195
Fred Drakedb2764d2000-04-10 18:25:09 +0000196PyErr_NoMemory:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000197
198PyErr_NormalizeException:void:::
199PyErr_NormalizeException:PyObject**:exc::???
200PyErr_NormalizeException:PyObject**:val::???
201PyErr_NormalizeException:PyObject**:tb::???
202
203PyErr_Occurred:PyObject*::0:
204
205PyErr_Print:void:::
206
207PyErr_Restore:void:::
Fred Drake34c391d2000-08-15 04:36:16 +0000208PyErr_Restore:PyObject*:type:-1:
209PyErr_Restore:PyObject*:value:-1:
210PyErr_Restore:PyObject*:traceback:-1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000211
Fred Drakedb2764d2000-04-10 18:25:09 +0000212PyErr_SetFromErrno:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000213PyErr_SetFromErrno:PyObject*:type:0:
214
Fred Drake9c75ff72001-09-06 18:06:46 +0000215PyErr_SetFromErrnoWithFilename:PyObject*::null:
216PyErr_SetFromErrnoWithFilename:PyObject*:type:0:
217PyErr_SetFromErrnoWithFilename:char*:filename::
218
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000219PyErr_SetInterrupt:void:::
220
221PyErr_SetNone:void:::
222PyErr_SetNone:PyObject*:type:+1:
223
224PyErr_SetObject:void:::
225PyErr_SetObject:PyObject*:type:+1:
226PyErr_SetObject:PyObject*:value:+1:
227
228PyErr_SetString:void:::
229PyErr_SetString:PyObject*:type:+1:
230PyErr_SetString:char*:message::
231
Jeremy Hylton98605b52000-04-10 18:40:57 +0000232PyErr_Format:PyObject*::null:
233PyErr_Format:PyObject*:exception:+1:
234PyErr_Format:char*:format::
235PyErr_Format::...::
236
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000237PyErr_Warn:int:::
Guido van Rossume22e4b22000-12-19 03:58:11 +0000238PyErr_Warn:PyObject*:category:0:
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000239PyErr_Warn:char*:message::
240
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000241PyEval_AcquireLock:void:::
242
243PyEval_AcquireThread:void:::
244PyEval_AcquireThread:PyThreadState*:tstate::
245
246PyEval_InitThreads:void:::
247
248PyEval_ReleaseLock:void:::
249
250PyEval_ReleaseThread:void:::
251PyEval_ReleaseThread:PyThreadState*:tstate::
252
253PyEval_RestoreThread:void:::
254PyEval_RestoreThread:PyThreadState*:tstate::
255
256PyEval_SaveThread:PyThreadState*:::
257
Fred Drake4ca744c2000-08-12 03:39:47 +0000258PyEval_EvalCode:PyObject*::+1:
259PyEval_EvalCode:PyCodeObject*:co:0:
260PyEval_EvalCode:PyObject*:globals:0:
261PyEval_EvalCode:PyObject*:locals:0:
262
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000263PyFile_AsFile:FILE*:::
264PyFile_AsFile:PyFileObject*:p:0:
265
266PyFile_Check:int:::
267PyFile_Check:PyObject*:p:0:
268
269PyFile_FromFile:PyObject*::+1:
270PyFile_FromFile:FILE*:fp::
271PyFile_FromFile:char*:name::
272PyFile_FromFile:char*:mode::
273PyFile_FromFile:int(*:close)::
274
275PyFile_FromString:PyObject*::+1:
276PyFile_FromString:char*:name::
277PyFile_FromString:char*:mode::
278
279PyFile_GetLine:PyObject*::+1:
280PyFile_GetLine:PyObject*:p::
281PyFile_GetLine:int:n::
282
283PyFile_Name:PyObject*::0:
284PyFile_Name:PyObject*:p:0:
285
286PyFile_SetBufSize:void:::
287PyFile_SetBufSize:PyFileObject*:p:0:
288PyFile_SetBufSize:int:n::
289
290PyFile_SoftSpace:int:::
291PyFile_SoftSpace:PyFileObject*:p:0:
292PyFile_SoftSpace:int:newflag::
293
294PyFile_WriteObject:int:::
295PyFile_WriteObject:PyObject*:obj:0:
296PyFile_WriteObject:PyFileObject*:p:0:
297PyFile_WriteObject:int:flags::
298
299PyFile_WriteString:int:::
300PyFile_WriteString:char*:s::
301PyFile_WriteString:PyFileObject*:p:0:
302PyFile_WriteString:int:flags::
303
304PyFloat_AS_DOUBLE:double:::
305PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
306
307PyFloat_AsDouble:double:::
308PyFloat_AsDouble:PyObject*:pyfloat:0:
309
310PyFloat_Check:int:::
311PyFloat_Check:PyObject*:p:0:
312
313PyFloat_FromDouble:PyObject*::+1:
314PyFloat_FromDouble:double:v::
315
Fred Drakeee814bf2000-11-28 22:34:32 +0000316Py_InitModule:PyObject*::0:
317Py_InitModule:name:char*::
318Py_InitModule:methods:PyMethodDef[]::
319
320Py_InitModule3:PyObject*::0:
321Py_InitModule3:name:char*::
322Py_InitModule3:methods:PyMethodDef[]::
323Py_InitModule3:doc:char*::
324
325Py_InitModule4:PyObject*::0:
326Py_InitModule4:name:char*::
327Py_InitModule4:methods:PyMethodDef[]::
328Py_InitModule4:doc:char*::
329Py_InitModule4:self:PyObject*::
330Py_InitModule4:apiver:int::usually provided by Py_InitModule or Py_InitModule3
331
Fred Drake805bf1b1999-10-20 16:03:38 +0000332PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000333PyImport_AddModule:char*:name::
334
335PyImport_Cleanup:void:::
336
337PyImport_ExecCodeModule:PyObject*::+1:
338PyImport_ExecCodeModule:char*:name::
339PyImport_ExecCodeModule:PyObject*:co:0:
340
341PyImport_GetMagicNumber:long:::
342
343PyImport_GetModuleDict:PyObject*::0:
344
345PyImport_Import:PyObject*::+1:
346PyImport_Import:PyObject*:name:0:
347
348PyImport_ImportFrozenModule:int:::
349PyImport_ImportFrozenModule:char*:::
350
Fred Drakeeb725cd2000-04-03 15:06:40 +0000351PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000352PyImport_ImportModule:char*:name::
353
Fred Drakeeb725cd2000-04-03 15:06:40 +0000354PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000355PyImport_ImportModuleEx:char*:name::
356PyImport_ImportModuleEx:PyObject*:globals:0:???
357PyImport_ImportModuleEx:PyObject*:locals:0:???
358PyImport_ImportModuleEx:PyObject*:fromlist:0:???
359
Fred Drakeeb725cd2000-04-03 15:06:40 +0000360PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000361PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000362
Fred Drake5838d0f2001-01-28 06:39:35 +0000363PyInstance_New:PyObject*::+1:
364PyInstance_New:PyObject*:klass:+1:
365PyInstance_New:PyObject*:arg:0:
366PyInstance_New:PyObject*:kw:0:
367
368PyInstance_NewRaw:PyObject*::+1:
369PyInstance_NewRaw:PyObject*:klass:+1:
370PyInstance_NewRaw:PyObject*:dict:+1:
371
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000372PyInt_AS_LONG:long:::
373PyInt_AS_LONG:PyIntObject*:io:0:
374
375PyInt_AsLong:long:::
376PyInt_AsLong:PyObject*:io:0:
377
378PyInt_Check:int:::
Fred Drake9c75ff72001-09-06 18:06:46 +0000379PyInt_Check:PyObject*:op:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000380
381PyInt_FromLong:PyObject*::+1:
382PyInt_FromLong:long:ival::
383
384PyInt_GetMax:long:::
385
386PyInterpreterState_Clear:void:::
387PyInterpreterState_Clear:PyInterpreterState*:interp::
388
389PyInterpreterState_Delete:void:::
390PyInterpreterState_Delete:PyInterpreterState*:interp::
391
392PyInterpreterState_New:PyInterpreterState*:::
393
Fred Drakeb2625eb2001-05-29 15:34:06 +0000394PyIter_Check:int:o:0:
395
396PyIter_Next:PyObject*::+1:
397PyIter_Next:PyObject*:o:0:
398
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000399PyList_Append:int:::
400PyList_Append:PyObject*:list:0:
401PyList_Append:PyObject*:item:+1:
402
403PyList_AsTuple:PyObject*::+1:
404PyList_AsTuple:PyObject*:list:0:
405
406PyList_Check:int:::
407PyList_Check:PyObject*:p:0:
408
409PyList_GET_ITEM:PyObject*::0:
410PyList_GET_ITEM:PyObject*:list:0:
411PyList_GET_ITEM:int:i:0:
412
413PyList_GET_SIZE:int:::
414PyList_GET_SIZE:PyObject*:list:0:
415
416PyList_GetItem:PyObject*::0:
417PyList_GetItem:PyObject*:list:0:
418PyList_GetItem:int:index::
419
420PyList_GetSlice:PyObject*::+1:
421PyList_GetSlice:PyObject*:list:0:
422PyList_GetSlice:int:low::
423PyList_GetSlice:int:high::
424
425PyList_Insert:int:::
426PyList_Insert:PyObject*:list:0:
427PyList_Insert:int:index::
428PyList_Insert:PyObject*:item:+1:
429
430PyList_New:PyObject*::+1:
431PyList_New:int:len::
432
433PyList_Reverse:int:::
434PyList_Reverse:PyObject*:list:0:
435
Fred Draked8548312001-07-10 16:19:13 +0000436PyList_SET_ITEM:void:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000437PyList_SET_ITEM:PyObject*:list:0:
438PyList_SET_ITEM:int:i::
439PyList_SET_ITEM:PyObject*:o:0:
440
441PyList_SetItem:int:::
442PyList_SetItem:PyObject*:list:0:
443PyList_SetItem:int:index::
444PyList_SetItem:PyObject*:item:0:
445
446PyList_SetSlice:int:::
447PyList_SetSlice:PyObject*:list:0:
448PyList_SetSlice:int:low::
449PyList_SetSlice:int:high::
450PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
451
452PyList_Size:int:::
453PyList_Size:PyObject*:list:0:
454
455PyList_Sort:int:::
456PyList_Sort:PyObject*:list:0:
457
458PyLong_AsDouble:double:::
459PyLong_AsDouble:PyObject*:pylong:0:
460
461PyLong_AsLong:long:::
462PyLong_AsLong:PyObject*:pylong:0:
463
464PyLong_AsUnsignedLong:unsigned long:::
465PyLong_AsUnsignedLong:PyObject*:pylong:0:
466
467PyLong_Check:int:::
468PyLong_Check:PyObject*:p:0:
469
470PyLong_FromDouble:PyObject*::+1:
471PyLong_FromDouble:double:v::
472
473PyLong_FromLong:PyObject*::+1:
474PyLong_FromLong:long:v::
475
Fred Drakef47d8ef2001-09-20 19:18:52 +0000476PyLong_FromLongLong:PyObject*::+1:
477PyLong_FromLongLong:long long:v::
478
479PyLong_FromUnsignedLongLong:PyObject*::+1:
480PyLong_FromUnsignedLongLong:unsigned long long:v::
481
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000482PyLong_FromString:PyObject*::+1:
483PyLong_FromString:char*:str::
484PyLong_FromString:char**:pend::
485PyLong_FromString:int:base::
486
Fred Drakef47d8ef2001-09-20 19:18:52 +0000487PyLong_FromUnicode:PyObject*::+1:
488PyLong_FromUnicode:Py_UNICODE:u::
489PyLong_FromUnicode:int:length::
490PyLong_FromUnicode:int:base::
491
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000492PyLong_FromUnsignedLong:PyObject*::+1:
493PyLong_FromUnsignedLong:unsignedlong:v::
494
Fred Drakef47d8ef2001-09-20 19:18:52 +0000495PyLong_FromVoidPtr:PyObject*::+1:
496PyLong_FromVoidPtr:void*:p::
497
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000498PyMapping_Check:int:::
499PyMapping_Check:PyObject*:o:0:
500
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000501PyMapping_DelItem:int:::
502PyMapping_DelItem:PyObject*:o:0:
503PyMapping_DelItem:PyObject*:key:0:
504
505PyMapping_DelItemString:int:::
506PyMapping_DelItemString:PyObject*:o:0:
507PyMapping_DelItemString:char*:key::
508
509PyMapping_GetItemString:PyObject*::+1:
510PyMapping_GetItemString:PyObject*:o:0:
511PyMapping_GetItemString:char*:key::
512
513PyMapping_HasKey:int:::
514PyMapping_HasKey:PyObject*:o:0:
515PyMapping_HasKey:PyObject*:key::
516
517PyMapping_HasKeyString:int:::
518PyMapping_HasKeyString:PyObject*:o:0:
519PyMapping_HasKeyString:char*:key::
520
521PyMapping_Items:PyObject*::+1:
522PyMapping_Items:PyObject*:o:0:
523
524PyMapping_Keys:PyObject*::+1:
525PyMapping_Keys:PyObject*:o:0:
526
527PyMapping_Length:int:::
528PyMapping_Length:PyObject*:o:0:
529
530PyMapping_SetItemString:int:::
531PyMapping_SetItemString:PyObject*:o:0:
532PyMapping_SetItemString:char*:key::
533PyMapping_SetItemString:PyObject*:v:+1:
534
535PyMapping_Values:PyObject*::+1:
536PyMapping_Values:PyObject*:o:0:
537
Fred Drake1b58bff2001-10-29 17:43:14 +0000538PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
539PyMarshal_ReadLastObjectFromFile:FILE*:file::
540
541PyMarshal_ReadObjectFromFile:PyObject*::+1:
542PyMarshal_ReadObjectFromFile:FILE*:file::
543
544PyMarshal_ReadObjectFromString:PyObject*::+1:
545PyMarshal_ReadObjectFromString:char*:string::
546PyMarshal_ReadObjectFromString:int:len::
547
548PyMarshal_WriteObjectToString:PyObject*::+1:
549PyMarshal_WriteObjectToString:PyObject*:value:0:
550
Fred Drake9c75ff72001-09-06 18:06:46 +0000551PyMethod_Class:PyObject*::0:
552PyMethod_Class:PyObject*:im:0:
553
554PyMethod_Function:PyObject*::0:
555PyMethod_Function:PyObject*:im:0:
556
557PyMethod_GET_CLASS:PyObject*::0:
558PyMethod_GET_CLASS:PyObject*:im:0:
559
560PyMethod_GET_FUNCTION:PyObject*::0:
561PyMethod_GET_FUNCTION:PyObject*:im:0:
562
563PyMethod_GET_SELF:PyObject*::0:
564PyMethod_GET_SELF:PyObject*:im:0:
565
566PyMethod_New:PyObject*::+1:
567PyMethod_New:PyObject*:func:0:
568PyMethod_New:PyObject*:self:0:
569PyMethod_New:PyObject*:class:0:
570
571PyMethod_Self:PyObject*::0:
572PyMethod_Self:PyObject*:im:0:
573
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000574PyModule_GetDict:PyObject*::0:
575PyModule_GetDict::PyObject* module:0:
576
577PyModule_GetFilename:char*:::
578PyModule_GetFilename:PyObject*:module:0:
579
580PyModule_GetName:char*:::
581PyModule_GetName:PyObject*:module:0:
582
583PyModule_New:PyObject*::+1:
584PyModule_New::char* name::
585
586PyNumber_Absolute:PyObject*::+1:
587PyNumber_Absolute:PyObject*:o:0:
588
589PyNumber_Add:PyObject*::+1:
590PyNumber_Add:PyObject*:o1:0:
591PyNumber_Add:PyObject*:o2:0:
592
593PyNumber_And:PyObject*::+1:
594PyNumber_And:PyObject*:o1:0:
595PyNumber_And:PyObject*:o2:0:
596
597PyNumber_Check:PyObject*:o:0:
598PyNumber_Check:int:::
599
600PyNumber_Coerce:int:::
601PyNumber_Coerce:PyObject**:p1:+1:
602PyNumber_Coerce:PyObject**:p2:+1:
603
604PyNumber_Divide:PyObject*::+1:
605PyNumber_Divide:PyObject*:o1:0:
606PyNumber_Divide:PyObject*:o2:0:
607
608PyNumber_Divmod:PyObject*::+1:
609PyNumber_Divmod:PyObject*:o1:0:
610PyNumber_Divmod:PyObject*:o2:0:
611
612PyNumber_Float:PyObject*::+1:
613PyNumber_Float:PyObject*:o:0:
614
Fred Drake03590c62001-08-08 18:50:18 +0000615PyNumber_FloorDivide:PyObject*::+1:
616PyNumber_FloorDivide:PyObject*:v:0:
617PyNumber_FloorDivide:PyObject*:w:0:
618
Fred Drake1fa93652000-09-22 18:19:37 +0000619PyNumber_InPlaceAdd:PyObject*::+1:
620PyNumber_InPlaceAdd:PyObject*:v:0:
621PyNumber_InPlaceAdd:PyObject*:w:0:
622
623PyNumber_InPlaceAnd:PyObject*::+1:
624PyNumber_InPlaceAnd:PyObject*:v:0:
625PyNumber_InPlaceAnd:PyObject*:w:0:
626
627PyNumber_InPlaceDivide:PyObject*::+1:
628PyNumber_InPlaceDivide:PyObject*:v:0:
629PyNumber_InPlaceDivide:PyObject*:w:0:
630
Fred Drake03590c62001-08-08 18:50:18 +0000631PyNumber_InPlaceFloorDivide:PyObject*::+1:
632PyNumber_InPlaceFloorDivide:PyObject*:v:0:
633PyNumber_InPlaceFloorDivide:PyObject*:w:0:
634
Fred Drake1fa93652000-09-22 18:19:37 +0000635PyNumber_InPlaceLshift:PyObject*::+1:
636PyNumber_InPlaceLshift:PyObject*:v:0:
637PyNumber_InPlaceLshift:PyObject*:w:0:
638
639PyNumber_InPlaceMultiply:PyObject*::+1:
640PyNumber_InPlaceMultiply:PyObject*:v:0:
641PyNumber_InPlaceMultiply:PyObject*:w:0:
642
643PyNumber_InPlaceOr:PyObject*::+1:
644PyNumber_InPlaceOr:PyObject*:v:0:
645PyNumber_InPlaceOr:PyObject*:w:0:
646
647PyNumber_InPlacePower:PyObject*::+1:
648PyNumber_InPlacePower:PyObject*:v:0:
649PyNumber_InPlacePower:PyObject*:w:0:
650PyNumber_InPlacePower:PyObject*:z:0:
651
652PyNumber_InPlaceRemainder:PyObject*::+1:
653PyNumber_InPlaceRemainder:PyObject*:v:0:
654PyNumber_InPlaceRemainder:PyObject*:w:0:
655
656PyNumber_InPlaceRshift:PyObject*::+1:
657PyNumber_InPlaceRshift:PyObject*:v:0:
658PyNumber_InPlaceRshift:PyObject*:w:0:
659
660PyNumber_InPlaceSubtract:PyObject*::+1:
661PyNumber_InPlaceSubtract:PyObject*:v:0:
662PyNumber_InPlaceSubtract:PyObject*:w:0:
663
Fred Drake03590c62001-08-08 18:50:18 +0000664PyNumber_InPlaceTrueDivide:PyObject*::+1:
665PyNumber_InPlaceTrueDivide:PyObject*:v:0:
666PyNumber_InPlaceTrueDivide:PyObject*:w:0:
667
Fred Drake1fa93652000-09-22 18:19:37 +0000668PyNumber_InPlaceXor:PyObject*::+1:
669PyNumber_InPlaceXor:PyObject*:v:0:
670PyNumber_InPlaceXor:PyObject*:w:0:
671
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000672PyNumber_Int:PyObject*::+1:
673PyNumber_Int:PyObject*:o:0:
674
675PyNumber_Invert:PyObject*::+1:
676PyNumber_Invert:PyObject*:o:0:
677
678PyNumber_Long:PyObject*::+1:
679PyNumber_Long:PyObject*:o:0:
680
681PyNumber_Lshift:PyObject*::+1:
682PyNumber_Lshift:PyObject*:o1:0:
683PyNumber_Lshift:PyObject*:o2:0:
684
685PyNumber_Multiply:PyObject*::+1:
686PyNumber_Multiply:PyObject*:o1:0:
687PyNumber_Multiply:PyObject*:o2:0:
688
689PyNumber_Negative:PyObject*::+1:
690PyNumber_Negative:PyObject*:o:0:
691
692PyNumber_Or:PyObject*::+1:
693PyNumber_Or:PyObject*:o1:0:
694PyNumber_Or:PyObject*:o2:0:
695
696PyNumber_Positive:PyObject*::+1:
697PyNumber_Positive:PyObject*:o:0:
698
699PyNumber_Power:PyObject*::+1:
700PyNumber_Power:PyObject*:o1:0:
701PyNumber_Power:PyObject*:o2:0:
702PyNumber_Power:PyObject*:o3:0:
703
704PyNumber_Remainder:PyObject*::+1:
705PyNumber_Remainder:PyObject*:o1:0:
706PyNumber_Remainder:PyObject*:o2:0:
707
708PyNumber_Rshift:PyObject*::+1:
709PyNumber_Rshift:PyObject*:o1:0:
710PyNumber_Rshift:PyObject*:o2:0:
711
712PyNumber_Subtract:PyObject*::+1:
713PyNumber_Subtract:PyObject*:o1:0:
714PyNumber_Subtract:PyObject*:o2:0:
715
Fred Drake03590c62001-08-08 18:50:18 +0000716PyNumber_TrueDivide:PyObject*::+1:
717PyNumber_TrueDivide:PyObject*:v:0:
718PyNumber_TrueDivide:PyObject*:w:0:
719
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000720PyNumber_Xor:PyObject*::+1:
721PyNumber_Xor:PyObject*:o1:0:
722PyNumber_Xor:PyObject*:o2:0:
723
724PyOS_GetLastModificationTime:long:::
725PyOS_GetLastModificationTime:char*:filename::
726
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000727PyObject_AsFileDescriptor:int:::
728PyObject_AsFileDescriptor:PyObject*:o:0:
729
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000730PyObject_CallFunction:PyObject*::+1:
731PyObject_CallFunction:PyObject*:callable_object:0:
732PyObject_CallFunction:char*:format::
733PyObject_CallFunction::...::
734
Fred Drakeb0c079e2001-10-28 02:39:03 +0000735PyObject_CallFunctionObjArgs:PyObject*::+1:
736PyObject_CallFunctionObjArgs:PyObject*:callable:0:
737PyObject_CallFunctionObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000738
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000739PyObject_CallMethod:PyObject*::+1:
740PyObject_CallMethod:PyObject*:o:0:
741PyObject_CallMethod:char*:m::
742PyObject_CallMethod:char*:format::
743PyObject_CallMethod::...::
744
Fred Drakeb0c079e2001-10-28 02:39:03 +0000745PyObject_CallMethodObjArgs:PyObject*::+1:
746PyObject_CallMethodObjArgs:PyObject*:o:0:
747PyObject_CallMethodObjArgs:char*:name::
748PyObject_CallMethodObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000749
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000750PyObject_CallObject:PyObject*::+1:
751PyObject_CallObject:PyObject*:callable_object:0:
752PyObject_CallObject:PyObject*:args:0:
753
754PyObject_Cmp:int:::
755PyObject_Cmp:PyObject*:o1:0:
756PyObject_Cmp:PyObject*:o2:0:
757PyObject_Cmp:int*:result::
758
759PyObject_Compare:int:::
760PyObject_Compare:PyObject*:o1:0:
761PyObject_Compare:PyObject*:o2:0:
762
763PyObject_DelAttr:int:::
764PyObject_DelAttr:PyObject*:o:0:
765PyObject_DelAttr:PyObject*:attr_name:0:
766
767PyObject_DelAttrString:int:::
768PyObject_DelAttrString:PyObject*:o:0:
769PyObject_DelAttrString:char*:attr_name::
770
771PyObject_DelItem:int:::
772PyObject_DelItem:PyObject*:o:0:
773PyObject_DelItem:PyObject*:key:0:
774
Fred Drake9c75ff72001-09-06 18:06:46 +0000775PyObject_Dir:PyObject*::+1:
776PyObject_Dir:PyObject*:o:0:
777
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000778PyObject_GetAttr:PyObject*::+1:
779PyObject_GetAttr:PyObject*:o:0:
780PyObject_GetAttr:PyObject*:attr_name:0:
781
782PyObject_GetAttrString:PyObject*::+1:
783PyObject_GetAttrString:PyObject*:o:0:
784PyObject_GetAttrString:char*:attr_name::
785
786PyObject_GetItem:PyObject*::+1:
787PyObject_GetItem:PyObject*:o:0:
788PyObject_GetItem:PyObject*:key:0:
789
790PyObject_HasAttr:int:::
791PyObject_HasAttr:PyObject*:o:0:
792PyObject_HasAttr:PyObject*:attr_name:0:
793
794PyObject_HasAttrString:int:::
795PyObject_HasAttrString:PyObject*:o:0:
796PyObject_HasAttrString:char*:attr_name:0:
797
798PyObject_Hash:int:::
799PyObject_Hash:PyObject*:o:0:
800
801PyObject_IsTrue:int:::
802PyObject_IsTrue:PyObject*:o:0:
803
Fred Drakef913e542000-09-12 20:17:17 +0000804PyObject_Init:PyObject*::0:
805PyObject_Init:PyObject*:op:0:
806
807PyObject_InitVar:PyVarObject*::0:
808PyObject_InitVar:PyVarObject*:op:0:
809
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000810PyObject_Length:int:::
811PyObject_Length:PyObject*:o:0:
812
Fred Drake8e0c09d2001-07-06 23:31:49 +0000813PyObject_NEW:PyObject*::+1:
814
815PyObject_New:PyObject*::+1:
816
817PyObject_NEW_VAR:PyObject*::+1:
818
819PyObject_NewVar:PyObject*::+1:
820
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000821PyObject_Print:int:::
822PyObject_Print:PyObject*:o:0:
823PyObject_Print:FILE*:fp::
824PyObject_Print:int:flags::
825
826PyObject_Repr:PyObject*::+1:
827PyObject_Repr:PyObject*:o:0:
828
829PyObject_SetAttr:int:::
830PyObject_SetAttr:PyObject*:o:0:
831PyObject_SetAttr:PyObject*:attr_name:0:
832PyObject_SetAttr:PyObject*:v:+1:
833
834PyObject_SetAttrString:int:::
835PyObject_SetAttrString:PyObject*:o:0:
836PyObject_SetAttrString:char*:attr_name::
837PyObject_SetAttrString:PyObject*:v:+1:
838
839PyObject_SetItem:int:::
840PyObject_SetItem:PyObject*:o:0:
841PyObject_SetItem:PyObject*:key:0:
842PyObject_SetItem:PyObject*:v:+1:
843
844PyObject_Str:PyObject*::+1:
845PyObject_Str:PyObject*:o:0:
846
847PyObject_Type:PyObject*::+1:
848PyObject_Type:PyObject*:o:0:
849
Fred Drakeb2625eb2001-05-29 15:34:06 +0000850PyObject_Unicode:PyObject*::+1:
851PyObject_Unicode:PyObject*:o:0:
852
Fred Drake805bf1b1999-10-20 16:03:38 +0000853PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000854PyParser_SimpleParseFile:FILE*:fp::
855PyParser_SimpleParseFile:char*:filename::
856PyParser_SimpleParseFile:int:start::
857
Fred Drake805bf1b1999-10-20 16:03:38 +0000858PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000859PyParser_SimpleParseString:char*:str::
860PyParser_SimpleParseString:int:start::
861
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000862PyRun_AnyFile:int:::
863PyRun_AnyFile:FILE*:fp::
864PyRun_AnyFile:char*:filename::
865
Fred Drake4ca744c2000-08-12 03:39:47 +0000866PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000867PyRun_File:FILE*:fp::
868PyRun_File:char*:filename::
869PyRun_File:int:start::
870PyRun_File:PyObject*:globals:0:
871PyRun_File:PyObject*:locals:0:
872
873PyRun_InteractiveLoop:int:::
874PyRun_InteractiveLoop:FILE*:fp::
875PyRun_InteractiveLoop:char*:filename::
876
877PyRun_InteractiveOne:int:::
878PyRun_InteractiveOne:FILE*:fp::
879PyRun_InteractiveOne:char*:filename::
880
881PyRun_SimpleFile:int:::
882PyRun_SimpleFile:FILE*:fp::
883PyRun_SimpleFile:char*:filename::
884
885PyRun_SimpleString:int:::
886PyRun_SimpleString:char*:command::
887
Fred Drake4ca744c2000-08-12 03:39:47 +0000888PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000889PyRun_String:char*:str::
890PyRun_String:int:start::
891PyRun_String:PyObject*:globals:0:
892PyRun_String:PyObject*:locals:0:
893
Fred Draked61d0d32001-09-23 02:05:26 +0000894PySeqIter_New:PyObject*::+1:
895PySeqIter_New:PyObject*:seq::
896
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000897PySequence_Check:int:::
898PySequence_Check:PyObject*:o:0:
899
900PySequence_Concat:PyObject*::+1:
901PySequence_Concat:PyObject*:o1:0:
902PySequence_Concat:PyObject*:o2:0:
903
904PySequence_Count:int:::
905PySequence_Count:PyObject*:o:0:
906PySequence_Count:PyObject*:value:0:
907
908PySequence_DelItem:int:::
909PySequence_DelItem:PyObject*:o:0:
910PySequence_DelItem:int:i::
911
912PySequence_DelSlice:int:::
913PySequence_DelSlice:PyObject*:o:0:
914PySequence_DelSlice:int:i1::
915PySequence_DelSlice:int:i2::
916
Fred Drake81cccb72000-09-12 15:22:05 +0000917PySequence_Fast:PyObject*::+1:
918PySequence_Fast:PyObject*:v:0:
919PySequence_Fast:const char*:m::
920
921PySequence_Fast_GET_ITEM:PyObject*::0:
922PySequence_Fast_GET_ITEM:PyObject*:o:0:
923PySequence_Fast_GET_ITEM:int:i::
924
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000925PySequence_GetItem:PyObject*::+1:
926PySequence_GetItem:PyObject*:o:0:
927PySequence_GetItem:int:i::
928
929PySequence_GetSlice:PyObject*::+1:
930PySequence_GetSlice:PyObject*:o:0:
931PySequence_GetSlice:int:i1::
932PySequence_GetSlice:int:i2::
933
934PySequence_In:int:::
935PySequence_In:PyObject*:o:0:
936PySequence_In:PyObject*:value:0:
937
938PySequence_Index:int:::
939PySequence_Index:PyObject*:o:0:
940PySequence_Index:PyObject*:value:0:
941
Fred Drake1fa93652000-09-22 18:19:37 +0000942PySequence_InPlaceConcat:PyObject*::+1:
943PySequence_InPlaceConcat:PyObject*:s:0:
944PySequence_InPlaceConcat:PyObject*:o:0:
945
946PySequence_InPlaceRepeat:PyObject*::+1:
947PySequence_InPlaceRepeat:PyObject*:s:0:
948PySequence_InPlaceRepeat:PyObject*:o:0:
949
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000950PySequence_Repeat:PyObject*::+1:
951PySequence_Repeat:PyObject*:o:0:
952PySequence_Repeat:int:count::
953
954PySequence_SetItem:int:::
955PySequence_SetItem:PyObject*:o:0:
956PySequence_SetItem:int:i::
957PySequence_SetItem:PyObject*:v:+1:
958
959PySequence_SetSlice:int:::
960PySequence_SetSlice:PyObject*:o:0:
961PySequence_SetSlice:int:i1::
962PySequence_SetSlice:int:i2::
963PySequence_SetSlice:PyObject*:v:+1:
964
Fred Drake1c2d06a2000-06-16 20:00:04 +0000965PySequence_List:PyObject*::+1:
966PySequence_List:PyObject*:o:0:
967
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000968PySequence_Tuple:PyObject*::+1:
969PySequence_Tuple:PyObject*:o:0:
970
Fred Drake23a78cf2001-09-24 15:29:47 +0000971PySlice_Check:int:::
972PySlice_Check:PyObject*:ob:0:
973
974PySlice_New:PyObject*::+1:
975PySlice_New:PyObject*:start:0:
976PySlice_New:PyObject*:stop:0:
977PySlice_New:PyObject*:step:0:
978
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000979PyString_AS_STRING:char*:::
980PyString_AS_STRING:PyObject*:string:0:
981
Fred Drakeb2625eb2001-05-29 15:34:06 +0000982PyString_AsDecodedObject:PyObject*::+1:
983PyString_AsDecodedObject:PyObject*:str:0:
984PyString_AsDecodedObject:const char*:encoding::
985PyString_AsDecodedObject:const char*:errors::
986
987PyString_AsEncodedObject:PyObject*::+1:
988PyString_AsEncodedObject:PyObject*:str:0:
989PyString_AsEncodedObject:const char*:encoding::
990PyString_AsEncodedObject:const char*:errors::
991
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000992PyString_AsString:char*:::
993PyString_AsString:PyObject*:string:0:
994
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +0000995PyString_AsStringAndSize:int:::
996PyString_AsStringAndSize:PyObject*:obj:0:
997PyString_AsStringAndSize:char**:buffer::
998PyString_AsStringAndSize:int*:length::
999
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001000PyString_Check:int:::
1001PyString_Check:PyObject*:o:0:
1002
1003PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001004PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001005PyString_Concat:PyObject*:newpart:0:
1006
1007PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001008PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001009PyString_ConcatAndDel:PyObject*:newpart:-1:
1010
1011PyString_Format:PyObject*::+1:
1012PyString_Format:PyObject*:format:0:
1013PyString_Format:PyObject*:args:0:
1014
1015PyString_FromString:PyObject*::+1:
1016PyString_FromString:const char*:v::
1017
1018PyString_FromStringAndSize:PyObject*::+1:
1019PyString_FromStringAndSize:const char*:v::
1020PyString_FromStringAndSize:int:len::
1021
Barry Warsaw8c64a542001-08-28 02:32:04 +00001022PyString_FromFormat:PyObject*::+1:
1023PyString_FromFormat:const char*:format::
1024PyString_FromFormat::...::
1025
1026PyString_FromFormatV:PyObject*::+1:
1027PyString_FromFormatV:const char*:format::
1028PyString_FromFormatV:va_list:vargs::
1029
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001030PyString_GET_SIZE:int:::
1031PyString_GET_SIZE:PyObject*:string:0:
1032
1033PyString_InternFromString:PyObject*::+1:
1034PyString_InternFromString:const char*:v::
1035
1036PyString_InternInPlace:void:::
1037PyString_InternInPlace:PyObject**:string:+1:???
1038
1039PyString_Size:int:::
1040PyString_Size:PyObject*:string:0:
1041
Marc-André Lemburg47073202000-07-07 15:48:54 +00001042PyString_Decode:PyObject*::+1:
1043PyString_Decode:const char*:s::
1044PyString_Decode:int:size::
1045PyString_Decode:const char*:encoding::
1046PyString_Decode:const char*:errors::
1047
1048PyString_Encode:PyObject*::+1:
1049PyString_Encode:const char*:s::
1050PyString_Encode:int:size::
1051PyString_Encode:const char*:encoding::
1052PyString_Encode:const char*:errors::
1053
1054PyString_AsEncodedString:PyObject*::+1:
1055PyString_AsEncodedString:PyObject*:str::
1056PyString_AsEncodedString:const char*:encoding::
1057PyString_AsEncodedString:const char*:errors::
1058
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001059PySys_SetArgv:int:::
1060PySys_SetArgv:int:argc::
1061PySys_SetArgv:char**:argv::
1062
1063PyThreadState_Clear:void:::
1064PyThreadState_Clear:PyThreadState*:tstate::
1065
1066PyThreadState_Delete:void:::
1067PyThreadState_Delete:PyThreadState*:tstate::
1068
1069PyThreadState_Get:PyThreadState*:::
1070
Fred Drakeb2625eb2001-05-29 15:34:06 +00001071PyThreadState_GetDict:PyObject*::0:
1072
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001073PyThreadState_New:PyThreadState*:::
1074PyThreadState_New:PyInterpreterState*:interp::
1075
1076PyThreadState_Swap:PyThreadState*:::
1077PyThreadState_Swap:PyThreadState*:tstate::
1078
1079PyTuple_Check:int:::
1080PyTuple_Check:PyObject*:p:0:
1081
1082PyTuple_GET_ITEM:PyObject*::0:
1083PyTuple_GET_ITEM:PyTupleObject*:p:0:
1084PyTuple_GET_ITEM:int:pos::
1085
1086PyTuple_GetItem:PyObject*::0:
1087PyTuple_GetItem:PyTupleObject*:p:0:
1088PyTuple_GetItem:int:pos::
1089
1090PyTuple_GetSlice:PyObject*::+1:
1091PyTuple_GetSlice:PyTupleObject*:p:0:
1092PyTuple_GetSlice:int:low::
1093PyTuple_GetSlice:int:high::
1094
1095PyTuple_New:PyObject*::+1:
1096PyTuple_New:int:len::
1097
1098PyTuple_SET_ITEM:void:::
1099PyTuple_SET_ITEM:PyTupleObject*:p:0:
1100PyTuple_SET_ITEM:int:pos::
1101PyTuple_SET_ITEM:PyObject*:o:0:
1102
1103PyTuple_SetItem:int:::
1104PyTuple_SetItem:PyTupleObject*:p:0:
1105PyTuple_SetItem:int:pos::
1106PyTuple_SetItem:PyObject*:o:0:
1107
1108PyTuple_Size:int:::
1109PyTuple_Size:PyTupleObject*:p:0:
1110
Fred Drake1b58bff2001-10-29 17:43:14 +00001111PyType_GenericAlloc:PyObject*::+1:
1112PyType_GenericAlloc:PyObject*:type:0:
1113PyType_GenericAlloc:int:nitems:0:
1114
1115PyType_GenericNew:PyObject*::+1:
1116PyType_GenericNew:PyObject*:type:0:
1117PyType_GenericNew:PyObject*:args:0:
1118PyType_GenericNew:PyObject*:kwds:0:
1119
Fred Drake992fe5a2000-06-16 21:04:15 +00001120PyUnicode_Check:int:::
1121PyUnicode_Check:PyObject*:o:0:
1122
1123PyUnicode_GET_SIZE:int:::
1124PyUnicode_GET_SIZE:PyObject*:o:0:
1125
1126PyUnicode_GET_DATA_SIZE:int:::
1127PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1128
1129PyUnicode_AS_UNICODE:Py_UNICODE*:::
1130PyUnicode_AS_UNICODE:PyObject*:o:0:
1131
1132PyUnicode_AS_DATA:const char*:::
1133PyUnicode_AS_DATA:PyObject*:o:0:
1134
1135Py_UNICODE_ISSPACE:int:::
1136Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1137
1138Py_UNICODE_ISLOWER:int:::
1139Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1140
1141Py_UNICODE_ISUPPER:int:::
1142Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1143
1144Py_UNICODE_ISTITLE:int:::
1145Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1146
1147Py_UNICODE_ISLINEBREAK:int:::
1148Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1149
1150Py_UNICODE_ISDECIMAL:int:::
1151Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1152
1153Py_UNICODE_ISDIGIT:int:::
1154Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1155
1156Py_UNICODE_ISNUMERIC:int:::
1157Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1158
1159Py_UNICODE_TOLOWER:Py_UNICODE:::
1160Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1161
1162Py_UNICODE_TOUPPER:Py_UNICODE:::
1163Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1164
1165Py_UNICODE_TOTITLE:Py_UNICODE:::
1166Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1167
1168Py_UNICODE_TODECIMAL:int:::
1169Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1170
1171Py_UNICODE_TODIGIT:int:::
1172Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1173
1174Py_UNICODE_TONUMERIC:double:::
1175Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1176
1177PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001178PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001179PyUnicode_FromUnicode:int:size::
1180
1181PyUnicode_AsUnicode:Py_UNICODE*:::
1182PyUnicode_AsUnicode:PyObject :*unicode:0:
1183
1184PyUnicode_GetSize:int:::
1185PyUnicode_GetSize:PyObject :*unicode:0:
1186
1187PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001188PyUnicode_FromObject:PyObject*:*obj:0:
1189
1190PyUnicode_FromEncodedObject:PyObject*::+1:
1191PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1192PyUnicode_FromEncodedObject:const char*:encoding::
1193PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001194
1195PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001196PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001197PyUnicode_FromWideChar:int:size::
1198
1199PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001200PyUnicode_AsWideChar:PyObject*:*unicode:0:
1201PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001202PyUnicode_AsWideChar:int:size::
1203
1204PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001205PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001206PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001207PyUnicode_Decode:const char*:encoding::
1208PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001209
1210PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001211PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001212PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001213PyUnicode_Encode:const char*:encoding::
1214PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001215
1216PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001217PyUnicode_AsEncodedString:PyObject*:unicode::
1218PyUnicode_AsEncodedString:const char*:encoding::
1219PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001220
1221PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001222PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001223PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001224PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001225
1226PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001227PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001228PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001229PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001230
1231PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001232PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001233
1234PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001235PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001236PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001237PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001238PyUnicode_DecodeUTF16:int*:byteorder::
1239
1240PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001241PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001242PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001243PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001244PyUnicode_EncodeUTF16:int:byteorder::
1245
1246PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001247PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001248
1249PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001250PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001251PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001252PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001253
1254PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001255PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001256PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001257PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001258
1259PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001260PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001261
1262PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001263PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001264PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001265PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001266
1267PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001268PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001269PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001270PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001271
1272PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001273PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001274
1275PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001276PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001277PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001278PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001279
1280PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001281PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001282PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001283PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001284
1285PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001286PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001287
1288PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001289PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001290PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001291PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001292
1293PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001294PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001295PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001296PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001297
1298PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001299PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001300
1301PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001302PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001303PyUnicode_DecodeCharmap:int:size::
1304PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001305PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001306
1307PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001308PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001309PyUnicode_EncodeCharmap:int:size::
1310PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001311PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001312
1313PyUnicode_AsCharmapString:PyObject*::+1:
1314PyUnicode_AsCharmapString:PyObject*:unicode:0:
1315PyUnicode_AsCharmapString:PyObject*:mapping:0:
1316
1317PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001318PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001319PyUnicode_TranslateCharmap:int:size::
1320PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001321PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001322
1323PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001324PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001325PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001326PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001327
1328PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001329PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001330PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001331PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001332
1333PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001334PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001335
1336PyUnicode_Concat:PyObject*::+1:
1337PyUnicode_Concat:PyObject*:left:0:
1338PyUnicode_Concat:PyObject*:right:0:
1339
1340PyUnicode_Split:PyObject*::+1:
1341PyUnicode_Split:PyObject*:left:0:
1342PyUnicode_Split:PyObject*:right:0:
1343PyUnicode_Split:int:maxsplit::
1344
1345PyUnicode_Splitlines:PyObject*::+1:
1346PyUnicode_Splitlines:PyObject*:s:0:
1347PyUnicode_Splitlines:int:maxsplit::
1348
1349PyUnicode_Translate:PyObject*::+1:
1350PyUnicode_Translate:PyObject*:str:0:
1351PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001352PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001353
1354PyUnicode_Join:PyObject*::+1:
1355PyUnicode_Join:PyObject*:separator:0:
1356PyUnicode_Join:PyObject*:seq:0:
1357
1358PyUnicode_Tailmatch:PyObject*::+1:
1359PyUnicode_Tailmatch:PyObject*:str:0:
1360PyUnicode_Tailmatch:PyObject*:substr:0:
1361PyUnicode_Tailmatch:int:start::
1362PyUnicode_Tailmatch:int:end::
1363PyUnicode_Tailmatch:int:direction::
1364
1365PyUnicode_Find:PyObject*::+1:
1366PyUnicode_Find:PyObject*:str:0:
1367PyUnicode_Find:PyObject*:substr:0:
1368PyUnicode_Find:int:start::
1369PyUnicode_Find:int:end::
1370PyUnicode_Find:int:direction::
1371
1372PyUnicode_Count:PyObject*::+1:
1373PyUnicode_Count:PyObject*:str:0:
1374PyUnicode_Count:PyObject*:substr:0:
1375PyUnicode_Count:int:start::
1376PyUnicode_Count:int:end::
1377
1378PyUnicode_Replace:PyObject*::+1:
1379PyUnicode_Replace:PyObject*:str:0:
1380PyUnicode_Replace:PyObject*:substr:0:
1381PyUnicode_Replace:PyObject*:replstr:0:
1382PyUnicode_Replace:int:maxcount::
1383
1384PyUnicode_Compare:int:::
1385PyUnicode_Compare:PyObject*:left:0:
1386PyUnicode_Compare:PyObject*:right:0:
1387
1388PyUnicode_Format:PyObject*::+1:
1389PyUnicode_Format:PyObject*:format:0:
1390PyUnicode_Format:PyObject*:args:0:
1391
1392PyUnicode_Contains:int:::
1393PyUnicode_Contains:PyObject*:container:0:
1394PyUnicode_Contains:PyObject*:element:0:
1395
Fred Drake1b58bff2001-10-29 17:43:14 +00001396PyWeakref_GET_OBJECT:PyObject*::0:
1397PyWeakref_GET_OBJECT:PyObject*:ref:0:
1398
1399PyWeakref_GetObject:PyObject*::+1:
1400PyWeakref_GetObject:PyObject*:ref:0:
1401
1402PyWeakref_NewProxy:PyObject*::+1:
1403PyWeakref_NewProxy:PyObject*:ob:0:
1404PyWeakref_NewProxy:PyObject*:callback:0:
1405
1406PyWeakref_NewRef:PyObject*::+1:
1407PyWeakref_NewRef:PyObject*:ob:0:
1408PyWeakref_NewRef:PyObject*:callback:0:
1409
1410PyWrapper_New:PyObject*::+1:
1411PyWrapper_New:PyObject*:d:0:
1412PyWrapper_New:PyObject*:self:0:
1413
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001414Py_AtExit:int:::
1415Py_AtExit:void (*)():func::
1416
Fred Drake6d988552001-07-20 20:55:31 +00001417Py_BuildValue:PyObject*::+1:
1418Py_BuildValue:char*:format::
1419
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001420Py_CompileString:PyObject*::+1:
1421Py_CompileString:char*:str::
1422Py_CompileString:char*:filename::
1423Py_CompileString:int:start::
1424
1425Py_DECREF:void:::
1426Py_DECREF:PyObject*:o:-1:
1427
1428Py_EndInterpreter:void:::
1429Py_EndInterpreter:PyThreadState*:tstate::
1430
1431Py_Exit:void:::
1432Py_Exit:int:status::
1433
1434Py_FatalError:void:::
1435Py_FatalError:char*:message::
1436
1437Py_FdIsInteractive:int:::
1438Py_FdIsInteractive:FILE*:fp::
1439Py_FdIsInteractive:char*:filename::
1440
1441Py_Finalize:void:::
1442
Fred Drake8520cc22000-04-10 19:38:24 +00001443Py_FindMethod:PyObject*::+1:
1444Py_FindMethod:PyMethodDef[]:methods::
1445Py_FindMethod:PyObject*:self:+1:
1446Py_FindMethod:char*:name::
1447
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001448Py_GetBuildInfoconst:char*:::
1449
1450Py_GetCompilerconst:char*:::
1451
1452Py_GetCopyrightconst:char*:::
1453
1454Py_GetExecPrefix:char*:::
1455
1456Py_GetPath:char*:::
1457
1458Py_GetPlatformconst:char*:::
1459
1460Py_GetPrefix:char*:::
1461
1462Py_GetProgramFullPath:char*:::
1463
1464Py_GetProgramName:char*:::
1465
1466Py_GetVersionconst:char*:::
1467
1468Py_INCREF:void:::
1469Py_INCREF:PyObject*:o:+1:
1470
1471Py_Initialize:void:::
1472
1473Py_IsInitialized:int:::
1474
1475Py_NewInterpreter:PyThreadState*:::
1476
1477Py_SetProgramName:void:::
1478Py_SetProgramName:char*:name::
1479
1480Py_XDECREF:void:::
1481Py_XDECREF:PyObject*:o:-1:if o is not NULL
1482
1483Py_XINCREF:void:::
1484Py_XINCREF:PyObject*:o:+1:if o is not NULL
1485
1486_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1487_PyImport_FindExtension:char*:::
1488_PyImport_FindExtension:char*:::
1489
1490_PyImport_Fini:void:::
1491
1492_PyImport_FixupExtension:PyObject*:::???
1493_PyImport_FixupExtension:char*:::
1494_PyImport_FixupExtension:char*:::
1495
1496_PyImport_Init:void:::
1497
Fred Drakef913e542000-09-12 20:17:17 +00001498_PyObject_Del:void:::
1499_PyObject_Del:PyObject*:op:0:
1500
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001501_PyObject_New:PyObject*::+1:
1502_PyObject_New:PyTypeObject*:type:0:
1503
Fred Drake8e0c09d2001-07-06 23:31:49 +00001504_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001505_PyObject_NewVar:PyTypeObject*:type:0:
1506_PyObject_NewVar:int:size::
1507
1508_PyString_Resize:int:::
1509_PyString_Resize:PyObject**:string:+1:
1510_PyString_Resize:int:newsize::
1511
1512_PyTuple_Resize:int:::
1513_PyTuple_Resize:PyTupleObject**:p:+1:
1514_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001515
1516_Py_c_diff:Py_complex:::
1517_Py_c_diff:Py_complex:left::
1518_Py_c_diff:Py_complex:right::
1519
1520_Py_c_neg:Py_complex:::
1521_Py_c_neg:Py_complex:complex::
1522
1523_Py_c_pow:Py_complex:::
1524_Py_c_pow:Py_complex:num::
1525_Py_c_pow:Py_complex:exp::
1526
1527_Py_c_prod:Py_complex:::
1528_Py_c_prod:Py_complex:left::
1529_Py_c_prod:Py_complex:right::
1530
1531_Py_c_quot:Py_complex:::
1532_Py_c_quot:Py_complex:dividend::
1533_Py_c_quot:Py_complex:divisor::
1534
1535_Py_c_sum:Py_complex:::
1536_Py_c_sum:Py_complex:left::
1537_Py_c_sum:Py_complex:right::