blob: 747a5e4897d822ad45f54574761836cf517319bf [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 Drake9c75ff72001-09-06 18:06:46 +0000538PyMethod_Class:PyObject*::0:
539PyMethod_Class:PyObject*:im:0:
540
541PyMethod_Function:PyObject*::0:
542PyMethod_Function:PyObject*:im:0:
543
544PyMethod_GET_CLASS:PyObject*::0:
545PyMethod_GET_CLASS:PyObject*:im:0:
546
547PyMethod_GET_FUNCTION:PyObject*::0:
548PyMethod_GET_FUNCTION:PyObject*:im:0:
549
550PyMethod_GET_SELF:PyObject*::0:
551PyMethod_GET_SELF:PyObject*:im:0:
552
553PyMethod_New:PyObject*::+1:
554PyMethod_New:PyObject*:func:0:
555PyMethod_New:PyObject*:self:0:
556PyMethod_New:PyObject*:class:0:
557
558PyMethod_Self:PyObject*::0:
559PyMethod_Self:PyObject*:im:0:
560
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000561PyModule_GetDict:PyObject*::0:
562PyModule_GetDict::PyObject* module:0:
563
564PyModule_GetFilename:char*:::
565PyModule_GetFilename:PyObject*:module:0:
566
567PyModule_GetName:char*:::
568PyModule_GetName:PyObject*:module:0:
569
570PyModule_New:PyObject*::+1:
571PyModule_New::char* name::
572
573PyNumber_Absolute:PyObject*::+1:
574PyNumber_Absolute:PyObject*:o:0:
575
576PyNumber_Add:PyObject*::+1:
577PyNumber_Add:PyObject*:o1:0:
578PyNumber_Add:PyObject*:o2:0:
579
580PyNumber_And:PyObject*::+1:
581PyNumber_And:PyObject*:o1:0:
582PyNumber_And:PyObject*:o2:0:
583
584PyNumber_Check:PyObject*:o:0:
585PyNumber_Check:int:::
586
587PyNumber_Coerce:int:::
588PyNumber_Coerce:PyObject**:p1:+1:
589PyNumber_Coerce:PyObject**:p2:+1:
590
591PyNumber_Divide:PyObject*::+1:
592PyNumber_Divide:PyObject*:o1:0:
593PyNumber_Divide:PyObject*:o2:0:
594
595PyNumber_Divmod:PyObject*::+1:
596PyNumber_Divmod:PyObject*:o1:0:
597PyNumber_Divmod:PyObject*:o2:0:
598
599PyNumber_Float:PyObject*::+1:
600PyNumber_Float:PyObject*:o:0:
601
Fred Drake03590c62001-08-08 18:50:18 +0000602PyNumber_FloorDivide:PyObject*::+1:
603PyNumber_FloorDivide:PyObject*:v:0:
604PyNumber_FloorDivide:PyObject*:w:0:
605
Fred Drake1fa93652000-09-22 18:19:37 +0000606PyNumber_InPlaceAdd:PyObject*::+1:
607PyNumber_InPlaceAdd:PyObject*:v:0:
608PyNumber_InPlaceAdd:PyObject*:w:0:
609
610PyNumber_InPlaceAnd:PyObject*::+1:
611PyNumber_InPlaceAnd:PyObject*:v:0:
612PyNumber_InPlaceAnd:PyObject*:w:0:
613
614PyNumber_InPlaceDivide:PyObject*::+1:
615PyNumber_InPlaceDivide:PyObject*:v:0:
616PyNumber_InPlaceDivide:PyObject*:w:0:
617
Fred Drake03590c62001-08-08 18:50:18 +0000618PyNumber_InPlaceFloorDivide:PyObject*::+1:
619PyNumber_InPlaceFloorDivide:PyObject*:v:0:
620PyNumber_InPlaceFloorDivide:PyObject*:w:0:
621
Fred Drake1fa93652000-09-22 18:19:37 +0000622PyNumber_InPlaceLshift:PyObject*::+1:
623PyNumber_InPlaceLshift:PyObject*:v:0:
624PyNumber_InPlaceLshift:PyObject*:w:0:
625
626PyNumber_InPlaceMultiply:PyObject*::+1:
627PyNumber_InPlaceMultiply:PyObject*:v:0:
628PyNumber_InPlaceMultiply:PyObject*:w:0:
629
630PyNumber_InPlaceOr:PyObject*::+1:
631PyNumber_InPlaceOr:PyObject*:v:0:
632PyNumber_InPlaceOr:PyObject*:w:0:
633
634PyNumber_InPlacePower:PyObject*::+1:
635PyNumber_InPlacePower:PyObject*:v:0:
636PyNumber_InPlacePower:PyObject*:w:0:
637PyNumber_InPlacePower:PyObject*:z:0:
638
639PyNumber_InPlaceRemainder:PyObject*::+1:
640PyNumber_InPlaceRemainder:PyObject*:v:0:
641PyNumber_InPlaceRemainder:PyObject*:w:0:
642
643PyNumber_InPlaceRshift:PyObject*::+1:
644PyNumber_InPlaceRshift:PyObject*:v:0:
645PyNumber_InPlaceRshift:PyObject*:w:0:
646
647PyNumber_InPlaceSubtract:PyObject*::+1:
648PyNumber_InPlaceSubtract:PyObject*:v:0:
649PyNumber_InPlaceSubtract:PyObject*:w:0:
650
Fred Drake03590c62001-08-08 18:50:18 +0000651PyNumber_InPlaceTrueDivide:PyObject*::+1:
652PyNumber_InPlaceTrueDivide:PyObject*:v:0:
653PyNumber_InPlaceTrueDivide:PyObject*:w:0:
654
Fred Drake1fa93652000-09-22 18:19:37 +0000655PyNumber_InPlaceXor:PyObject*::+1:
656PyNumber_InPlaceXor:PyObject*:v:0:
657PyNumber_InPlaceXor:PyObject*:w:0:
658
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000659PyNumber_Int:PyObject*::+1:
660PyNumber_Int:PyObject*:o:0:
661
662PyNumber_Invert:PyObject*::+1:
663PyNumber_Invert:PyObject*:o:0:
664
665PyNumber_Long:PyObject*::+1:
666PyNumber_Long:PyObject*:o:0:
667
668PyNumber_Lshift:PyObject*::+1:
669PyNumber_Lshift:PyObject*:o1:0:
670PyNumber_Lshift:PyObject*:o2:0:
671
672PyNumber_Multiply:PyObject*::+1:
673PyNumber_Multiply:PyObject*:o1:0:
674PyNumber_Multiply:PyObject*:o2:0:
675
676PyNumber_Negative:PyObject*::+1:
677PyNumber_Negative:PyObject*:o:0:
678
679PyNumber_Or:PyObject*::+1:
680PyNumber_Or:PyObject*:o1:0:
681PyNumber_Or:PyObject*:o2:0:
682
683PyNumber_Positive:PyObject*::+1:
684PyNumber_Positive:PyObject*:o:0:
685
686PyNumber_Power:PyObject*::+1:
687PyNumber_Power:PyObject*:o1:0:
688PyNumber_Power:PyObject*:o2:0:
689PyNumber_Power:PyObject*:o3:0:
690
691PyNumber_Remainder:PyObject*::+1:
692PyNumber_Remainder:PyObject*:o1:0:
693PyNumber_Remainder:PyObject*:o2:0:
694
695PyNumber_Rshift:PyObject*::+1:
696PyNumber_Rshift:PyObject*:o1:0:
697PyNumber_Rshift:PyObject*:o2:0:
698
699PyNumber_Subtract:PyObject*::+1:
700PyNumber_Subtract:PyObject*:o1:0:
701PyNumber_Subtract:PyObject*:o2:0:
702
Fred Drake03590c62001-08-08 18:50:18 +0000703PyNumber_TrueDivide:PyObject*::+1:
704PyNumber_TrueDivide:PyObject*:v:0:
705PyNumber_TrueDivide:PyObject*:w:0:
706
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000707PyNumber_Xor:PyObject*::+1:
708PyNumber_Xor:PyObject*:o1:0:
709PyNumber_Xor:PyObject*:o2:0:
710
711PyOS_GetLastModificationTime:long:::
712PyOS_GetLastModificationTime:char*:filename::
713
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000714PyObject_AsFileDescriptor:int:::
715PyObject_AsFileDescriptor:PyObject*:o:0:
716
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000717PyObject_CallFunction:PyObject*::+1:
718PyObject_CallFunction:PyObject*:callable_object:0:
719PyObject_CallFunction:char*:format::
720PyObject_CallFunction::...::
721
722PyObject_CallMethod:PyObject*::+1:
723PyObject_CallMethod:PyObject*:o:0:
724PyObject_CallMethod:char*:m::
725PyObject_CallMethod:char*:format::
726PyObject_CallMethod::...::
727
728PyObject_CallObject:PyObject*::+1:
729PyObject_CallObject:PyObject*:callable_object:0:
730PyObject_CallObject:PyObject*:args:0:
731
732PyObject_Cmp:int:::
733PyObject_Cmp:PyObject*:o1:0:
734PyObject_Cmp:PyObject*:o2:0:
735PyObject_Cmp:int*:result::
736
737PyObject_Compare:int:::
738PyObject_Compare:PyObject*:o1:0:
739PyObject_Compare:PyObject*:o2:0:
740
741PyObject_DelAttr:int:::
742PyObject_DelAttr:PyObject*:o:0:
743PyObject_DelAttr:PyObject*:attr_name:0:
744
745PyObject_DelAttrString:int:::
746PyObject_DelAttrString:PyObject*:o:0:
747PyObject_DelAttrString:char*:attr_name::
748
749PyObject_DelItem:int:::
750PyObject_DelItem:PyObject*:o:0:
751PyObject_DelItem:PyObject*:key:0:
752
Fred Drake9c75ff72001-09-06 18:06:46 +0000753PyObject_Dir:PyObject*::+1:
754PyObject_Dir:PyObject*:o:0:
755
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000756PyObject_GetAttr:PyObject*::+1:
757PyObject_GetAttr:PyObject*:o:0:
758PyObject_GetAttr:PyObject*:attr_name:0:
759
760PyObject_GetAttrString:PyObject*::+1:
761PyObject_GetAttrString:PyObject*:o:0:
762PyObject_GetAttrString:char*:attr_name::
763
764PyObject_GetItem:PyObject*::+1:
765PyObject_GetItem:PyObject*:o:0:
766PyObject_GetItem:PyObject*:key:0:
767
768PyObject_HasAttr:int:::
769PyObject_HasAttr:PyObject*:o:0:
770PyObject_HasAttr:PyObject*:attr_name:0:
771
772PyObject_HasAttrString:int:::
773PyObject_HasAttrString:PyObject*:o:0:
774PyObject_HasAttrString:char*:attr_name:0:
775
776PyObject_Hash:int:::
777PyObject_Hash:PyObject*:o:0:
778
779PyObject_IsTrue:int:::
780PyObject_IsTrue:PyObject*:o:0:
781
Fred Drakef913e542000-09-12 20:17:17 +0000782PyObject_Init:PyObject*::0:
783PyObject_Init:PyObject*:op:0:
784
785PyObject_InitVar:PyVarObject*::0:
786PyObject_InitVar:PyVarObject*:op:0:
787
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000788PyObject_Length:int:::
789PyObject_Length:PyObject*:o:0:
790
Fred Drake8e0c09d2001-07-06 23:31:49 +0000791PyObject_NEW:PyObject*::+1:
792
793PyObject_New:PyObject*::+1:
794
795PyObject_NEW_VAR:PyObject*::+1:
796
797PyObject_NewVar:PyObject*::+1:
798
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000799PyObject_Print:int:::
800PyObject_Print:PyObject*:o:0:
801PyObject_Print:FILE*:fp::
802PyObject_Print:int:flags::
803
804PyObject_Repr:PyObject*::+1:
805PyObject_Repr:PyObject*:o:0:
806
807PyObject_SetAttr:int:::
808PyObject_SetAttr:PyObject*:o:0:
809PyObject_SetAttr:PyObject*:attr_name:0:
810PyObject_SetAttr:PyObject*:v:+1:
811
812PyObject_SetAttrString:int:::
813PyObject_SetAttrString:PyObject*:o:0:
814PyObject_SetAttrString:char*:attr_name::
815PyObject_SetAttrString:PyObject*:v:+1:
816
817PyObject_SetItem:int:::
818PyObject_SetItem:PyObject*:o:0:
819PyObject_SetItem:PyObject*:key:0:
820PyObject_SetItem:PyObject*:v:+1:
821
822PyObject_Str:PyObject*::+1:
823PyObject_Str:PyObject*:o:0:
824
825PyObject_Type:PyObject*::+1:
826PyObject_Type:PyObject*:o:0:
827
Fred Drakeb2625eb2001-05-29 15:34:06 +0000828PyObject_Unicode:PyObject*::+1:
829PyObject_Unicode:PyObject*:o:0:
830
Fred Drake805bf1b1999-10-20 16:03:38 +0000831PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000832PyParser_SimpleParseFile:FILE*:fp::
833PyParser_SimpleParseFile:char*:filename::
834PyParser_SimpleParseFile:int:start::
835
Fred Drake805bf1b1999-10-20 16:03:38 +0000836PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000837PyParser_SimpleParseString:char*:str::
838PyParser_SimpleParseString:int:start::
839
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000840PyRun_AnyFile:int:::
841PyRun_AnyFile:FILE*:fp::
842PyRun_AnyFile:char*:filename::
843
Fred Drake4ca744c2000-08-12 03:39:47 +0000844PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000845PyRun_File:FILE*:fp::
846PyRun_File:char*:filename::
847PyRun_File:int:start::
848PyRun_File:PyObject*:globals:0:
849PyRun_File:PyObject*:locals:0:
850
851PyRun_InteractiveLoop:int:::
852PyRun_InteractiveLoop:FILE*:fp::
853PyRun_InteractiveLoop:char*:filename::
854
855PyRun_InteractiveOne:int:::
856PyRun_InteractiveOne:FILE*:fp::
857PyRun_InteractiveOne:char*:filename::
858
859PyRun_SimpleFile:int:::
860PyRun_SimpleFile:FILE*:fp::
861PyRun_SimpleFile:char*:filename::
862
863PyRun_SimpleString:int:::
864PyRun_SimpleString:char*:command::
865
Fred Drake4ca744c2000-08-12 03:39:47 +0000866PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000867PyRun_String:char*:str::
868PyRun_String:int:start::
869PyRun_String:PyObject*:globals:0:
870PyRun_String:PyObject*:locals:0:
871
Fred Draked61d0d32001-09-23 02:05:26 +0000872PySeqIter_New:PyObject*::+1:
873PySeqIter_New:PyObject*:seq::
874
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000875PySequence_Check:int:::
876PySequence_Check:PyObject*:o:0:
877
878PySequence_Concat:PyObject*::+1:
879PySequence_Concat:PyObject*:o1:0:
880PySequence_Concat:PyObject*:o2:0:
881
882PySequence_Count:int:::
883PySequence_Count:PyObject*:o:0:
884PySequence_Count:PyObject*:value:0:
885
886PySequence_DelItem:int:::
887PySequence_DelItem:PyObject*:o:0:
888PySequence_DelItem:int:i::
889
890PySequence_DelSlice:int:::
891PySequence_DelSlice:PyObject*:o:0:
892PySequence_DelSlice:int:i1::
893PySequence_DelSlice:int:i2::
894
Fred Drake81cccb72000-09-12 15:22:05 +0000895PySequence_Fast:PyObject*::+1:
896PySequence_Fast:PyObject*:v:0:
897PySequence_Fast:const char*:m::
898
899PySequence_Fast_GET_ITEM:PyObject*::0:
900PySequence_Fast_GET_ITEM:PyObject*:o:0:
901PySequence_Fast_GET_ITEM:int:i::
902
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000903PySequence_GetItem:PyObject*::+1:
904PySequence_GetItem:PyObject*:o:0:
905PySequence_GetItem:int:i::
906
907PySequence_GetSlice:PyObject*::+1:
908PySequence_GetSlice:PyObject*:o:0:
909PySequence_GetSlice:int:i1::
910PySequence_GetSlice:int:i2::
911
912PySequence_In:int:::
913PySequence_In:PyObject*:o:0:
914PySequence_In:PyObject*:value:0:
915
916PySequence_Index:int:::
917PySequence_Index:PyObject*:o:0:
918PySequence_Index:PyObject*:value:0:
919
Fred Drake1fa93652000-09-22 18:19:37 +0000920PySequence_InPlaceConcat:PyObject*::+1:
921PySequence_InPlaceConcat:PyObject*:s:0:
922PySequence_InPlaceConcat:PyObject*:o:0:
923
924PySequence_InPlaceRepeat:PyObject*::+1:
925PySequence_InPlaceRepeat:PyObject*:s:0:
926PySequence_InPlaceRepeat:PyObject*:o:0:
927
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000928PySequence_Repeat:PyObject*::+1:
929PySequence_Repeat:PyObject*:o:0:
930PySequence_Repeat:int:count::
931
932PySequence_SetItem:int:::
933PySequence_SetItem:PyObject*:o:0:
934PySequence_SetItem:int:i::
935PySequence_SetItem:PyObject*:v:+1:
936
937PySequence_SetSlice:int:::
938PySequence_SetSlice:PyObject*:o:0:
939PySequence_SetSlice:int:i1::
940PySequence_SetSlice:int:i2::
941PySequence_SetSlice:PyObject*:v:+1:
942
Fred Drake1c2d06a2000-06-16 20:00:04 +0000943PySequence_List:PyObject*::+1:
944PySequence_List:PyObject*:o:0:
945
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000946PySequence_Tuple:PyObject*::+1:
947PySequence_Tuple:PyObject*:o:0:
948
Fred Drake23a78cf2001-09-24 15:29:47 +0000949PySlice_Check:int:::
950PySlice_Check:PyObject*:ob:0:
951
952PySlice_New:PyObject*::+1:
953PySlice_New:PyObject*:start:0:
954PySlice_New:PyObject*:stop:0:
955PySlice_New:PyObject*:step:0:
956
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000957PyString_AS_STRING:char*:::
958PyString_AS_STRING:PyObject*:string:0:
959
Fred Drakeb2625eb2001-05-29 15:34:06 +0000960PyString_AsDecodedObject:PyObject*::+1:
961PyString_AsDecodedObject:PyObject*:str:0:
962PyString_AsDecodedObject:const char*:encoding::
963PyString_AsDecodedObject:const char*:errors::
964
965PyString_AsEncodedObject:PyObject*::+1:
966PyString_AsEncodedObject:PyObject*:str:0:
967PyString_AsEncodedObject:const char*:encoding::
968PyString_AsEncodedObject:const char*:errors::
969
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000970PyString_AsString:char*:::
971PyString_AsString:PyObject*:string:0:
972
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +0000973PyString_AsStringAndSize:int:::
974PyString_AsStringAndSize:PyObject*:obj:0:
975PyString_AsStringAndSize:char**:buffer::
976PyString_AsStringAndSize:int*:length::
977
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000978PyString_Check:int:::
979PyString_Check:PyObject*:o:0:
980
981PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000982PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000983PyString_Concat:PyObject*:newpart:0:
984
985PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000986PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000987PyString_ConcatAndDel:PyObject*:newpart:-1:
988
989PyString_Format:PyObject*::+1:
990PyString_Format:PyObject*:format:0:
991PyString_Format:PyObject*:args:0:
992
993PyString_FromString:PyObject*::+1:
994PyString_FromString:const char*:v::
995
996PyString_FromStringAndSize:PyObject*::+1:
997PyString_FromStringAndSize:const char*:v::
998PyString_FromStringAndSize:int:len::
999
Barry Warsaw8c64a542001-08-28 02:32:04 +00001000PyString_FromFormat:PyObject*::+1:
1001PyString_FromFormat:const char*:format::
1002PyString_FromFormat::...::
1003
1004PyString_FromFormatV:PyObject*::+1:
1005PyString_FromFormatV:const char*:format::
1006PyString_FromFormatV:va_list:vargs::
1007
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001008PyString_GET_SIZE:int:::
1009PyString_GET_SIZE:PyObject*:string:0:
1010
1011PyString_InternFromString:PyObject*::+1:
1012PyString_InternFromString:const char*:v::
1013
1014PyString_InternInPlace:void:::
1015PyString_InternInPlace:PyObject**:string:+1:???
1016
1017PyString_Size:int:::
1018PyString_Size:PyObject*:string:0:
1019
Marc-André Lemburg47073202000-07-07 15:48:54 +00001020PyString_Decode:PyObject*::+1:
1021PyString_Decode:const char*:s::
1022PyString_Decode:int:size::
1023PyString_Decode:const char*:encoding::
1024PyString_Decode:const char*:errors::
1025
1026PyString_Encode:PyObject*::+1:
1027PyString_Encode:const char*:s::
1028PyString_Encode:int:size::
1029PyString_Encode:const char*:encoding::
1030PyString_Encode:const char*:errors::
1031
1032PyString_AsEncodedString:PyObject*::+1:
1033PyString_AsEncodedString:PyObject*:str::
1034PyString_AsEncodedString:const char*:encoding::
1035PyString_AsEncodedString:const char*:errors::
1036
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001037PySys_SetArgv:int:::
1038PySys_SetArgv:int:argc::
1039PySys_SetArgv:char**:argv::
1040
1041PyThreadState_Clear:void:::
1042PyThreadState_Clear:PyThreadState*:tstate::
1043
1044PyThreadState_Delete:void:::
1045PyThreadState_Delete:PyThreadState*:tstate::
1046
1047PyThreadState_Get:PyThreadState*:::
1048
Fred Drakeb2625eb2001-05-29 15:34:06 +00001049PyThreadState_GetDict:PyObject*::0:
1050
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001051PyThreadState_New:PyThreadState*:::
1052PyThreadState_New:PyInterpreterState*:interp::
1053
1054PyThreadState_Swap:PyThreadState*:::
1055PyThreadState_Swap:PyThreadState*:tstate::
1056
1057PyTuple_Check:int:::
1058PyTuple_Check:PyObject*:p:0:
1059
1060PyTuple_GET_ITEM:PyObject*::0:
1061PyTuple_GET_ITEM:PyTupleObject*:p:0:
1062PyTuple_GET_ITEM:int:pos::
1063
1064PyTuple_GetItem:PyObject*::0:
1065PyTuple_GetItem:PyTupleObject*:p:0:
1066PyTuple_GetItem:int:pos::
1067
1068PyTuple_GetSlice:PyObject*::+1:
1069PyTuple_GetSlice:PyTupleObject*:p:0:
1070PyTuple_GetSlice:int:low::
1071PyTuple_GetSlice:int:high::
1072
1073PyTuple_New:PyObject*::+1:
1074PyTuple_New:int:len::
1075
1076PyTuple_SET_ITEM:void:::
1077PyTuple_SET_ITEM:PyTupleObject*:p:0:
1078PyTuple_SET_ITEM:int:pos::
1079PyTuple_SET_ITEM:PyObject*:o:0:
1080
1081PyTuple_SetItem:int:::
1082PyTuple_SetItem:PyTupleObject*:p:0:
1083PyTuple_SetItem:int:pos::
1084PyTuple_SetItem:PyObject*:o:0:
1085
1086PyTuple_Size:int:::
1087PyTuple_Size:PyTupleObject*:p:0:
1088
Fred Drake992fe5a2000-06-16 21:04:15 +00001089PyUnicode_Check:int:::
1090PyUnicode_Check:PyObject*:o:0:
1091
1092PyUnicode_GET_SIZE:int:::
1093PyUnicode_GET_SIZE:PyObject*:o:0:
1094
1095PyUnicode_GET_DATA_SIZE:int:::
1096PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1097
1098PyUnicode_AS_UNICODE:Py_UNICODE*:::
1099PyUnicode_AS_UNICODE:PyObject*:o:0:
1100
1101PyUnicode_AS_DATA:const char*:::
1102PyUnicode_AS_DATA:PyObject*:o:0:
1103
1104Py_UNICODE_ISSPACE:int:::
1105Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1106
1107Py_UNICODE_ISLOWER:int:::
1108Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1109
1110Py_UNICODE_ISUPPER:int:::
1111Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1112
1113Py_UNICODE_ISTITLE:int:::
1114Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1115
1116Py_UNICODE_ISLINEBREAK:int:::
1117Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1118
1119Py_UNICODE_ISDECIMAL:int:::
1120Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1121
1122Py_UNICODE_ISDIGIT:int:::
1123Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1124
1125Py_UNICODE_ISNUMERIC:int:::
1126Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1127
1128Py_UNICODE_TOLOWER:Py_UNICODE:::
1129Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1130
1131Py_UNICODE_TOUPPER:Py_UNICODE:::
1132Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1133
1134Py_UNICODE_TOTITLE:Py_UNICODE:::
1135Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1136
1137Py_UNICODE_TODECIMAL:int:::
1138Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1139
1140Py_UNICODE_TODIGIT:int:::
1141Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1142
1143Py_UNICODE_TONUMERIC:double:::
1144Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1145
1146PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001147PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001148PyUnicode_FromUnicode:int:size::
1149
1150PyUnicode_AsUnicode:Py_UNICODE*:::
1151PyUnicode_AsUnicode:PyObject :*unicode:0:
1152
1153PyUnicode_GetSize:int:::
1154PyUnicode_GetSize:PyObject :*unicode:0:
1155
1156PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001157PyUnicode_FromObject:PyObject*:*obj:0:
1158
1159PyUnicode_FromEncodedObject:PyObject*::+1:
1160PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1161PyUnicode_FromEncodedObject:const char*:encoding::
1162PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001163
1164PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001165PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001166PyUnicode_FromWideChar:int:size::
1167
1168PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001169PyUnicode_AsWideChar:PyObject*:*unicode:0:
1170PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001171PyUnicode_AsWideChar:int:size::
1172
1173PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001174PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001175PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001176PyUnicode_Decode:const char*:encoding::
1177PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001178
1179PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001180PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001181PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001182PyUnicode_Encode:const char*:encoding::
1183PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001184
1185PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001186PyUnicode_AsEncodedString:PyObject*:unicode::
1187PyUnicode_AsEncodedString:const char*:encoding::
1188PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001189
1190PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001191PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001192PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001193PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001194
1195PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001196PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001197PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001198PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001199
1200PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001201PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001202
1203PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001204PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001205PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001206PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001207PyUnicode_DecodeUTF16:int*:byteorder::
1208
1209PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001210PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001211PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001212PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001213PyUnicode_EncodeUTF16:int:byteorder::
1214
1215PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001216PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001217
1218PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001219PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001220PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001221PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001222
1223PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001224PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001225PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001226PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001227
1228PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001229PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001230
1231PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001232PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001233PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001234PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001235
1236PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001237PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001238PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001239PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001240
1241PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001242PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001243
1244PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001245PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001246PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001247PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001248
1249PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001250PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001251PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001252PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001253
1254PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001255PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001256
1257PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001258PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001259PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001260PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001261
1262PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001263PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001264PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001265PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001266
1267PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001268PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001269
1270PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001271PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001272PyUnicode_DecodeCharmap:int:size::
1273PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001274PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001275
1276PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001277PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001278PyUnicode_EncodeCharmap:int:size::
1279PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001280PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001281
1282PyUnicode_AsCharmapString:PyObject*::+1:
1283PyUnicode_AsCharmapString:PyObject*:unicode:0:
1284PyUnicode_AsCharmapString:PyObject*:mapping:0:
1285
1286PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001287PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001288PyUnicode_TranslateCharmap:int:size::
1289PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001290PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001291
1292PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001293PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001294PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001295PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001296
1297PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001298PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001299PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001300PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001301
1302PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001303PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001304
1305PyUnicode_Concat:PyObject*::+1:
1306PyUnicode_Concat:PyObject*:left:0:
1307PyUnicode_Concat:PyObject*:right:0:
1308
1309PyUnicode_Split:PyObject*::+1:
1310PyUnicode_Split:PyObject*:left:0:
1311PyUnicode_Split:PyObject*:right:0:
1312PyUnicode_Split:int:maxsplit::
1313
1314PyUnicode_Splitlines:PyObject*::+1:
1315PyUnicode_Splitlines:PyObject*:s:0:
1316PyUnicode_Splitlines:int:maxsplit::
1317
1318PyUnicode_Translate:PyObject*::+1:
1319PyUnicode_Translate:PyObject*:str:0:
1320PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001321PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001322
1323PyUnicode_Join:PyObject*::+1:
1324PyUnicode_Join:PyObject*:separator:0:
1325PyUnicode_Join:PyObject*:seq:0:
1326
1327PyUnicode_Tailmatch:PyObject*::+1:
1328PyUnicode_Tailmatch:PyObject*:str:0:
1329PyUnicode_Tailmatch:PyObject*:substr:0:
1330PyUnicode_Tailmatch:int:start::
1331PyUnicode_Tailmatch:int:end::
1332PyUnicode_Tailmatch:int:direction::
1333
1334PyUnicode_Find:PyObject*::+1:
1335PyUnicode_Find:PyObject*:str:0:
1336PyUnicode_Find:PyObject*:substr:0:
1337PyUnicode_Find:int:start::
1338PyUnicode_Find:int:end::
1339PyUnicode_Find:int:direction::
1340
1341PyUnicode_Count:PyObject*::+1:
1342PyUnicode_Count:PyObject*:str:0:
1343PyUnicode_Count:PyObject*:substr:0:
1344PyUnicode_Count:int:start::
1345PyUnicode_Count:int:end::
1346
1347PyUnicode_Replace:PyObject*::+1:
1348PyUnicode_Replace:PyObject*:str:0:
1349PyUnicode_Replace:PyObject*:substr:0:
1350PyUnicode_Replace:PyObject*:replstr:0:
1351PyUnicode_Replace:int:maxcount::
1352
1353PyUnicode_Compare:int:::
1354PyUnicode_Compare:PyObject*:left:0:
1355PyUnicode_Compare:PyObject*:right:0:
1356
1357PyUnicode_Format:PyObject*::+1:
1358PyUnicode_Format:PyObject*:format:0:
1359PyUnicode_Format:PyObject*:args:0:
1360
1361PyUnicode_Contains:int:::
1362PyUnicode_Contains:PyObject*:container:0:
1363PyUnicode_Contains:PyObject*:element:0:
1364
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001365Py_AtExit:int:::
1366Py_AtExit:void (*)():func::
1367
Fred Drake6d988552001-07-20 20:55:31 +00001368Py_BuildValue:PyObject*::+1:
1369Py_BuildValue:char*:format::
1370
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001371Py_CompileString:PyObject*::+1:
1372Py_CompileString:char*:str::
1373Py_CompileString:char*:filename::
1374Py_CompileString:int:start::
1375
1376Py_DECREF:void:::
1377Py_DECREF:PyObject*:o:-1:
1378
1379Py_EndInterpreter:void:::
1380Py_EndInterpreter:PyThreadState*:tstate::
1381
1382Py_Exit:void:::
1383Py_Exit:int:status::
1384
1385Py_FatalError:void:::
1386Py_FatalError:char*:message::
1387
1388Py_FdIsInteractive:int:::
1389Py_FdIsInteractive:FILE*:fp::
1390Py_FdIsInteractive:char*:filename::
1391
1392Py_Finalize:void:::
1393
Fred Drake8520cc22000-04-10 19:38:24 +00001394Py_FindMethod:PyObject*::+1:
1395Py_FindMethod:PyMethodDef[]:methods::
1396Py_FindMethod:PyObject*:self:+1:
1397Py_FindMethod:char*:name::
1398
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001399Py_GetBuildInfoconst:char*:::
1400
1401Py_GetCompilerconst:char*:::
1402
1403Py_GetCopyrightconst:char*:::
1404
1405Py_GetExecPrefix:char*:::
1406
1407Py_GetPath:char*:::
1408
1409Py_GetPlatformconst:char*:::
1410
1411Py_GetPrefix:char*:::
1412
1413Py_GetProgramFullPath:char*:::
1414
1415Py_GetProgramName:char*:::
1416
1417Py_GetVersionconst:char*:::
1418
1419Py_INCREF:void:::
1420Py_INCREF:PyObject*:o:+1:
1421
1422Py_Initialize:void:::
1423
1424Py_IsInitialized:int:::
1425
1426Py_NewInterpreter:PyThreadState*:::
1427
1428Py_SetProgramName:void:::
1429Py_SetProgramName:char*:name::
1430
1431Py_XDECREF:void:::
1432Py_XDECREF:PyObject*:o:-1:if o is not NULL
1433
1434Py_XINCREF:void:::
1435Py_XINCREF:PyObject*:o:+1:if o is not NULL
1436
1437_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1438_PyImport_FindExtension:char*:::
1439_PyImport_FindExtension:char*:::
1440
1441_PyImport_Fini:void:::
1442
1443_PyImport_FixupExtension:PyObject*:::???
1444_PyImport_FixupExtension:char*:::
1445_PyImport_FixupExtension:char*:::
1446
1447_PyImport_Init:void:::
1448
Fred Drakef913e542000-09-12 20:17:17 +00001449_PyObject_Del:void:::
1450_PyObject_Del:PyObject*:op:0:
1451
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001452_PyObject_New:PyObject*::+1:
1453_PyObject_New:PyTypeObject*:type:0:
1454
Fred Drake8e0c09d2001-07-06 23:31:49 +00001455_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001456_PyObject_NewVar:PyTypeObject*:type:0:
1457_PyObject_NewVar:int:size::
1458
1459_PyString_Resize:int:::
1460_PyString_Resize:PyObject**:string:+1:
1461_PyString_Resize:int:newsize::
1462
1463_PyTuple_Resize:int:::
1464_PyTuple_Resize:PyTupleObject**:p:+1:
1465_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001466
1467_Py_c_diff:Py_complex:::
1468_Py_c_diff:Py_complex:left::
1469_Py_c_diff:Py_complex:right::
1470
1471_Py_c_neg:Py_complex:::
1472_Py_c_neg:Py_complex:complex::
1473
1474_Py_c_pow:Py_complex:::
1475_Py_c_pow:Py_complex:num::
1476_Py_c_pow:Py_complex:exp::
1477
1478_Py_c_prod:Py_complex:::
1479_Py_c_prod:Py_complex:left::
1480_Py_c_prod:Py_complex:right::
1481
1482_Py_c_quot:Py_complex:::
1483_Py_c_quot:Py_complex:dividend::
1484_Py_c_quot:Py_complex:divisor::
1485
1486_Py_c_sum:Py_complex:::
1487_Py_c_sum:Py_complex:left::
1488_Py_c_sum:Py_complex:right::