blob: 019bfd4ef8362b27db166922fad8ff5b4162a23a [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
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000034PyBool_FromLong:PyObject*::+1:
35PyBool_FromLong:long:v:0:
36
Fred Drakeeb725cd2000-04-03 15:06:40 +000037PyBuffer_FromObject:PyObject*::+1:
38PyBuffer_FromObject:PyObject*:base:+1:
39PyBuffer_FromObject:int:offset::
40PyBuffer_FromObject:int:size::
41
42PyBuffer_FromReadWriteObject:PyObject*::+1:
43PyBuffer_FromReadWriteObject:PyObject*:base:+1:
44PyBuffer_FromReadWriteObject:int:offset::
45PyBuffer_FromReadWriteObject:int:size::
46
47PyBuffer_FromMemory:PyObject*::+1:
48PyBuffer_FromMemory:void*:ptr::
49PyBuffer_FromMemory:int:size::
50
51PyBuffer_FromReadWriteMemory:PyObject*::+1:
52PyBuffer_FromReadWriteMemory:void*:ptr::
53PyBuffer_FromReadWriteMemory:int:size::
54
55PyBuffer_New:PyObject*::+1:
56PyBuffer_New:int:size::
57
Fred Drake7b7dc6b1999-10-20 15:06:24 +000058PyCObject_AsVoidPtr:void*:::
59PyCObject_AsVoidPtr:PyObject*:self:0:
60
61PyCObject_FromVoidPtr:PyObject*::+1:
62PyCObject_FromVoidPtr:void*:cobj::
63PyCObject_FromVoidPtr::void (* destr)(void* )::
64
65PyCObject_FromVoidPtrAndDesc:PyObject*::+1:
66PyCObject_FromVoidPtrAndDesc:void*:cobj::
67PyCObject_FromVoidPtrAndDesc:void*:desc::
68PyCObject_FromVoidPtrAndDesc:void(*)(void*,void*):destr::
69
70PyCObject_GetDesc:void*:::
71PyCObject_GetDesc:PyObject*:self:0:
72
Fred Drakecd8474e2001-11-26 21:29:17 +000073PyCell_New:PyObject*::+1:
74PyCell_New:PyObject*:ob:0:
75
76PyCell_GET:PyObject*::0:
77PyCell_GET:PyObject*:ob:0:
78
79PyCell_Get:PyObject*::+1:
80PyCell_Get:PyObject*:cell:0:
81
82PyCell_SET:void:::
83PyCell_SET:PyObject*:cell:0:
84PyCell_SET:PyObject*:value:0:
85
86PyCell_Set:int:::
87PyCell_Set:PyObject*:cell:0:
88PyCell_Set:PyObject*:value:0:
89
Fred Draked61d0d32001-09-23 02:05:26 +000090PyCallIter_New:PyObject*::+1:
91PyCallIter_New:PyObject*:callable::
92PyCallIter_New:PyObject*:sentinel::
93
Fred Drake7b7dc6b1999-10-20 15:06:24 +000094PyCallable_Check:int:::
95PyCallable_Check:PyObject*:o:0:
96
97PyComplex_AsCComplex:Py_complex:::
98PyComplex_AsCComplex:PyObject*:op:0:
99
100PyComplex_Check:int:::
101PyComplex_Check:PyObject*:p:0:
102
103PyComplex_FromCComplex:PyObject*::+1:
104PyComplex_FromCComplex::Py_complex v::
105
106PyComplex_FromDoubles:PyObject*::+1:
107PyComplex_FromDoubles::double real::
108PyComplex_FromDoubles::double imag::
109
110PyComplex_ImagAsDouble:double:::
111PyComplex_ImagAsDouble:PyObject*:op:0:
112
113PyComplex_RealAsDouble:double:::
114PyComplex_RealAsDouble:PyObject*:op:0:
115
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000116PyDate_FromDate:PyObject*::+1:
117PyDate_FromDate:int:year::
118PyDate_FromDate:int:month::
119PyDate_FromDate:int:day::
120
121PyDate_FromTimestamp:PyObject*::+1:
122PyDate_FromTimestamp:PyObject*:args:0:
123
124PyDateTime_FromDateAndTime:PyObject*::+1:
125PyDateTime_FromDateAndTime:int:year::
126PyDateTime_FromDateAndTime:int:month::
127PyDateTime_FromDateAndTime:int:day::
128PyDateTime_FromDateAndTime:int:hour::
129PyDateTime_FromDateAndTime:int:minute::
130PyDateTime_FromDateAndTime:int:second::
131PyDateTime_FromDateAndTime:int:usecond::
132
133PyDateTime_FromTimestamp:PyObject*::+1:
134PyDateTime_FromTimestamp:PyObject*:args:0:
135
136PyDelta_FromDSU:PyObject*::+1:
137PyDelta_FromDSU:int:days::
138PyDelta_FromDSU:int:seconds::
139PyDelta_FromDSU:int:useconds::
140
141PyDescr_NewClassMethod:PyObject*::+1:
142PyDescr_NewClassMethod:PyTypeObject*:type::
143PyDescr_NewClassMethod:PyMethodDef*:method::
144
Fred Drake23a78cf2001-09-24 15:29:47 +0000145PyDescr_NewGetSet:PyObject*::+1:
146PyDescr_NewGetSet:PyTypeObject*:type::
147PyDescr_NewGetSet:PyGetSetDef*:getset::
148
149PyDescr_NewMember:PyObject*::+1:
150PyDescr_NewMember:PyTypeObject*:type::
151PyDescr_NewMember:PyMemberDef*:member::
152
153PyDescr_NewMethod:PyObject*::+1:
154PyDescr_NewMethod:PyTypeObject*:type::
155PyDescr_NewMethod:PyMethodDef*:meth::
156
157PyDescr_NewWrapper:PyObject*::+1:
158PyDescr_NewWrapper:PyTypeObject*:type::
159PyDescr_NewWrapper:struct wrapperbase*:base::
160PyDescr_NewWrapper:void*:wrapped::
161
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000162PyDict_Check:int:::
163PyDict_Check:PyObject*:p:0:
164
165PyDict_Clear:void:::
Fred Drake81473b12001-01-08 05:53:53 +0000166PyDict_Clear:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000167
168PyDict_DelItem:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000169PyDict_DelItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000170PyDict_DelItem:PyObject*:key:0:
171
172PyDict_DelItemString:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000173PyDict_DelItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000174PyDict_DelItemString:char*:key::
175
Fred Drake805bf1b1999-10-20 16:03:38 +0000176PyDict_GetItem:PyObject*::0:0
Fred Drake81473b12001-01-08 05:53:53 +0000177PyDict_GetItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000178PyDict_GetItem:PyObject*:key:0:
179
Fred Drake805bf1b1999-10-20 16:03:38 +0000180PyDict_GetItemString:PyObject*::0:
Fred Drake81473b12001-01-08 05:53:53 +0000181PyDict_GetItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000182PyDict_GetItemString:char*:key::
183
184PyDict_Items:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000185PyDict_Items:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000186
187PyDict_Keys:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000188PyDict_Keys:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000189
190PyDict_New:PyObject*::+1:
191
Jeremy Hyltona12c7a72000-03-30 22:27:31 +0000192PyDict_Copy:PyObject*::+1:
193PyDict_Copy:PyObject*:p:0:
194
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000195PyDict_Next:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000196PyDict_Next:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000197PyDict_Next:int:ppos::
198PyDict_Next:PyObject**:pkey:0:
199PyDict_Next:PyObject**:pvalue:0:
200
201PyDict_SetItem:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000202PyDict_SetItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000203PyDict_SetItem:PyObject*:key:+1:
204PyDict_SetItem:PyObject*:val:+1:
205
206PyDict_SetItemString:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000207PyDict_SetItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000208PyDict_SetItemString:char*:key::
209PyDict_SetItemString:PyObject*:val:+1:
210
211PyDict_Size:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000212PyDict_Size:PyObject*:p::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000213
214PyDict_Values:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000215PyDict_Values:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000216
Fred Drake23a78cf2001-09-24 15:29:47 +0000217PyDictProxy_New:PyObject*::+1:
218PyDictProxy_New:PyObject*:dict:0:
219
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000220PyErr_BadArgument:int:::
221
222PyErr_BadInternalCall:void:::
223
224PyErr_CheckSignals:int:::
225
226PyErr_Clear:void:::
227
228PyErr_ExceptionMatches:int:::
229PyErr_ExceptionMatches:PyObject*:exc:0:
230
231PyErr_Fetch:void:::
232PyErr_Fetch:PyObject**:ptype:0:
233PyErr_Fetch:PyObject**:pvalue:0:
234PyErr_Fetch:PyObject**:ptraceback:0:
235
236PyErr_GivenExceptionMatches:int:::
237PyErr_GivenExceptionMatches:PyObject*:given:0:
238PyErr_GivenExceptionMatches:PyObject*:exc:0:
239
240PyErr_NewException:PyObject*::+1:
241PyErr_NewException:char*:name::
242PyErr_NewException:PyObject*:base:0:
243PyErr_NewException:PyObject*:dict:0:
244
Fred Drakedb2764d2000-04-10 18:25:09 +0000245PyErr_NoMemory:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000246
247PyErr_NormalizeException:void:::
248PyErr_NormalizeException:PyObject**:exc::???
249PyErr_NormalizeException:PyObject**:val::???
250PyErr_NormalizeException:PyObject**:tb::???
251
252PyErr_Occurred:PyObject*::0:
253
254PyErr_Print:void:::
255
256PyErr_Restore:void:::
Fred Drake34c391d2000-08-15 04:36:16 +0000257PyErr_Restore:PyObject*:type:-1:
258PyErr_Restore:PyObject*:value:-1:
259PyErr_Restore:PyObject*:traceback:-1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000260
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000261PyErr_SetExcFromWindowsErr:PyObject*::null:
262PyErr_SetExcFromWindowsErr:PyObject*:type:0:
263PyErr_SetExcFromWindowsErr:int:ierr::
264
265PyErr_SetExcFromWindowsErrWithFilename:PyObject*::null:
266PyErr_SetExcFromWindowsErrWithFilename:PyObject*:type:0:
267PyErr_SetExcFromWindowsErrWithFilename:int:ierr::
268PyErr_SetExcFromWindowsErrWithFilename:char*:filename::
269
Fred Drakedb2764d2000-04-10 18:25:09 +0000270PyErr_SetFromErrno:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000271PyErr_SetFromErrno:PyObject*:type:0:
272
Fred Drake9c75ff72001-09-06 18:06:46 +0000273PyErr_SetFromErrnoWithFilename:PyObject*::null:
274PyErr_SetFromErrnoWithFilename:PyObject*:type:0:
275PyErr_SetFromErrnoWithFilename:char*:filename::
276
Fred Drake7c1bb9c2002-07-02 16:16:18 +0000277PyErr_SetFromWindowsErr:PyObject*::null:
278PyErr_SetFromWindowsErr:int:ierr::
279
280PyErr_SetFromWindowsErrWithFilename:PyObject*::null:
281PyErr_SetFromWindowsErrWithFilename:int:ierr::
282PyErr_SetFromWindowsErrWithFilename:char*:filename::
283
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000284PyErr_SetInterrupt:void:::
285
286PyErr_SetNone:void:::
287PyErr_SetNone:PyObject*:type:+1:
288
289PyErr_SetObject:void:::
290PyErr_SetObject:PyObject*:type:+1:
291PyErr_SetObject:PyObject*:value:+1:
292
293PyErr_SetString:void:::
294PyErr_SetString:PyObject*:type:+1:
295PyErr_SetString:char*:message::
296
Jeremy Hylton98605b52000-04-10 18:40:57 +0000297PyErr_Format:PyObject*::null:
298PyErr_Format:PyObject*:exception:+1:
299PyErr_Format:char*:format::
300PyErr_Format::...::
301
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000302PyErr_Warn:int:::
Guido van Rossume22e4b22000-12-19 03:58:11 +0000303PyErr_Warn:PyObject*:category:0:
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000304PyErr_Warn:char*:message::
305
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000306PyErr_WarnEx:int:::
307PyErr_WarnEx:PyObject*:category:0:
308PyErr_WarnEx:const char*:message::
309PyErr_WarnEx:Py_ssize_t:stack_level::
310
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000311PyEval_AcquireLock:void:::
312
313PyEval_AcquireThread:void:::
314PyEval_AcquireThread:PyThreadState*:tstate::
315
316PyEval_InitThreads:void:::
317
318PyEval_ReleaseLock:void:::
319
320PyEval_ReleaseThread:void:::
321PyEval_ReleaseThread:PyThreadState*:tstate::
322
323PyEval_RestoreThread:void:::
324PyEval_RestoreThread:PyThreadState*:tstate::
325
326PyEval_SaveThread:PyThreadState*:::
327
Fred Drake4ca744c2000-08-12 03:39:47 +0000328PyEval_EvalCode:PyObject*::+1:
329PyEval_EvalCode:PyCodeObject*:co:0:
330PyEval_EvalCode:PyObject*:globals:0:
331PyEval_EvalCode:PyObject*:locals:0:
332
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000333PyFile_AsFile:FILE*:::
334PyFile_AsFile:PyFileObject*:p:0:
335
336PyFile_Check:int:::
337PyFile_Check:PyObject*:p:0:
338
339PyFile_FromFile:PyObject*::+1:
340PyFile_FromFile:FILE*:fp::
341PyFile_FromFile:char*:name::
342PyFile_FromFile:char*:mode::
343PyFile_FromFile:int(*:close)::
344
345PyFile_FromString:PyObject*::+1:
346PyFile_FromString:char*:name::
347PyFile_FromString:char*:mode::
348
349PyFile_GetLine:PyObject*::+1:
350PyFile_GetLine:PyObject*:p::
351PyFile_GetLine:int:n::
352
353PyFile_Name:PyObject*::0:
354PyFile_Name:PyObject*:p:0:
355
356PyFile_SetBufSize:void:::
357PyFile_SetBufSize:PyFileObject*:p:0:
358PyFile_SetBufSize:int:n::
359
360PyFile_SoftSpace:int:::
361PyFile_SoftSpace:PyFileObject*:p:0:
362PyFile_SoftSpace:int:newflag::
363
364PyFile_WriteObject:int:::
365PyFile_WriteObject:PyObject*:obj:0:
366PyFile_WriteObject:PyFileObject*:p:0:
367PyFile_WriteObject:int:flags::
368
369PyFile_WriteString:int:::
Fred Drake454af892001-11-29 22:42:59 +0000370PyFile_WriteString:const char*:s::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000371PyFile_WriteString:PyFileObject*:p:0:
372PyFile_WriteString:int:flags::
373
374PyFloat_AS_DOUBLE:double:::
375PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
376
377PyFloat_AsDouble:double:::
378PyFloat_AsDouble:PyObject*:pyfloat:0:
379
380PyFloat_Check:int:::
381PyFloat_Check:PyObject*:p:0:
382
383PyFloat_FromDouble:PyObject*::+1:
384PyFloat_FromDouble:double:v::
385
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000386PyFloat_FromString:PyObject*::+1:
387PyFloat_FromString:PyObject*:str:0:
388PyFloat_FromString:char**:pend:0:ignored
389
390PyFrozenSet_New:PyObject*::+1:
391PyFrozenSet_New:PyObject*:iterable:0:
392
Georg Brandl9b743f52006-02-20 12:57:53 +0000393PyFunction_GetClosure:PyObject*::0:
394PyFunction_GetClosure:PyObject*:op:0:
395
396PyFunction_GetCode:PyObject*::0:
397PyFunction_GetCode:PyObject*:op:0:
398
399PyFunction_GetDefaults:PyObject*::0:
400PyFunction_GetDefaults:PyObject*:op:0:
401
402PyFunction_GetGlobals:PyObject*::0:
403PyFunction_GetGlobals:PyObject*:op:0:
404
405PyFunction_GetModule:PyObject*::0:
406PyFunction_GetModule:PyObject*:op:0:
407
408PyFunction_New:PyObject*::+1:
409PyFunction_New:PyObject*:code:+1:
410PyFunction_New:PyObject*:globals:+1:
411
412PyFunction_SetClosure:int:::
413PyFunction_SetClosure:PyObject*:op:0:
414PyFunction_SetClosure:PyObject*:closure:+1:
415
416PyFunction_SetDefaults:int:::
417PyFunction_SetDefaults:PyObject*:op:0:
418PyFunction_SetDefaults:PyObject*:defaults:+1:
419
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000420PyGen_New:PyObject*::+1:
421PyGen_New:PyFrameObject*:frame:0:
422
Fred Drakeee814bf2000-11-28 22:34:32 +0000423Py_InitModule:PyObject*::0:
Georg Brandl9b743f52006-02-20 12:57:53 +0000424Py_InitModule:char*:name::
425Py_InitModule:PyMethodDef[]:methods::
Fred Drakeee814bf2000-11-28 22:34:32 +0000426
427Py_InitModule3:PyObject*::0:
Georg Brandl9b743f52006-02-20 12:57:53 +0000428Py_InitModule3:char*:name::
429Py_InitModule3:PyMethodDef[]:methods::
430Py_InitModule3:char*:doc::
Fred Drakeee814bf2000-11-28 22:34:32 +0000431
432Py_InitModule4:PyObject*::0:
Georg Brandl9b743f52006-02-20 12:57:53 +0000433Py_InitModule4:char*:name::
434Py_InitModule4:PyMethodDef[]:methods::
435Py_InitModule4:char*:doc::
436Py_InitModule4:PyObject*:self::
437Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
Fred Drakeee814bf2000-11-28 22:34:32 +0000438
Fred Drake805bf1b1999-10-20 16:03:38 +0000439PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000440PyImport_AddModule:char*:name::
441
442PyImport_Cleanup:void:::
443
444PyImport_ExecCodeModule:PyObject*::+1:
445PyImport_ExecCodeModule:char*:name::
446PyImport_ExecCodeModule:PyObject*:co:0:
447
448PyImport_GetMagicNumber:long:::
449
450PyImport_GetModuleDict:PyObject*::0:
451
452PyImport_Import:PyObject*::+1:
453PyImport_Import:PyObject*:name:0:
454
455PyImport_ImportFrozenModule:int:::
456PyImport_ImportFrozenModule:char*:::
457
Fred Drakeeb725cd2000-04-03 15:06:40 +0000458PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000459PyImport_ImportModule:char*:name::
460
Fred Drakeeb725cd2000-04-03 15:06:40 +0000461PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000462PyImport_ImportModuleEx:char*:name::
463PyImport_ImportModuleEx:PyObject*:globals:0:???
464PyImport_ImportModuleEx:PyObject*:locals:0:???
465PyImport_ImportModuleEx:PyObject*:fromlist:0:???
466
Fred Drakeeb725cd2000-04-03 15:06:40 +0000467PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000468PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000469
Fred Drake5838d0f2001-01-28 06:39:35 +0000470PyInstance_New:PyObject*::+1:
471PyInstance_New:PyObject*:klass:+1:
472PyInstance_New:PyObject*:arg:0:
473PyInstance_New:PyObject*:kw:0:
474
475PyInstance_NewRaw:PyObject*::+1:
476PyInstance_NewRaw:PyObject*:klass:+1:
477PyInstance_NewRaw:PyObject*:dict:+1:
478
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000479PyInt_AS_LONG:long:::
480PyInt_AS_LONG:PyIntObject*:io:0:
481
482PyInt_AsLong:long:::
483PyInt_AsLong:PyObject*:io:0:
484
485PyInt_Check:int:::
Fred Drake9c75ff72001-09-06 18:06:46 +0000486PyInt_Check:PyObject*:op:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000487
488PyInt_FromLong:PyObject*::+1:
489PyInt_FromLong:long:ival::
490
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000491PyInt_FromString:PyObject*::+1:
492PyInt_FromString:char*:str:0:
493PyInt_FromString:char**:pend:0:
494PyInt_FromString:int:base:0:
495
496PyInt_FromSsize_t:PyObject*::+1:
497PyInt_FromSsize_t:Py_ssize_t:ival::
498
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000499PyInt_GetMax:long:::
500
501PyInterpreterState_Clear:void:::
502PyInterpreterState_Clear:PyInterpreterState*:interp::
503
504PyInterpreterState_Delete:void:::
505PyInterpreterState_Delete:PyInterpreterState*:interp::
506
507PyInterpreterState_New:PyInterpreterState*:::
508
Fred Drakeb2625eb2001-05-29 15:34:06 +0000509PyIter_Check:int:o:0:
510
511PyIter_Next:PyObject*::+1:
512PyIter_Next:PyObject*:o:0:
513
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000514PyList_Append:int:::
515PyList_Append:PyObject*:list:0:
516PyList_Append:PyObject*:item:+1:
517
518PyList_AsTuple:PyObject*::+1:
519PyList_AsTuple:PyObject*:list:0:
520
521PyList_Check:int:::
522PyList_Check:PyObject*:p:0:
523
524PyList_GET_ITEM:PyObject*::0:
525PyList_GET_ITEM:PyObject*:list:0:
526PyList_GET_ITEM:int:i:0:
527
528PyList_GET_SIZE:int:::
529PyList_GET_SIZE:PyObject*:list:0:
530
531PyList_GetItem:PyObject*::0:
532PyList_GetItem:PyObject*:list:0:
533PyList_GetItem:int:index::
534
535PyList_GetSlice:PyObject*::+1:
536PyList_GetSlice:PyObject*:list:0:
537PyList_GetSlice:int:low::
538PyList_GetSlice:int:high::
539
540PyList_Insert:int:::
541PyList_Insert:PyObject*:list:0:
542PyList_Insert:int:index::
543PyList_Insert:PyObject*:item:+1:
544
545PyList_New:PyObject*::+1:
546PyList_New:int:len::
547
548PyList_Reverse:int:::
549PyList_Reverse:PyObject*:list:0:
550
Fred Draked8548312001-07-10 16:19:13 +0000551PyList_SET_ITEM:void:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000552PyList_SET_ITEM:PyObject*:list:0:
553PyList_SET_ITEM:int:i::
554PyList_SET_ITEM:PyObject*:o:0:
555
556PyList_SetItem:int:::
557PyList_SetItem:PyObject*:list:0:
558PyList_SetItem:int:index::
559PyList_SetItem:PyObject*:item:0:
560
561PyList_SetSlice:int:::
562PyList_SetSlice:PyObject*:list:0:
563PyList_SetSlice:int:low::
564PyList_SetSlice:int:high::
565PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
566
567PyList_Size:int:::
568PyList_Size:PyObject*:list:0:
569
570PyList_Sort:int:::
571PyList_Sort:PyObject*:list:0:
572
573PyLong_AsDouble:double:::
574PyLong_AsDouble:PyObject*:pylong:0:
575
576PyLong_AsLong:long:::
577PyLong_AsLong:PyObject*:pylong:0:
578
579PyLong_AsUnsignedLong:unsigned long:::
580PyLong_AsUnsignedLong:PyObject*:pylong:0:
581
582PyLong_Check:int:::
583PyLong_Check:PyObject*:p:0:
584
585PyLong_FromDouble:PyObject*::+1:
586PyLong_FromDouble:double:v::
587
588PyLong_FromLong:PyObject*::+1:
589PyLong_FromLong:long:v::
590
Fred Drakef47d8ef2001-09-20 19:18:52 +0000591PyLong_FromLongLong:PyObject*::+1:
592PyLong_FromLongLong:long long:v::
593
594PyLong_FromUnsignedLongLong:PyObject*::+1:
595PyLong_FromUnsignedLongLong:unsigned long long:v::
596
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000597PyLong_FromString:PyObject*::+1:
598PyLong_FromString:char*:str::
599PyLong_FromString:char**:pend::
600PyLong_FromString:int:base::
601
Fred Drakef47d8ef2001-09-20 19:18:52 +0000602PyLong_FromUnicode:PyObject*::+1:
603PyLong_FromUnicode:Py_UNICODE:u::
604PyLong_FromUnicode:int:length::
605PyLong_FromUnicode:int:base::
606
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000607PyLong_FromUnsignedLong:PyObject*::+1:
608PyLong_FromUnsignedLong:unsignedlong:v::
609
Fred Drakef47d8ef2001-09-20 19:18:52 +0000610PyLong_FromVoidPtr:PyObject*::+1:
611PyLong_FromVoidPtr:void*:p::
612
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000613PyMapping_Check:int:::
614PyMapping_Check:PyObject*:o:0:
615
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000616PyMapping_DelItem:int:::
617PyMapping_DelItem:PyObject*:o:0:
618PyMapping_DelItem:PyObject*:key:0:
619
620PyMapping_DelItemString:int:::
621PyMapping_DelItemString:PyObject*:o:0:
622PyMapping_DelItemString:char*:key::
623
624PyMapping_GetItemString:PyObject*::+1:
625PyMapping_GetItemString:PyObject*:o:0:
626PyMapping_GetItemString:char*:key::
627
628PyMapping_HasKey:int:::
629PyMapping_HasKey:PyObject*:o:0:
630PyMapping_HasKey:PyObject*:key::
631
632PyMapping_HasKeyString:int:::
633PyMapping_HasKeyString:PyObject*:o:0:
634PyMapping_HasKeyString:char*:key::
635
636PyMapping_Items:PyObject*::+1:
637PyMapping_Items:PyObject*:o:0:
638
639PyMapping_Keys:PyObject*::+1:
640PyMapping_Keys:PyObject*:o:0:
641
642PyMapping_Length:int:::
643PyMapping_Length:PyObject*:o:0:
644
645PyMapping_SetItemString:int:::
646PyMapping_SetItemString:PyObject*:o:0:
647PyMapping_SetItemString:char*:key::
648PyMapping_SetItemString:PyObject*:v:+1:
649
650PyMapping_Values:PyObject*::+1:
651PyMapping_Values:PyObject*:o:0:
652
Fred Drake1b58bff2001-10-29 17:43:14 +0000653PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
654PyMarshal_ReadLastObjectFromFile:FILE*:file::
655
656PyMarshal_ReadObjectFromFile:PyObject*::+1:
657PyMarshal_ReadObjectFromFile:FILE*:file::
658
659PyMarshal_ReadObjectFromString:PyObject*::+1:
660PyMarshal_ReadObjectFromString:char*:string::
661PyMarshal_ReadObjectFromString:int:len::
662
663PyMarshal_WriteObjectToString:PyObject*::+1:
664PyMarshal_WriteObjectToString:PyObject*:value:0:
665
Fred Drake9c75ff72001-09-06 18:06:46 +0000666PyMethod_Class:PyObject*::0:
667PyMethod_Class:PyObject*:im:0:
668
669PyMethod_Function:PyObject*::0:
670PyMethod_Function:PyObject*:im:0:
671
672PyMethod_GET_CLASS:PyObject*::0:
673PyMethod_GET_CLASS:PyObject*:im:0:
674
675PyMethod_GET_FUNCTION:PyObject*::0:
676PyMethod_GET_FUNCTION:PyObject*:im:0:
677
678PyMethod_GET_SELF:PyObject*::0:
679PyMethod_GET_SELF:PyObject*:im:0:
680
681PyMethod_New:PyObject*::+1:
682PyMethod_New:PyObject*:func:0:
683PyMethod_New:PyObject*:self:0:
684PyMethod_New:PyObject*:class:0:
685
686PyMethod_Self:PyObject*::0:
687PyMethod_Self:PyObject*:im:0:
688
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000689PyModule_GetDict:PyObject*::0:
690PyModule_GetDict::PyObject* module:0:
691
692PyModule_GetFilename:char*:::
693PyModule_GetFilename:PyObject*:module:0:
694
695PyModule_GetName:char*:::
696PyModule_GetName:PyObject*:module:0:
697
698PyModule_New:PyObject*::+1:
699PyModule_New::char* name::
700
701PyNumber_Absolute:PyObject*::+1:
702PyNumber_Absolute:PyObject*:o:0:
703
704PyNumber_Add:PyObject*::+1:
705PyNumber_Add:PyObject*:o1:0:
706PyNumber_Add:PyObject*:o2:0:
707
708PyNumber_And:PyObject*::+1:
709PyNumber_And:PyObject*:o1:0:
710PyNumber_And:PyObject*:o2:0:
711
712PyNumber_Check:PyObject*:o:0:
713PyNumber_Check:int:::
714
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000715PyNumber_Divide:PyObject*::+1:
716PyNumber_Divide:PyObject*:o1:0:
717PyNumber_Divide:PyObject*:o2:0:
718
719PyNumber_Divmod:PyObject*::+1:
720PyNumber_Divmod:PyObject*:o1:0:
721PyNumber_Divmod:PyObject*:o2:0:
722
723PyNumber_Float:PyObject*::+1:
724PyNumber_Float:PyObject*:o:0:
725
Fred Drake03590c62001-08-08 18:50:18 +0000726PyNumber_FloorDivide:PyObject*::+1:
727PyNumber_FloorDivide:PyObject*:v:0:
728PyNumber_FloorDivide:PyObject*:w:0:
729
Fred Drake1fa93652000-09-22 18:19:37 +0000730PyNumber_InPlaceAdd:PyObject*::+1:
731PyNumber_InPlaceAdd:PyObject*:v:0:
732PyNumber_InPlaceAdd:PyObject*:w:0:
733
734PyNumber_InPlaceAnd:PyObject*::+1:
735PyNumber_InPlaceAnd:PyObject*:v:0:
736PyNumber_InPlaceAnd:PyObject*:w:0:
737
738PyNumber_InPlaceDivide:PyObject*::+1:
739PyNumber_InPlaceDivide:PyObject*:v:0:
740PyNumber_InPlaceDivide:PyObject*:w:0:
741
Fred Drake03590c62001-08-08 18:50:18 +0000742PyNumber_InPlaceFloorDivide:PyObject*::+1:
743PyNumber_InPlaceFloorDivide:PyObject*:v:0:
744PyNumber_InPlaceFloorDivide:PyObject*:w:0:
745
Fred Drake1fa93652000-09-22 18:19:37 +0000746PyNumber_InPlaceLshift:PyObject*::+1:
747PyNumber_InPlaceLshift:PyObject*:v:0:
748PyNumber_InPlaceLshift:PyObject*:w:0:
749
750PyNumber_InPlaceMultiply:PyObject*::+1:
751PyNumber_InPlaceMultiply:PyObject*:v:0:
752PyNumber_InPlaceMultiply:PyObject*:w:0:
753
754PyNumber_InPlaceOr:PyObject*::+1:
755PyNumber_InPlaceOr:PyObject*:v:0:
756PyNumber_InPlaceOr:PyObject*:w:0:
757
758PyNumber_InPlacePower:PyObject*::+1:
759PyNumber_InPlacePower:PyObject*:v:0:
760PyNumber_InPlacePower:PyObject*:w:0:
761PyNumber_InPlacePower:PyObject*:z:0:
762
763PyNumber_InPlaceRemainder:PyObject*::+1:
764PyNumber_InPlaceRemainder:PyObject*:v:0:
765PyNumber_InPlaceRemainder:PyObject*:w:0:
766
767PyNumber_InPlaceRshift:PyObject*::+1:
768PyNumber_InPlaceRshift:PyObject*:v:0:
769PyNumber_InPlaceRshift:PyObject*:w:0:
770
771PyNumber_InPlaceSubtract:PyObject*::+1:
772PyNumber_InPlaceSubtract:PyObject*:v:0:
773PyNumber_InPlaceSubtract:PyObject*:w:0:
774
Fred Drake03590c62001-08-08 18:50:18 +0000775PyNumber_InPlaceTrueDivide:PyObject*::+1:
776PyNumber_InPlaceTrueDivide:PyObject*:v:0:
777PyNumber_InPlaceTrueDivide:PyObject*:w:0:
778
Fred Drake1fa93652000-09-22 18:19:37 +0000779PyNumber_InPlaceXor:PyObject*::+1:
780PyNumber_InPlaceXor:PyObject*:v:0:
781PyNumber_InPlaceXor:PyObject*:w:0:
782
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000783PyNumber_Int:PyObject*::+1:
784PyNumber_Int:PyObject*:o:0:
785
786PyNumber_Invert:PyObject*::+1:
787PyNumber_Invert:PyObject*:o:0:
788
789PyNumber_Long:PyObject*::+1:
790PyNumber_Long:PyObject*:o:0:
791
792PyNumber_Lshift:PyObject*::+1:
793PyNumber_Lshift:PyObject*:o1:0:
794PyNumber_Lshift:PyObject*:o2:0:
795
796PyNumber_Multiply:PyObject*::+1:
797PyNumber_Multiply:PyObject*:o1:0:
798PyNumber_Multiply:PyObject*:o2:0:
799
800PyNumber_Negative:PyObject*::+1:
801PyNumber_Negative:PyObject*:o:0:
802
803PyNumber_Or:PyObject*::+1:
804PyNumber_Or:PyObject*:o1:0:
805PyNumber_Or:PyObject*:o2:0:
806
807PyNumber_Positive:PyObject*::+1:
808PyNumber_Positive:PyObject*:o:0:
809
810PyNumber_Power:PyObject*::+1:
811PyNumber_Power:PyObject*:o1:0:
812PyNumber_Power:PyObject*:o2:0:
813PyNumber_Power:PyObject*:o3:0:
814
815PyNumber_Remainder:PyObject*::+1:
816PyNumber_Remainder:PyObject*:o1:0:
817PyNumber_Remainder:PyObject*:o2:0:
818
819PyNumber_Rshift:PyObject*::+1:
820PyNumber_Rshift:PyObject*:o1:0:
821PyNumber_Rshift:PyObject*:o2:0:
822
823PyNumber_Subtract:PyObject*::+1:
824PyNumber_Subtract:PyObject*:o1:0:
825PyNumber_Subtract:PyObject*:o2:0:
826
Fred Drake03590c62001-08-08 18:50:18 +0000827PyNumber_TrueDivide:PyObject*::+1:
828PyNumber_TrueDivide:PyObject*:v:0:
829PyNumber_TrueDivide:PyObject*:w:0:
830
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000831PyNumber_Xor:PyObject*::+1:
832PyNumber_Xor:PyObject*:o1:0:
833PyNumber_Xor:PyObject*:o2:0:
834
835PyOS_GetLastModificationTime:long:::
836PyOS_GetLastModificationTime:char*:filename::
837
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000838PyObject_AsFileDescriptor:int:::
839PyObject_AsFileDescriptor:PyObject*:o:0:
840
Fredrik Lundh118be0c2005-12-18 19:39:59 +0000841PyObject_Call:PyObject*::+1:
842PyObject_Call:PyObject*:callable_object:0:
843PyObject_Call:PyObject*:args:0:
844PyObject_Call:PyObject*:kw:0:
845
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000846PyObject_CallFunction:PyObject*::+1:
847PyObject_CallFunction:PyObject*:callable_object:0:
848PyObject_CallFunction:char*:format::
849PyObject_CallFunction::...::
850
Fred Drakeb0c079e2001-10-28 02:39:03 +0000851PyObject_CallFunctionObjArgs:PyObject*::+1:
852PyObject_CallFunctionObjArgs:PyObject*:callable:0:
853PyObject_CallFunctionObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000854
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000855PyObject_CallMethod:PyObject*::+1:
856PyObject_CallMethod:PyObject*:o:0:
857PyObject_CallMethod:char*:m::
858PyObject_CallMethod:char*:format::
859PyObject_CallMethod::...::
860
Fred Drakeb0c079e2001-10-28 02:39:03 +0000861PyObject_CallMethodObjArgs:PyObject*::+1:
862PyObject_CallMethodObjArgs:PyObject*:o:0:
863PyObject_CallMethodObjArgs:char*:name::
864PyObject_CallMethodObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000865
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000866PyObject_CallObject:PyObject*::+1:
867PyObject_CallObject:PyObject*:callable_object:0:
868PyObject_CallObject:PyObject*:args:0:
869
870PyObject_Cmp:int:::
871PyObject_Cmp:PyObject*:o1:0:
872PyObject_Cmp:PyObject*:o2:0:
873PyObject_Cmp:int*:result::
874
875PyObject_Compare:int:::
876PyObject_Compare:PyObject*:o1:0:
877PyObject_Compare:PyObject*:o2:0:
878
879PyObject_DelAttr:int:::
880PyObject_DelAttr:PyObject*:o:0:
881PyObject_DelAttr:PyObject*:attr_name:0:
882
883PyObject_DelAttrString:int:::
884PyObject_DelAttrString:PyObject*:o:0:
885PyObject_DelAttrString:char*:attr_name::
886
887PyObject_DelItem:int:::
888PyObject_DelItem:PyObject*:o:0:
889PyObject_DelItem:PyObject*:key:0:
890
Fred Drake9c75ff72001-09-06 18:06:46 +0000891PyObject_Dir:PyObject*::+1:
892PyObject_Dir:PyObject*:o:0:
893
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000894PyObject_GetAttr:PyObject*::+1:
895PyObject_GetAttr:PyObject*:o:0:
896PyObject_GetAttr:PyObject*:attr_name:0:
897
898PyObject_GetAttrString:PyObject*::+1:
899PyObject_GetAttrString:PyObject*:o:0:
900PyObject_GetAttrString:char*:attr_name::
901
902PyObject_GetItem:PyObject*::+1:
903PyObject_GetItem:PyObject*:o:0:
904PyObject_GetItem:PyObject*:key:0:
905
Fred Drakeb915a382002-10-04 18:58:58 +0000906PyObject_GetIter:PyObject*::+1:
907PyObject_GetIter:PyObject*:o:0:
908
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000909PyObject_HasAttr:int:::
910PyObject_HasAttr:PyObject*:o:0:
911PyObject_HasAttr:PyObject*:attr_name:0:
912
913PyObject_HasAttrString:int:::
914PyObject_HasAttrString:PyObject*:o:0:
915PyObject_HasAttrString:char*:attr_name:0:
916
917PyObject_Hash:int:::
918PyObject_Hash:PyObject*:o:0:
919
920PyObject_IsTrue:int:::
921PyObject_IsTrue:PyObject*:o:0:
922
Fred Drakef913e542000-09-12 20:17:17 +0000923PyObject_Init:PyObject*::0:
924PyObject_Init:PyObject*:op:0:
925
926PyObject_InitVar:PyVarObject*::0:
927PyObject_InitVar:PyVarObject*:op:0:
928
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000929PyObject_Length:int:::
930PyObject_Length:PyObject*:o:0:
931
Fred Drake8e0c09d2001-07-06 23:31:49 +0000932PyObject_NEW:PyObject*::+1:
933
934PyObject_New:PyObject*::+1:
935
936PyObject_NEW_VAR:PyObject*::+1:
937
938PyObject_NewVar:PyObject*::+1:
939
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000940PyObject_Print:int:::
941PyObject_Print:PyObject*:o:0:
942PyObject_Print:FILE*:fp::
943PyObject_Print:int:flags::
944
945PyObject_Repr:PyObject*::+1:
946PyObject_Repr:PyObject*:o:0:
947
Fred Drakea0c5e9f2002-06-14 14:35:56 +0000948PyObject_RichCompare:PyObject*::+1:
949PyObject_RichCompare:PyObject*:o1:0:
950PyObject_RichCompare:PyObject*:o2:0:
951PyObject_RichCompare:int:opid::
952
953PyObject_RichCompareBool:int:::
954PyObject_RichCompareBool:PyObject*:o1:0:
955PyObject_RichCompareBool:PyObject*:o2:0:
956PyObject_RichCompareBool:int:opid::
957
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000958PyObject_SetAttr:int:::
959PyObject_SetAttr:PyObject*:o:0:
960PyObject_SetAttr:PyObject*:attr_name:0:
961PyObject_SetAttr:PyObject*:v:+1:
962
963PyObject_SetAttrString:int:::
964PyObject_SetAttrString:PyObject*:o:0:
965PyObject_SetAttrString:char*:attr_name::
966PyObject_SetAttrString:PyObject*:v:+1:
967
968PyObject_SetItem:int:::
969PyObject_SetItem:PyObject*:o:0:
970PyObject_SetItem:PyObject*:key:0:
971PyObject_SetItem:PyObject*:v:+1:
972
973PyObject_Str:PyObject*::+1:
974PyObject_Str:PyObject*:o:0:
975
976PyObject_Type:PyObject*::+1:
977PyObject_Type:PyObject*:o:0:
978
Fred Drakeb2625eb2001-05-29 15:34:06 +0000979PyObject_Unicode:PyObject*::+1:
980PyObject_Unicode:PyObject*:o:0:
981
Fred Drake805bf1b1999-10-20 16:03:38 +0000982PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000983PyParser_SimpleParseFile:FILE*:fp::
984PyParser_SimpleParseFile:char*:filename::
985PyParser_SimpleParseFile:int:start::
986
Fred Drake805bf1b1999-10-20 16:03:38 +0000987PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000988PyParser_SimpleParseString:char*:str::
989PyParser_SimpleParseString:int:start::
990
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000991PyRun_AnyFile:int:::
992PyRun_AnyFile:FILE*:fp::
993PyRun_AnyFile:char*:filename::
994
Fred Drake4ca744c2000-08-12 03:39:47 +0000995PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000996PyRun_File:FILE*:fp::
997PyRun_File:char*:filename::
998PyRun_File:int:start::
999PyRun_File:PyObject*:globals:0:
1000PyRun_File:PyObject*:locals:0:
1001
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001002PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1003PyRun_FileEx:FILE*:fp::
1004PyRun_FileEx:char*:filename::
1005PyRun_FileEx:int:start::
1006PyRun_FileEx:PyObject*:globals:0:
1007PyRun_FileEx:PyObject*:locals:0:
1008PyRun_FileEx:int:closeit::
1009
1010PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1011PyRun_FileFlags:FILE*:fp::
1012PyRun_FileFlags:char*:filename::
1013PyRun_FileFlags:int:start::
1014PyRun_FileFlags:PyObject*:globals:0:
1015PyRun_FileFlags:PyObject*:locals:0:
1016PyRun_FileFlags:PyCompilerFlags*:flags::
1017
1018PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1019PyRun_FileExFlags:FILE*:fp::
1020PyRun_FileExFlags:char*:filename::
1021PyRun_FileExFlags:int:start::
1022PyRun_FileExFlags:PyObject*:globals:0:
1023PyRun_FileExFlags:PyObject*:locals:0:
1024PyRun_FileExFlags:int:closeit::
1025PyRun_FileExFlags:PyCompilerFlags*:flags::
1026
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001027PyRun_InteractiveLoop:int:::
1028PyRun_InteractiveLoop:FILE*:fp::
1029PyRun_InteractiveLoop:char*:filename::
1030
1031PyRun_InteractiveOne:int:::
1032PyRun_InteractiveOne:FILE*:fp::
1033PyRun_InteractiveOne:char*:filename::
1034
1035PyRun_SimpleFile:int:::
1036PyRun_SimpleFile:FILE*:fp::
1037PyRun_SimpleFile:char*:filename::
1038
1039PyRun_SimpleString:int:::
1040PyRun_SimpleString:char*:command::
1041
Fred Drake4ca744c2000-08-12 03:39:47 +00001042PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001043PyRun_String:char*:str::
1044PyRun_String:int:start::
1045PyRun_String:PyObject*:globals:0:
1046PyRun_String:PyObject*:locals:0:
1047
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001048PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
1049PyRun_StringFlags:char*:str::
1050PyRun_StringFlags:int:start::
1051PyRun_StringFlags:PyObject*:globals:0:
1052PyRun_StringFlags:PyObject*:locals:0:
1053PyRun_StringFlags:PyCompilerFlags*:flags::
1054
Fred Draked61d0d32001-09-23 02:05:26 +00001055PySeqIter_New:PyObject*::+1:
1056PySeqIter_New:PyObject*:seq::
1057
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001058PySequence_Check:int:::
1059PySequence_Check:PyObject*:o:0:
1060
1061PySequence_Concat:PyObject*::+1:
1062PySequence_Concat:PyObject*:o1:0:
1063PySequence_Concat:PyObject*:o2:0:
1064
1065PySequence_Count:int:::
1066PySequence_Count:PyObject*:o:0:
1067PySequence_Count:PyObject*:value:0:
1068
1069PySequence_DelItem:int:::
1070PySequence_DelItem:PyObject*:o:0:
1071PySequence_DelItem:int:i::
1072
1073PySequence_DelSlice:int:::
1074PySequence_DelSlice:PyObject*:o:0:
1075PySequence_DelSlice:int:i1::
1076PySequence_DelSlice:int:i2::
1077
Fred Drake81cccb72000-09-12 15:22:05 +00001078PySequence_Fast:PyObject*::+1:
1079PySequence_Fast:PyObject*:v:0:
1080PySequence_Fast:const char*:m::
1081
1082PySequence_Fast_GET_ITEM:PyObject*::0:
1083PySequence_Fast_GET_ITEM:PyObject*:o:0:
1084PySequence_Fast_GET_ITEM:int:i::
1085
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001086PySequence_GetItem:PyObject*::+1:
1087PySequence_GetItem:PyObject*:o:0:
1088PySequence_GetItem:int:i::
1089
1090PySequence_GetSlice:PyObject*::+1:
1091PySequence_GetSlice:PyObject*:o:0:
1092PySequence_GetSlice:int:i1::
1093PySequence_GetSlice:int:i2::
1094
1095PySequence_In:int:::
1096PySequence_In:PyObject*:o:0:
1097PySequence_In:PyObject*:value:0:
1098
1099PySequence_Index:int:::
1100PySequence_Index:PyObject*:o:0:
1101PySequence_Index:PyObject*:value:0:
1102
Fred Drake1fa93652000-09-22 18:19:37 +00001103PySequence_InPlaceConcat:PyObject*::+1:
1104PySequence_InPlaceConcat:PyObject*:s:0:
1105PySequence_InPlaceConcat:PyObject*:o:0:
1106
1107PySequence_InPlaceRepeat:PyObject*::+1:
1108PySequence_InPlaceRepeat:PyObject*:s:0:
1109PySequence_InPlaceRepeat:PyObject*:o:0:
1110
Fred Drakeffb294b2002-05-23 16:03:16 +00001111PySequence_ITEM:PyObject*::+1:
1112PySequence_ITEM:PyObject*:o:0:
1113PySequence_ITEM:int:i::
1114
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001115PySequence_Repeat:PyObject*::+1:
1116PySequence_Repeat:PyObject*:o:0:
1117PySequence_Repeat:int:count::
1118
1119PySequence_SetItem:int:::
1120PySequence_SetItem:PyObject*:o:0:
1121PySequence_SetItem:int:i::
1122PySequence_SetItem:PyObject*:v:+1:
1123
1124PySequence_SetSlice:int:::
1125PySequence_SetSlice:PyObject*:o:0:
1126PySequence_SetSlice:int:i1::
1127PySequence_SetSlice:int:i2::
1128PySequence_SetSlice:PyObject*:v:+1:
1129
Fred Drake1c2d06a2000-06-16 20:00:04 +00001130PySequence_List:PyObject*::+1:
1131PySequence_List:PyObject*:o:0:
1132
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001133PySequence_Tuple:PyObject*::+1:
1134PySequence_Tuple:PyObject*:o:0:
1135
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001136PySet_Append:int:::
1137PySet_Append:PyObject*:set:0:
1138PySet_Append:PyObject*:key:+1:
1139
1140PySet_Contains:int:::
1141PySet_Contains:PyObject*:anyset:0:
1142PySet_Contains:PyObject*:key:0:
1143
1144PySet_Discard:int:::
1145PySet_Discard:PyObject*:set:0:
1146PySet_Discard:PyObject*:key:-1:no effect if key not found
1147
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001148PySet_New:PyObject*::+1:
1149PySet_New:PyObject*:iterable:0:
1150
Thomas Wouters477c8d52006-05-27 19:21:47 +00001151PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001152PySet_Pop:PyObject*:set:0:
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001153
1154PySet_Size:int:::
1155PySet_Size:PyObject*:anyset:0:
1156
Fred Drake23a78cf2001-09-24 15:29:47 +00001157PySlice_Check:int:::
1158PySlice_Check:PyObject*:ob:0:
1159
1160PySlice_New:PyObject*::+1:
1161PySlice_New:PyObject*:start:0:
1162PySlice_New:PyObject*:stop:0:
1163PySlice_New:PyObject*:step:0:
1164
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001165PyString_AS_STRING:char*:::
1166PyString_AS_STRING:PyObject*:string:0:
1167
Fred Drakeb2625eb2001-05-29 15:34:06 +00001168PyString_AsDecodedObject:PyObject*::+1:
1169PyString_AsDecodedObject:PyObject*:str:0:
1170PyString_AsDecodedObject:const char*:encoding::
1171PyString_AsDecodedObject:const char*:errors::
1172
1173PyString_AsEncodedObject:PyObject*::+1:
1174PyString_AsEncodedObject:PyObject*:str:0:
1175PyString_AsEncodedObject:const char*:encoding::
1176PyString_AsEncodedObject:const char*:errors::
1177
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001178PyString_AsString:char*:::
1179PyString_AsString:PyObject*:string:0:
1180
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +00001181PyString_AsStringAndSize:int:::
1182PyString_AsStringAndSize:PyObject*:obj:0:
1183PyString_AsStringAndSize:char**:buffer::
1184PyString_AsStringAndSize:int*:length::
1185
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001186PyString_Check:int:::
1187PyString_Check:PyObject*:o:0:
1188
1189PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001190PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001191PyString_Concat:PyObject*:newpart:0:
1192
1193PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001194PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001195PyString_ConcatAndDel:PyObject*:newpart:-1:
1196
1197PyString_Format:PyObject*::+1:
1198PyString_Format:PyObject*:format:0:
1199PyString_Format:PyObject*:args:0:
1200
1201PyString_FromString:PyObject*::+1:
1202PyString_FromString:const char*:v::
1203
1204PyString_FromStringAndSize:PyObject*::+1:
1205PyString_FromStringAndSize:const char*:v::
1206PyString_FromStringAndSize:int:len::
1207
Barry Warsaw8c64a542001-08-28 02:32:04 +00001208PyString_FromFormat:PyObject*::+1:
1209PyString_FromFormat:const char*:format::
1210PyString_FromFormat::...::
1211
1212PyString_FromFormatV:PyObject*::+1:
1213PyString_FromFormatV:const char*:format::
1214PyString_FromFormatV:va_list:vargs::
1215
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001216PyString_GET_SIZE:int:::
1217PyString_GET_SIZE:PyObject*:string:0:
1218
1219PyString_InternFromString:PyObject*::+1:
1220PyString_InternFromString:const char*:v::
1221
1222PyString_InternInPlace:void:::
1223PyString_InternInPlace:PyObject**:string:+1:???
1224
1225PyString_Size:int:::
1226PyString_Size:PyObject*:string:0:
1227
Marc-André Lemburg47073202000-07-07 15:48:54 +00001228PyString_Decode:PyObject*::+1:
1229PyString_Decode:const char*:s::
1230PyString_Decode:int:size::
1231PyString_Decode:const char*:encoding::
1232PyString_Decode:const char*:errors::
1233
1234PyString_Encode:PyObject*::+1:
1235PyString_Encode:const char*:s::
1236PyString_Encode:int:size::
1237PyString_Encode:const char*:encoding::
1238PyString_Encode:const char*:errors::
1239
1240PyString_AsEncodedString:PyObject*::+1:
1241PyString_AsEncodedString:PyObject*:str::
1242PyString_AsEncodedString:const char*:encoding::
1243PyString_AsEncodedString:const char*:errors::
1244
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001245PySys_SetArgv:int:::
1246PySys_SetArgv:int:argc::
1247PySys_SetArgv:char**:argv::
1248
1249PyThreadState_Clear:void:::
1250PyThreadState_Clear:PyThreadState*:tstate::
1251
1252PyThreadState_Delete:void:::
1253PyThreadState_Delete:PyThreadState*:tstate::
1254
1255PyThreadState_Get:PyThreadState*:::
1256
Fred Drakeb2625eb2001-05-29 15:34:06 +00001257PyThreadState_GetDict:PyObject*::0:
1258
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001259PyThreadState_New:PyThreadState*:::
1260PyThreadState_New:PyInterpreterState*:interp::
1261
1262PyThreadState_Swap:PyThreadState*:::
1263PyThreadState_Swap:PyThreadState*:tstate::
1264
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001265PyTime_FromTime:PyObject*::+1:
1266PyTime_FromTime:int:hour::
1267PyTime_FromTime:int:minute::
1268PyTime_FromTime:int:second::
1269PyTime_FromTime:int:usecond::
1270
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001271PyTuple_Check:int:::
1272PyTuple_Check:PyObject*:p:0:
1273
1274PyTuple_GET_ITEM:PyObject*::0:
1275PyTuple_GET_ITEM:PyTupleObject*:p:0:
1276PyTuple_GET_ITEM:int:pos::
1277
1278PyTuple_GetItem:PyObject*::0:
1279PyTuple_GetItem:PyTupleObject*:p:0:
1280PyTuple_GetItem:int:pos::
1281
1282PyTuple_GetSlice:PyObject*::+1:
1283PyTuple_GetSlice:PyTupleObject*:p:0:
1284PyTuple_GetSlice:int:low::
1285PyTuple_GetSlice:int:high::
1286
1287PyTuple_New:PyObject*::+1:
1288PyTuple_New:int:len::
1289
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001290PyTuple_Pack:PyObject*::+1:
1291PyTuple_Pack:int:len::
1292PyTuple_Pack:PyObject*:...:0:
1293
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001294PyTuple_SET_ITEM:void:::
1295PyTuple_SET_ITEM:PyTupleObject*:p:0:
1296PyTuple_SET_ITEM:int:pos::
1297PyTuple_SET_ITEM:PyObject*:o:0:
1298
1299PyTuple_SetItem:int:::
1300PyTuple_SetItem:PyTupleObject*:p:0:
1301PyTuple_SetItem:int:pos::
1302PyTuple_SetItem:PyObject*:o:0:
1303
1304PyTuple_Size:int:::
1305PyTuple_Size:PyTupleObject*:p:0:
1306
Fred Drake1b58bff2001-10-29 17:43:14 +00001307PyType_GenericAlloc:PyObject*::+1:
1308PyType_GenericAlloc:PyObject*:type:0:
1309PyType_GenericAlloc:int:nitems:0:
1310
1311PyType_GenericNew:PyObject*::+1:
1312PyType_GenericNew:PyObject*:type:0:
1313PyType_GenericNew:PyObject*:args:0:
1314PyType_GenericNew:PyObject*:kwds:0:
1315
Fred Drake992fe5a2000-06-16 21:04:15 +00001316PyUnicode_Check:int:::
1317PyUnicode_Check:PyObject*:o:0:
1318
1319PyUnicode_GET_SIZE:int:::
1320PyUnicode_GET_SIZE:PyObject*:o:0:
1321
1322PyUnicode_GET_DATA_SIZE:int:::
1323PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1324
1325PyUnicode_AS_UNICODE:Py_UNICODE*:::
1326PyUnicode_AS_UNICODE:PyObject*:o:0:
1327
1328PyUnicode_AS_DATA:const char*:::
1329PyUnicode_AS_DATA:PyObject*:o:0:
1330
1331Py_UNICODE_ISSPACE:int:::
1332Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1333
1334Py_UNICODE_ISLOWER:int:::
1335Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1336
1337Py_UNICODE_ISUPPER:int:::
1338Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1339
1340Py_UNICODE_ISTITLE:int:::
1341Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1342
1343Py_UNICODE_ISLINEBREAK:int:::
1344Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1345
1346Py_UNICODE_ISDECIMAL:int:::
1347Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1348
1349Py_UNICODE_ISDIGIT:int:::
1350Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1351
1352Py_UNICODE_ISNUMERIC:int:::
1353Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1354
1355Py_UNICODE_TOLOWER:Py_UNICODE:::
1356Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1357
1358Py_UNICODE_TOUPPER:Py_UNICODE:::
1359Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1360
1361Py_UNICODE_TOTITLE:Py_UNICODE:::
1362Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1363
1364Py_UNICODE_TODECIMAL:int:::
1365Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1366
1367Py_UNICODE_TODIGIT:int:::
1368Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1369
1370Py_UNICODE_TONUMERIC:double:::
1371Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1372
1373PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001374PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001375PyUnicode_FromUnicode:int:size::
1376
1377PyUnicode_AsUnicode:Py_UNICODE*:::
1378PyUnicode_AsUnicode:PyObject :*unicode:0:
1379
1380PyUnicode_GetSize:int:::
1381PyUnicode_GetSize:PyObject :*unicode:0:
1382
1383PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001384PyUnicode_FromObject:PyObject*:*obj:0:
1385
1386PyUnicode_FromEncodedObject:PyObject*::+1:
1387PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1388PyUnicode_FromEncodedObject:const char*:encoding::
1389PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001390
1391PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001392PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001393PyUnicode_FromWideChar:int:size::
1394
1395PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001396PyUnicode_AsWideChar:PyObject*:*unicode:0:
1397PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001398PyUnicode_AsWideChar:int:size::
1399
1400PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001401PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001402PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001403PyUnicode_Decode:const char*:encoding::
1404PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001405
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001406PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1407PyUnicode_DecodeUTF16Stateful:const char*:s::
1408PyUnicode_DecodeUTF16Stateful:int:size::
1409PyUnicode_DecodeUTF16Stateful:const char*:errors::
1410PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1411PyUnicode_DecodeUTF16Stateful:int*:consumed::
1412
1413PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1414PyUnicode_DecodeUTF8Stateful:const char*:s::
1415PyUnicode_DecodeUTF8Stateful:int:size::
1416PyUnicode_DecodeUTF8Stateful:const char*:errors::
1417PyUnicode_DecodeUTF8Stateful:int*:consumed::
1418
Fred Drake992fe5a2000-06-16 21:04:15 +00001419PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001420PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001421PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001422PyUnicode_Encode:const char*:encoding::
1423PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001424
1425PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001426PyUnicode_AsEncodedString:PyObject*:unicode::
1427PyUnicode_AsEncodedString:const char*:encoding::
1428PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001429
1430PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001431PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001432PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001433PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001434
1435PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001436PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001437PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001438PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001439
1440PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001441PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001442
1443PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001444PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001445PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001446PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001447PyUnicode_DecodeUTF16:int*:byteorder::
1448
1449PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001450PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001451PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001452PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001453PyUnicode_EncodeUTF16:int:byteorder::
1454
1455PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001456PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001457
1458PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001459PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001460PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001461PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001462
1463PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001464PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001465PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001466PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001467
1468PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001469PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001470
1471PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001472PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001473PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001474PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001475
1476PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001477PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001478PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001479PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001480
1481PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001482PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001483
1484PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001485PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001486PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001487PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001488
1489PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001490PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001491PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001492PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001493
1494PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001495PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001496
1497PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001498PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001499PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001500PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001501
1502PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001503PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001504PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001505PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001506
1507PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001508PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001509
1510PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001511PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001512PyUnicode_DecodeCharmap:int:size::
1513PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001514PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001515
1516PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001517PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001518PyUnicode_EncodeCharmap:int:size::
1519PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001520PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001521
1522PyUnicode_AsCharmapString:PyObject*::+1:
1523PyUnicode_AsCharmapString:PyObject*:unicode:0:
1524PyUnicode_AsCharmapString:PyObject*:mapping:0:
1525
1526PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001527PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001528PyUnicode_TranslateCharmap:int:size::
1529PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001530PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001531
1532PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001533PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001534PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001535PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001536
1537PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001538PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001539PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001540PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001541
1542PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001543PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001544
1545PyUnicode_Concat:PyObject*::+1:
1546PyUnicode_Concat:PyObject*:left:0:
1547PyUnicode_Concat:PyObject*:right:0:
1548
1549PyUnicode_Split:PyObject*::+1:
1550PyUnicode_Split:PyObject*:left:0:
1551PyUnicode_Split:PyObject*:right:0:
1552PyUnicode_Split:int:maxsplit::
1553
1554PyUnicode_Splitlines:PyObject*::+1:
1555PyUnicode_Splitlines:PyObject*:s:0:
1556PyUnicode_Splitlines:int:maxsplit::
1557
1558PyUnicode_Translate:PyObject*::+1:
1559PyUnicode_Translate:PyObject*:str:0:
1560PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001561PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001562
1563PyUnicode_Join:PyObject*::+1:
1564PyUnicode_Join:PyObject*:separator:0:
1565PyUnicode_Join:PyObject*:seq:0:
1566
1567PyUnicode_Tailmatch:PyObject*::+1:
1568PyUnicode_Tailmatch:PyObject*:str:0:
1569PyUnicode_Tailmatch:PyObject*:substr:0:
1570PyUnicode_Tailmatch:int:start::
1571PyUnicode_Tailmatch:int:end::
1572PyUnicode_Tailmatch:int:direction::
1573
Fred Drake1d1e1db2002-06-20 22:07:04 +00001574PyUnicode_Find:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001575PyUnicode_Find:PyObject*:str:0:
1576PyUnicode_Find:PyObject*:substr:0:
1577PyUnicode_Find:int:start::
1578PyUnicode_Find:int:end::
1579PyUnicode_Find:int:direction::
1580
Fred Drake1d1e1db2002-06-20 22:07:04 +00001581PyUnicode_Count:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001582PyUnicode_Count:PyObject*:str:0:
1583PyUnicode_Count:PyObject*:substr:0:
1584PyUnicode_Count:int:start::
1585PyUnicode_Count:int:end::
1586
1587PyUnicode_Replace:PyObject*::+1:
1588PyUnicode_Replace:PyObject*:str:0:
1589PyUnicode_Replace:PyObject*:substr:0:
1590PyUnicode_Replace:PyObject*:replstr:0:
1591PyUnicode_Replace:int:maxcount::
1592
1593PyUnicode_Compare:int:::
1594PyUnicode_Compare:PyObject*:left:0:
1595PyUnicode_Compare:PyObject*:right:0:
1596
1597PyUnicode_Format:PyObject*::+1:
1598PyUnicode_Format:PyObject*:format:0:
1599PyUnicode_Format:PyObject*:args:0:
1600
1601PyUnicode_Contains:int:::
1602PyUnicode_Contains:PyObject*:container:0:
1603PyUnicode_Contains:PyObject*:element:0:
1604
Fred Drake1b58bff2001-10-29 17:43:14 +00001605PyWeakref_GET_OBJECT:PyObject*::0:
1606PyWeakref_GET_OBJECT:PyObject*:ref:0:
1607
Fred Drake8371e842002-02-20 05:07:36 +00001608PyWeakref_GetObject:PyObject*::0:
Fred Drake1b58bff2001-10-29 17:43:14 +00001609PyWeakref_GetObject:PyObject*:ref:0:
1610
1611PyWeakref_NewProxy:PyObject*::+1:
1612PyWeakref_NewProxy:PyObject*:ob:0:
1613PyWeakref_NewProxy:PyObject*:callback:0:
1614
1615PyWeakref_NewRef:PyObject*::+1:
1616PyWeakref_NewRef:PyObject*:ob:0:
1617PyWeakref_NewRef:PyObject*:callback:0:
1618
1619PyWrapper_New:PyObject*::+1:
1620PyWrapper_New:PyObject*:d:0:
1621PyWrapper_New:PyObject*:self:0:
1622
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001623Py_AtExit:int:::
1624Py_AtExit:void (*)():func::
1625
Fred Drake6d988552001-07-20 20:55:31 +00001626Py_BuildValue:PyObject*::+1:
1627Py_BuildValue:char*:format::
1628
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001629Py_CompileString:PyObject*::+1:
1630Py_CompileString:char*:str::
1631Py_CompileString:char*:filename::
1632Py_CompileString:int:start::
1633
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001634Py_CompileStringFlags:PyObject*::+1:
1635Py_CompileStringFlags:char*:str::
1636Py_CompileStringFlags:char*:filename::
1637Py_CompileStringFlags:int:start::
1638Py_CompileStringFlags:PyCompilerFlags*:flags::
1639
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001640Py_DECREF:void:::
1641Py_DECREF:PyObject*:o:-1:
1642
1643Py_EndInterpreter:void:::
1644Py_EndInterpreter:PyThreadState*:tstate::
1645
1646Py_Exit:void:::
1647Py_Exit:int:status::
1648
1649Py_FatalError:void:::
1650Py_FatalError:char*:message::
1651
1652Py_FdIsInteractive:int:::
1653Py_FdIsInteractive:FILE*:fp::
1654Py_FdIsInteractive:char*:filename::
1655
1656Py_Finalize:void:::
1657
Fred Drake8520cc22000-04-10 19:38:24 +00001658Py_FindMethod:PyObject*::+1:
1659Py_FindMethod:PyMethodDef[]:methods::
1660Py_FindMethod:PyObject*:self:+1:
1661Py_FindMethod:char*:name::
1662
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001663Py_GetBuildInfoconst:char*:::
1664
1665Py_GetCompilerconst:char*:::
1666
1667Py_GetCopyrightconst:char*:::
1668
1669Py_GetExecPrefix:char*:::
1670
1671Py_GetPath:char*:::
1672
1673Py_GetPlatformconst:char*:::
1674
1675Py_GetPrefix:char*:::
1676
1677Py_GetProgramFullPath:char*:::
1678
1679Py_GetProgramName:char*:::
1680
1681Py_GetVersionconst:char*:::
1682
1683Py_INCREF:void:::
1684Py_INCREF:PyObject*:o:+1:
1685
1686Py_Initialize:void:::
1687
1688Py_IsInitialized:int:::
1689
1690Py_NewInterpreter:PyThreadState*:::
1691
1692Py_SetProgramName:void:::
1693Py_SetProgramName:char*:name::
1694
1695Py_XDECREF:void:::
1696Py_XDECREF:PyObject*:o:-1:if o is not NULL
1697
1698Py_XINCREF:void:::
1699Py_XINCREF:PyObject*:o:+1:if o is not NULL
1700
1701_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1702_PyImport_FindExtension:char*:::
1703_PyImport_FindExtension:char*:::
1704
1705_PyImport_Fini:void:::
1706
1707_PyImport_FixupExtension:PyObject*:::???
1708_PyImport_FixupExtension:char*:::
1709_PyImport_FixupExtension:char*:::
1710
1711_PyImport_Init:void:::
1712
Fred Drakef913e542000-09-12 20:17:17 +00001713_PyObject_Del:void:::
1714_PyObject_Del:PyObject*:op:0:
1715
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001716_PyObject_New:PyObject*::+1:
1717_PyObject_New:PyTypeObject*:type:0:
1718
Fred Drake8e0c09d2001-07-06 23:31:49 +00001719_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001720_PyObject_NewVar:PyTypeObject*:type:0:
1721_PyObject_NewVar:int:size::
1722
1723_PyString_Resize:int:::
1724_PyString_Resize:PyObject**:string:+1:
1725_PyString_Resize:int:newsize::
1726
1727_PyTuple_Resize:int:::
1728_PyTuple_Resize:PyTupleObject**:p:+1:
1729_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001730
1731_Py_c_diff:Py_complex:::
1732_Py_c_diff:Py_complex:left::
1733_Py_c_diff:Py_complex:right::
1734
1735_Py_c_neg:Py_complex:::
1736_Py_c_neg:Py_complex:complex::
1737
1738_Py_c_pow:Py_complex:::
1739_Py_c_pow:Py_complex:num::
1740_Py_c_pow:Py_complex:exp::
1741
1742_Py_c_prod:Py_complex:::
1743_Py_c_prod:Py_complex:left::
1744_Py_c_prod:Py_complex:right::
1745
1746_Py_c_quot:Py_complex:::
1747_Py_c_quot:Py_complex:dividend::
1748_Py_c_quot:Py_complex:divisor::
1749
1750_Py_c_sum:Py_complex:::
1751_Py_c_sum:Py_complex:left::
1752_Py_c_sum:Py_complex:right::