blob: b8aaad543d0e7d6071ec596f605dc14ae95786ce [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
715PyNumber_Coerce:int:::
716PyNumber_Coerce:PyObject**:p1:+1:
717PyNumber_Coerce:PyObject**:p2:+1:
718
719PyNumber_Divide:PyObject*::+1:
720PyNumber_Divide:PyObject*:o1:0:
721PyNumber_Divide:PyObject*:o2:0:
722
723PyNumber_Divmod:PyObject*::+1:
724PyNumber_Divmod:PyObject*:o1:0:
725PyNumber_Divmod:PyObject*:o2:0:
726
727PyNumber_Float:PyObject*::+1:
728PyNumber_Float:PyObject*:o:0:
729
Fred Drake03590c62001-08-08 18:50:18 +0000730PyNumber_FloorDivide:PyObject*::+1:
731PyNumber_FloorDivide:PyObject*:v:0:
732PyNumber_FloorDivide:PyObject*:w:0:
733
Fred Drake1fa93652000-09-22 18:19:37 +0000734PyNumber_InPlaceAdd:PyObject*::+1:
735PyNumber_InPlaceAdd:PyObject*:v:0:
736PyNumber_InPlaceAdd:PyObject*:w:0:
737
738PyNumber_InPlaceAnd:PyObject*::+1:
739PyNumber_InPlaceAnd:PyObject*:v:0:
740PyNumber_InPlaceAnd:PyObject*:w:0:
741
742PyNumber_InPlaceDivide:PyObject*::+1:
743PyNumber_InPlaceDivide:PyObject*:v:0:
744PyNumber_InPlaceDivide:PyObject*:w:0:
745
Fred Drake03590c62001-08-08 18:50:18 +0000746PyNumber_InPlaceFloorDivide:PyObject*::+1:
747PyNumber_InPlaceFloorDivide:PyObject*:v:0:
748PyNumber_InPlaceFloorDivide:PyObject*:w:0:
749
Fred Drake1fa93652000-09-22 18:19:37 +0000750PyNumber_InPlaceLshift:PyObject*::+1:
751PyNumber_InPlaceLshift:PyObject*:v:0:
752PyNumber_InPlaceLshift:PyObject*:w:0:
753
754PyNumber_InPlaceMultiply:PyObject*::+1:
755PyNumber_InPlaceMultiply:PyObject*:v:0:
756PyNumber_InPlaceMultiply:PyObject*:w:0:
757
758PyNumber_InPlaceOr:PyObject*::+1:
759PyNumber_InPlaceOr:PyObject*:v:0:
760PyNumber_InPlaceOr:PyObject*:w:0:
761
762PyNumber_InPlacePower:PyObject*::+1:
763PyNumber_InPlacePower:PyObject*:v:0:
764PyNumber_InPlacePower:PyObject*:w:0:
765PyNumber_InPlacePower:PyObject*:z:0:
766
767PyNumber_InPlaceRemainder:PyObject*::+1:
768PyNumber_InPlaceRemainder:PyObject*:v:0:
769PyNumber_InPlaceRemainder:PyObject*:w:0:
770
771PyNumber_InPlaceRshift:PyObject*::+1:
772PyNumber_InPlaceRshift:PyObject*:v:0:
773PyNumber_InPlaceRshift:PyObject*:w:0:
774
775PyNumber_InPlaceSubtract:PyObject*::+1:
776PyNumber_InPlaceSubtract:PyObject*:v:0:
777PyNumber_InPlaceSubtract:PyObject*:w:0:
778
Fred Drake03590c62001-08-08 18:50:18 +0000779PyNumber_InPlaceTrueDivide:PyObject*::+1:
780PyNumber_InPlaceTrueDivide:PyObject*:v:0:
781PyNumber_InPlaceTrueDivide:PyObject*:w:0:
782
Fred Drake1fa93652000-09-22 18:19:37 +0000783PyNumber_InPlaceXor:PyObject*::+1:
784PyNumber_InPlaceXor:PyObject*:v:0:
785PyNumber_InPlaceXor:PyObject*:w:0:
786
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000787PyNumber_Int:PyObject*::+1:
788PyNumber_Int:PyObject*:o:0:
789
790PyNumber_Invert:PyObject*::+1:
791PyNumber_Invert:PyObject*:o:0:
792
793PyNumber_Long:PyObject*::+1:
794PyNumber_Long:PyObject*:o:0:
795
796PyNumber_Lshift:PyObject*::+1:
797PyNumber_Lshift:PyObject*:o1:0:
798PyNumber_Lshift:PyObject*:o2:0:
799
800PyNumber_Multiply:PyObject*::+1:
801PyNumber_Multiply:PyObject*:o1:0:
802PyNumber_Multiply:PyObject*:o2:0:
803
804PyNumber_Negative:PyObject*::+1:
805PyNumber_Negative:PyObject*:o:0:
806
807PyNumber_Or:PyObject*::+1:
808PyNumber_Or:PyObject*:o1:0:
809PyNumber_Or:PyObject*:o2:0:
810
811PyNumber_Positive:PyObject*::+1:
812PyNumber_Positive:PyObject*:o:0:
813
814PyNumber_Power:PyObject*::+1:
815PyNumber_Power:PyObject*:o1:0:
816PyNumber_Power:PyObject*:o2:0:
817PyNumber_Power:PyObject*:o3:0:
818
819PyNumber_Remainder:PyObject*::+1:
820PyNumber_Remainder:PyObject*:o1:0:
821PyNumber_Remainder:PyObject*:o2:0:
822
823PyNumber_Rshift:PyObject*::+1:
824PyNumber_Rshift:PyObject*:o1:0:
825PyNumber_Rshift:PyObject*:o2:0:
826
827PyNumber_Subtract:PyObject*::+1:
828PyNumber_Subtract:PyObject*:o1:0:
829PyNumber_Subtract:PyObject*:o2:0:
830
Fred Drake03590c62001-08-08 18:50:18 +0000831PyNumber_TrueDivide:PyObject*::+1:
832PyNumber_TrueDivide:PyObject*:v:0:
833PyNumber_TrueDivide:PyObject*:w:0:
834
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000835PyNumber_Xor:PyObject*::+1:
836PyNumber_Xor:PyObject*:o1:0:
837PyNumber_Xor:PyObject*:o2:0:
838
839PyOS_GetLastModificationTime:long:::
840PyOS_GetLastModificationTime:char*:filename::
841
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000842PyObject_AsFileDescriptor:int:::
843PyObject_AsFileDescriptor:PyObject*:o:0:
844
Fredrik Lundh118be0c2005-12-18 19:39:59 +0000845PyObject_Call:PyObject*::+1:
846PyObject_Call:PyObject*:callable_object:0:
847PyObject_Call:PyObject*:args:0:
848PyObject_Call:PyObject*:kw:0:
849
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000850PyObject_CallFunction:PyObject*::+1:
851PyObject_CallFunction:PyObject*:callable_object:0:
852PyObject_CallFunction:char*:format::
853PyObject_CallFunction::...::
854
Fred Drakeb0c079e2001-10-28 02:39:03 +0000855PyObject_CallFunctionObjArgs:PyObject*::+1:
856PyObject_CallFunctionObjArgs:PyObject*:callable:0:
857PyObject_CallFunctionObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000858
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000859PyObject_CallMethod:PyObject*::+1:
860PyObject_CallMethod:PyObject*:o:0:
861PyObject_CallMethod:char*:m::
862PyObject_CallMethod:char*:format::
863PyObject_CallMethod::...::
864
Fred Drakeb0c079e2001-10-28 02:39:03 +0000865PyObject_CallMethodObjArgs:PyObject*::+1:
866PyObject_CallMethodObjArgs:PyObject*:o:0:
867PyObject_CallMethodObjArgs:char*:name::
868PyObject_CallMethodObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000869
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000870PyObject_CallObject:PyObject*::+1:
871PyObject_CallObject:PyObject*:callable_object:0:
872PyObject_CallObject:PyObject*:args:0:
873
874PyObject_Cmp:int:::
875PyObject_Cmp:PyObject*:o1:0:
876PyObject_Cmp:PyObject*:o2:0:
877PyObject_Cmp:int*:result::
878
879PyObject_Compare:int:::
880PyObject_Compare:PyObject*:o1:0:
881PyObject_Compare:PyObject*:o2:0:
882
883PyObject_DelAttr:int:::
884PyObject_DelAttr:PyObject*:o:0:
885PyObject_DelAttr:PyObject*:attr_name:0:
886
887PyObject_DelAttrString:int:::
888PyObject_DelAttrString:PyObject*:o:0:
889PyObject_DelAttrString:char*:attr_name::
890
891PyObject_DelItem:int:::
892PyObject_DelItem:PyObject*:o:0:
893PyObject_DelItem:PyObject*:key:0:
894
Fred Drake9c75ff72001-09-06 18:06:46 +0000895PyObject_Dir:PyObject*::+1:
896PyObject_Dir:PyObject*:o:0:
897
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000898PyObject_GetAttr:PyObject*::+1:
899PyObject_GetAttr:PyObject*:o:0:
900PyObject_GetAttr:PyObject*:attr_name:0:
901
902PyObject_GetAttrString:PyObject*::+1:
903PyObject_GetAttrString:PyObject*:o:0:
904PyObject_GetAttrString:char*:attr_name::
905
906PyObject_GetItem:PyObject*::+1:
907PyObject_GetItem:PyObject*:o:0:
908PyObject_GetItem:PyObject*:key:0:
909
Fred Drakeb915a382002-10-04 18:58:58 +0000910PyObject_GetIter:PyObject*::+1:
911PyObject_GetIter:PyObject*:o:0:
912
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000913PyObject_HasAttr:int:::
914PyObject_HasAttr:PyObject*:o:0:
915PyObject_HasAttr:PyObject*:attr_name:0:
916
917PyObject_HasAttrString:int:::
918PyObject_HasAttrString:PyObject*:o:0:
919PyObject_HasAttrString:char*:attr_name:0:
920
921PyObject_Hash:int:::
922PyObject_Hash:PyObject*:o:0:
923
924PyObject_IsTrue:int:::
925PyObject_IsTrue:PyObject*:o:0:
926
Fred Drakef913e542000-09-12 20:17:17 +0000927PyObject_Init:PyObject*::0:
928PyObject_Init:PyObject*:op:0:
929
930PyObject_InitVar:PyVarObject*::0:
931PyObject_InitVar:PyVarObject*:op:0:
932
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000933PyObject_Length:int:::
934PyObject_Length:PyObject*:o:0:
935
Fred Drake8e0c09d2001-07-06 23:31:49 +0000936PyObject_NEW:PyObject*::+1:
937
938PyObject_New:PyObject*::+1:
939
940PyObject_NEW_VAR:PyObject*::+1:
941
942PyObject_NewVar:PyObject*::+1:
943
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000944PyObject_Print:int:::
945PyObject_Print:PyObject*:o:0:
946PyObject_Print:FILE*:fp::
947PyObject_Print:int:flags::
948
949PyObject_Repr:PyObject*::+1:
950PyObject_Repr:PyObject*:o:0:
951
Fred Drakea0c5e9f2002-06-14 14:35:56 +0000952PyObject_RichCompare:PyObject*::+1:
953PyObject_RichCompare:PyObject*:o1:0:
954PyObject_RichCompare:PyObject*:o2:0:
955PyObject_RichCompare:int:opid::
956
957PyObject_RichCompareBool:int:::
958PyObject_RichCompareBool:PyObject*:o1:0:
959PyObject_RichCompareBool:PyObject*:o2:0:
960PyObject_RichCompareBool:int:opid::
961
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000962PyObject_SetAttr:int:::
963PyObject_SetAttr:PyObject*:o:0:
964PyObject_SetAttr:PyObject*:attr_name:0:
965PyObject_SetAttr:PyObject*:v:+1:
966
967PyObject_SetAttrString:int:::
968PyObject_SetAttrString:PyObject*:o:0:
969PyObject_SetAttrString:char*:attr_name::
970PyObject_SetAttrString:PyObject*:v:+1:
971
972PyObject_SetItem:int:::
973PyObject_SetItem:PyObject*:o:0:
974PyObject_SetItem:PyObject*:key:0:
975PyObject_SetItem:PyObject*:v:+1:
976
977PyObject_Str:PyObject*::+1:
978PyObject_Str:PyObject*:o:0:
979
980PyObject_Type:PyObject*::+1:
981PyObject_Type:PyObject*:o:0:
982
Fred Drakeb2625eb2001-05-29 15:34:06 +0000983PyObject_Unicode:PyObject*::+1:
984PyObject_Unicode:PyObject*:o:0:
985
Fred Drake805bf1b1999-10-20 16:03:38 +0000986PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000987PyParser_SimpleParseFile:FILE*:fp::
988PyParser_SimpleParseFile:char*:filename::
989PyParser_SimpleParseFile:int:start::
990
Fred Drake805bf1b1999-10-20 16:03:38 +0000991PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000992PyParser_SimpleParseString:char*:str::
993PyParser_SimpleParseString:int:start::
994
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000995PyRun_AnyFile:int:::
996PyRun_AnyFile:FILE*:fp::
997PyRun_AnyFile:char*:filename::
998
Fred Drake4ca744c2000-08-12 03:39:47 +0000999PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001000PyRun_File:FILE*:fp::
1001PyRun_File:char*:filename::
1002PyRun_File:int:start::
1003PyRun_File:PyObject*:globals:0:
1004PyRun_File:PyObject*:locals:0:
1005
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001006PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1007PyRun_FileEx:FILE*:fp::
1008PyRun_FileEx:char*:filename::
1009PyRun_FileEx:int:start::
1010PyRun_FileEx:PyObject*:globals:0:
1011PyRun_FileEx:PyObject*:locals:0:
1012PyRun_FileEx:int:closeit::
1013
1014PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1015PyRun_FileFlags:FILE*:fp::
1016PyRun_FileFlags:char*:filename::
1017PyRun_FileFlags:int:start::
1018PyRun_FileFlags:PyObject*:globals:0:
1019PyRun_FileFlags:PyObject*:locals:0:
1020PyRun_FileFlags:PyCompilerFlags*:flags::
1021
1022PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1023PyRun_FileExFlags:FILE*:fp::
1024PyRun_FileExFlags:char*:filename::
1025PyRun_FileExFlags:int:start::
1026PyRun_FileExFlags:PyObject*:globals:0:
1027PyRun_FileExFlags:PyObject*:locals:0:
1028PyRun_FileExFlags:int:closeit::
1029PyRun_FileExFlags:PyCompilerFlags*:flags::
1030
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001031PyRun_InteractiveLoop:int:::
1032PyRun_InteractiveLoop:FILE*:fp::
1033PyRun_InteractiveLoop:char*:filename::
1034
1035PyRun_InteractiveOne:int:::
1036PyRun_InteractiveOne:FILE*:fp::
1037PyRun_InteractiveOne:char*:filename::
1038
1039PyRun_SimpleFile:int:::
1040PyRun_SimpleFile:FILE*:fp::
1041PyRun_SimpleFile:char*:filename::
1042
1043PyRun_SimpleString:int:::
1044PyRun_SimpleString:char*:command::
1045
Fred Drake4ca744c2000-08-12 03:39:47 +00001046PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001047PyRun_String:char*:str::
1048PyRun_String:int:start::
1049PyRun_String:PyObject*:globals:0:
1050PyRun_String:PyObject*:locals:0:
1051
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001052PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
1053PyRun_StringFlags:char*:str::
1054PyRun_StringFlags:int:start::
1055PyRun_StringFlags:PyObject*:globals:0:
1056PyRun_StringFlags:PyObject*:locals:0:
1057PyRun_StringFlags:PyCompilerFlags*:flags::
1058
Fred Draked61d0d32001-09-23 02:05:26 +00001059PySeqIter_New:PyObject*::+1:
1060PySeqIter_New:PyObject*:seq::
1061
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001062PySequence_Check:int:::
1063PySequence_Check:PyObject*:o:0:
1064
1065PySequence_Concat:PyObject*::+1:
1066PySequence_Concat:PyObject*:o1:0:
1067PySequence_Concat:PyObject*:o2:0:
1068
1069PySequence_Count:int:::
1070PySequence_Count:PyObject*:o:0:
1071PySequence_Count:PyObject*:value:0:
1072
1073PySequence_DelItem:int:::
1074PySequence_DelItem:PyObject*:o:0:
1075PySequence_DelItem:int:i::
1076
1077PySequence_DelSlice:int:::
1078PySequence_DelSlice:PyObject*:o:0:
1079PySequence_DelSlice:int:i1::
1080PySequence_DelSlice:int:i2::
1081
Fred Drake81cccb72000-09-12 15:22:05 +00001082PySequence_Fast:PyObject*::+1:
1083PySequence_Fast:PyObject*:v:0:
1084PySequence_Fast:const char*:m::
1085
1086PySequence_Fast_GET_ITEM:PyObject*::0:
1087PySequence_Fast_GET_ITEM:PyObject*:o:0:
1088PySequence_Fast_GET_ITEM:int:i::
1089
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001090PySequence_GetItem:PyObject*::+1:
1091PySequence_GetItem:PyObject*:o:0:
1092PySequence_GetItem:int:i::
1093
1094PySequence_GetSlice:PyObject*::+1:
1095PySequence_GetSlice:PyObject*:o:0:
1096PySequence_GetSlice:int:i1::
1097PySequence_GetSlice:int:i2::
1098
1099PySequence_In:int:::
1100PySequence_In:PyObject*:o:0:
1101PySequence_In:PyObject*:value:0:
1102
1103PySequence_Index:int:::
1104PySequence_Index:PyObject*:o:0:
1105PySequence_Index:PyObject*:value:0:
1106
Fred Drake1fa93652000-09-22 18:19:37 +00001107PySequence_InPlaceConcat:PyObject*::+1:
1108PySequence_InPlaceConcat:PyObject*:s:0:
1109PySequence_InPlaceConcat:PyObject*:o:0:
1110
1111PySequence_InPlaceRepeat:PyObject*::+1:
1112PySequence_InPlaceRepeat:PyObject*:s:0:
1113PySequence_InPlaceRepeat:PyObject*:o:0:
1114
Fred Drakeffb294b2002-05-23 16:03:16 +00001115PySequence_ITEM:PyObject*::+1:
1116PySequence_ITEM:PyObject*:o:0:
1117PySequence_ITEM:int:i::
1118
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001119PySequence_Repeat:PyObject*::+1:
1120PySequence_Repeat:PyObject*:o:0:
1121PySequence_Repeat:int:count::
1122
1123PySequence_SetItem:int:::
1124PySequence_SetItem:PyObject*:o:0:
1125PySequence_SetItem:int:i::
1126PySequence_SetItem:PyObject*:v:+1:
1127
1128PySequence_SetSlice:int:::
1129PySequence_SetSlice:PyObject*:o:0:
1130PySequence_SetSlice:int:i1::
1131PySequence_SetSlice:int:i2::
1132PySequence_SetSlice:PyObject*:v:+1:
1133
Fred Drake1c2d06a2000-06-16 20:00:04 +00001134PySequence_List:PyObject*::+1:
1135PySequence_List:PyObject*:o:0:
1136
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001137PySequence_Tuple:PyObject*::+1:
1138PySequence_Tuple:PyObject*:o:0:
1139
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001140PySet_Append:int:::
1141PySet_Append:PyObject*:set:0:
1142PySet_Append:PyObject*:key:+1:
1143
1144PySet_Contains:int:::
1145PySet_Contains:PyObject*:anyset:0:
1146PySet_Contains:PyObject*:key:0:
1147
1148PySet_Discard:int:::
1149PySet_Discard:PyObject*:set:0:
1150PySet_Discard:PyObject*:key:-1:no effect if key not found
1151
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001152PySet_New:PyObject*::+1:
1153PySet_New:PyObject*:iterable:0:
1154
Thomas Wouters477c8d52006-05-27 19:21:47 +00001155PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001156PySet_Pop:PyObject*:set:0:
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001157
1158PySet_Size:int:::
1159PySet_Size:PyObject*:anyset:0:
1160
Fred Drake23a78cf2001-09-24 15:29:47 +00001161PySlice_Check:int:::
1162PySlice_Check:PyObject*:ob:0:
1163
1164PySlice_New:PyObject*::+1:
1165PySlice_New:PyObject*:start:0:
1166PySlice_New:PyObject*:stop:0:
1167PySlice_New:PyObject*:step:0:
1168
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001169PyString_AS_STRING:char*:::
1170PyString_AS_STRING:PyObject*:string:0:
1171
Fred Drakeb2625eb2001-05-29 15:34:06 +00001172PyString_AsDecodedObject:PyObject*::+1:
1173PyString_AsDecodedObject:PyObject*:str:0:
1174PyString_AsDecodedObject:const char*:encoding::
1175PyString_AsDecodedObject:const char*:errors::
1176
1177PyString_AsEncodedObject:PyObject*::+1:
1178PyString_AsEncodedObject:PyObject*:str:0:
1179PyString_AsEncodedObject:const char*:encoding::
1180PyString_AsEncodedObject:const char*:errors::
1181
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001182PyString_AsString:char*:::
1183PyString_AsString:PyObject*:string:0:
1184
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +00001185PyString_AsStringAndSize:int:::
1186PyString_AsStringAndSize:PyObject*:obj:0:
1187PyString_AsStringAndSize:char**:buffer::
1188PyString_AsStringAndSize:int*:length::
1189
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001190PyString_Check:int:::
1191PyString_Check:PyObject*:o:0:
1192
1193PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001194PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001195PyString_Concat:PyObject*:newpart:0:
1196
1197PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001198PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001199PyString_ConcatAndDel:PyObject*:newpart:-1:
1200
1201PyString_Format:PyObject*::+1:
1202PyString_Format:PyObject*:format:0:
1203PyString_Format:PyObject*:args:0:
1204
1205PyString_FromString:PyObject*::+1:
1206PyString_FromString:const char*:v::
1207
1208PyString_FromStringAndSize:PyObject*::+1:
1209PyString_FromStringAndSize:const char*:v::
1210PyString_FromStringAndSize:int:len::
1211
Barry Warsaw8c64a542001-08-28 02:32:04 +00001212PyString_FromFormat:PyObject*::+1:
1213PyString_FromFormat:const char*:format::
1214PyString_FromFormat::...::
1215
1216PyString_FromFormatV:PyObject*::+1:
1217PyString_FromFormatV:const char*:format::
1218PyString_FromFormatV:va_list:vargs::
1219
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001220PyString_GET_SIZE:int:::
1221PyString_GET_SIZE:PyObject*:string:0:
1222
1223PyString_InternFromString:PyObject*::+1:
1224PyString_InternFromString:const char*:v::
1225
1226PyString_InternInPlace:void:::
1227PyString_InternInPlace:PyObject**:string:+1:???
1228
1229PyString_Size:int:::
1230PyString_Size:PyObject*:string:0:
1231
Marc-André Lemburg47073202000-07-07 15:48:54 +00001232PyString_Decode:PyObject*::+1:
1233PyString_Decode:const char*:s::
1234PyString_Decode:int:size::
1235PyString_Decode:const char*:encoding::
1236PyString_Decode:const char*:errors::
1237
1238PyString_Encode:PyObject*::+1:
1239PyString_Encode:const char*:s::
1240PyString_Encode:int:size::
1241PyString_Encode:const char*:encoding::
1242PyString_Encode:const char*:errors::
1243
1244PyString_AsEncodedString:PyObject*::+1:
1245PyString_AsEncodedString:PyObject*:str::
1246PyString_AsEncodedString:const char*:encoding::
1247PyString_AsEncodedString:const char*:errors::
1248
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001249PySys_SetArgv:int:::
1250PySys_SetArgv:int:argc::
1251PySys_SetArgv:char**:argv::
1252
1253PyThreadState_Clear:void:::
1254PyThreadState_Clear:PyThreadState*:tstate::
1255
1256PyThreadState_Delete:void:::
1257PyThreadState_Delete:PyThreadState*:tstate::
1258
1259PyThreadState_Get:PyThreadState*:::
1260
Fred Drakeb2625eb2001-05-29 15:34:06 +00001261PyThreadState_GetDict:PyObject*::0:
1262
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001263PyThreadState_New:PyThreadState*:::
1264PyThreadState_New:PyInterpreterState*:interp::
1265
1266PyThreadState_Swap:PyThreadState*:::
1267PyThreadState_Swap:PyThreadState*:tstate::
1268
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001269PyTime_FromTime:PyObject*::+1:
1270PyTime_FromTime:int:hour::
1271PyTime_FromTime:int:minute::
1272PyTime_FromTime:int:second::
1273PyTime_FromTime:int:usecond::
1274
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001275PyTuple_Check:int:::
1276PyTuple_Check:PyObject*:p:0:
1277
1278PyTuple_GET_ITEM:PyObject*::0:
1279PyTuple_GET_ITEM:PyTupleObject*:p:0:
1280PyTuple_GET_ITEM:int:pos::
1281
1282PyTuple_GetItem:PyObject*::0:
1283PyTuple_GetItem:PyTupleObject*:p:0:
1284PyTuple_GetItem:int:pos::
1285
1286PyTuple_GetSlice:PyObject*::+1:
1287PyTuple_GetSlice:PyTupleObject*:p:0:
1288PyTuple_GetSlice:int:low::
1289PyTuple_GetSlice:int:high::
1290
1291PyTuple_New:PyObject*::+1:
1292PyTuple_New:int:len::
1293
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001294PyTuple_Pack:PyObject*::+1:
1295PyTuple_Pack:int:len::
1296PyTuple_Pack:PyObject*:...:0:
1297
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001298PyTuple_SET_ITEM:void:::
1299PyTuple_SET_ITEM:PyTupleObject*:p:0:
1300PyTuple_SET_ITEM:int:pos::
1301PyTuple_SET_ITEM:PyObject*:o:0:
1302
1303PyTuple_SetItem:int:::
1304PyTuple_SetItem:PyTupleObject*:p:0:
1305PyTuple_SetItem:int:pos::
1306PyTuple_SetItem:PyObject*:o:0:
1307
1308PyTuple_Size:int:::
1309PyTuple_Size:PyTupleObject*:p:0:
1310
Fred Drake1b58bff2001-10-29 17:43:14 +00001311PyType_GenericAlloc:PyObject*::+1:
1312PyType_GenericAlloc:PyObject*:type:0:
1313PyType_GenericAlloc:int:nitems:0:
1314
1315PyType_GenericNew:PyObject*::+1:
1316PyType_GenericNew:PyObject*:type:0:
1317PyType_GenericNew:PyObject*:args:0:
1318PyType_GenericNew:PyObject*:kwds:0:
1319
Fred Drake992fe5a2000-06-16 21:04:15 +00001320PyUnicode_Check:int:::
1321PyUnicode_Check:PyObject*:o:0:
1322
1323PyUnicode_GET_SIZE:int:::
1324PyUnicode_GET_SIZE:PyObject*:o:0:
1325
1326PyUnicode_GET_DATA_SIZE:int:::
1327PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1328
1329PyUnicode_AS_UNICODE:Py_UNICODE*:::
1330PyUnicode_AS_UNICODE:PyObject*:o:0:
1331
1332PyUnicode_AS_DATA:const char*:::
1333PyUnicode_AS_DATA:PyObject*:o:0:
1334
1335Py_UNICODE_ISSPACE:int:::
1336Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1337
1338Py_UNICODE_ISLOWER:int:::
1339Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1340
1341Py_UNICODE_ISUPPER:int:::
1342Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1343
1344Py_UNICODE_ISTITLE:int:::
1345Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1346
1347Py_UNICODE_ISLINEBREAK:int:::
1348Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1349
1350Py_UNICODE_ISDECIMAL:int:::
1351Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1352
1353Py_UNICODE_ISDIGIT:int:::
1354Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1355
1356Py_UNICODE_ISNUMERIC:int:::
1357Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1358
1359Py_UNICODE_TOLOWER:Py_UNICODE:::
1360Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1361
1362Py_UNICODE_TOUPPER:Py_UNICODE:::
1363Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1364
1365Py_UNICODE_TOTITLE:Py_UNICODE:::
1366Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1367
1368Py_UNICODE_TODECIMAL:int:::
1369Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1370
1371Py_UNICODE_TODIGIT:int:::
1372Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1373
1374Py_UNICODE_TONUMERIC:double:::
1375Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1376
1377PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001378PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001379PyUnicode_FromUnicode:int:size::
1380
1381PyUnicode_AsUnicode:Py_UNICODE*:::
1382PyUnicode_AsUnicode:PyObject :*unicode:0:
1383
1384PyUnicode_GetSize:int:::
1385PyUnicode_GetSize:PyObject :*unicode:0:
1386
1387PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001388PyUnicode_FromObject:PyObject*:*obj:0:
1389
1390PyUnicode_FromEncodedObject:PyObject*::+1:
1391PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1392PyUnicode_FromEncodedObject:const char*:encoding::
1393PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001394
1395PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001396PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001397PyUnicode_FromWideChar:int:size::
1398
1399PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001400PyUnicode_AsWideChar:PyObject*:*unicode:0:
1401PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001402PyUnicode_AsWideChar:int:size::
1403
1404PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001405PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001406PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001407PyUnicode_Decode:const char*:encoding::
1408PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001409
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001410PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1411PyUnicode_DecodeUTF16Stateful:const char*:s::
1412PyUnicode_DecodeUTF16Stateful:int:size::
1413PyUnicode_DecodeUTF16Stateful:const char*:errors::
1414PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1415PyUnicode_DecodeUTF16Stateful:int*:consumed::
1416
1417PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1418PyUnicode_DecodeUTF8Stateful:const char*:s::
1419PyUnicode_DecodeUTF8Stateful:int:size::
1420PyUnicode_DecodeUTF8Stateful:const char*:errors::
1421PyUnicode_DecodeUTF8Stateful:int*:consumed::
1422
Fred Drake992fe5a2000-06-16 21:04:15 +00001423PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001424PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001425PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001426PyUnicode_Encode:const char*:encoding::
1427PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001428
1429PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001430PyUnicode_AsEncodedString:PyObject*:unicode::
1431PyUnicode_AsEncodedString:const char*:encoding::
1432PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001433
1434PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001435PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001436PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001437PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001438
1439PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001440PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001441PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001442PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001443
1444PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001445PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001446
1447PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001448PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001449PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001450PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001451PyUnicode_DecodeUTF16:int*:byteorder::
1452
1453PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001454PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001455PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001456PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001457PyUnicode_EncodeUTF16:int:byteorder::
1458
1459PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001460PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001461
1462PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001463PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001464PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001465PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001466
1467PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001468PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001469PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001470PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001471
1472PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001473PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001474
1475PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001476PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001477PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001478PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001479
1480PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001481PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001482PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001483PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001484
1485PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001486PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001487
1488PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001489PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001490PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001491PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001492
1493PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001494PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001495PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001496PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001497
1498PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001499PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001500
1501PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001502PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001503PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001504PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001505
1506PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001507PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001508PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001509PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001510
1511PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001512PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001513
1514PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001515PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001516PyUnicode_DecodeCharmap:int:size::
1517PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001518PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001519
1520PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001521PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001522PyUnicode_EncodeCharmap:int:size::
1523PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001524PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001525
1526PyUnicode_AsCharmapString:PyObject*::+1:
1527PyUnicode_AsCharmapString:PyObject*:unicode:0:
1528PyUnicode_AsCharmapString:PyObject*:mapping:0:
1529
1530PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001531PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001532PyUnicode_TranslateCharmap:int:size::
1533PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001534PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001535
1536PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001537PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001538PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001539PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001540
1541PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001542PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001543PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001544PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001545
1546PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001547PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001548
1549PyUnicode_Concat:PyObject*::+1:
1550PyUnicode_Concat:PyObject*:left:0:
1551PyUnicode_Concat:PyObject*:right:0:
1552
1553PyUnicode_Split:PyObject*::+1:
1554PyUnicode_Split:PyObject*:left:0:
1555PyUnicode_Split:PyObject*:right:0:
1556PyUnicode_Split:int:maxsplit::
1557
1558PyUnicode_Splitlines:PyObject*::+1:
1559PyUnicode_Splitlines:PyObject*:s:0:
1560PyUnicode_Splitlines:int:maxsplit::
1561
1562PyUnicode_Translate:PyObject*::+1:
1563PyUnicode_Translate:PyObject*:str:0:
1564PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001565PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001566
1567PyUnicode_Join:PyObject*::+1:
1568PyUnicode_Join:PyObject*:separator:0:
1569PyUnicode_Join:PyObject*:seq:0:
1570
1571PyUnicode_Tailmatch:PyObject*::+1:
1572PyUnicode_Tailmatch:PyObject*:str:0:
1573PyUnicode_Tailmatch:PyObject*:substr:0:
1574PyUnicode_Tailmatch:int:start::
1575PyUnicode_Tailmatch:int:end::
1576PyUnicode_Tailmatch:int:direction::
1577
Fred Drake1d1e1db2002-06-20 22:07:04 +00001578PyUnicode_Find:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001579PyUnicode_Find:PyObject*:str:0:
1580PyUnicode_Find:PyObject*:substr:0:
1581PyUnicode_Find:int:start::
1582PyUnicode_Find:int:end::
1583PyUnicode_Find:int:direction::
1584
Fred Drake1d1e1db2002-06-20 22:07:04 +00001585PyUnicode_Count:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001586PyUnicode_Count:PyObject*:str:0:
1587PyUnicode_Count:PyObject*:substr:0:
1588PyUnicode_Count:int:start::
1589PyUnicode_Count:int:end::
1590
1591PyUnicode_Replace:PyObject*::+1:
1592PyUnicode_Replace:PyObject*:str:0:
1593PyUnicode_Replace:PyObject*:substr:0:
1594PyUnicode_Replace:PyObject*:replstr:0:
1595PyUnicode_Replace:int:maxcount::
1596
1597PyUnicode_Compare:int:::
1598PyUnicode_Compare:PyObject*:left:0:
1599PyUnicode_Compare:PyObject*:right:0:
1600
1601PyUnicode_Format:PyObject*::+1:
1602PyUnicode_Format:PyObject*:format:0:
1603PyUnicode_Format:PyObject*:args:0:
1604
1605PyUnicode_Contains:int:::
1606PyUnicode_Contains:PyObject*:container:0:
1607PyUnicode_Contains:PyObject*:element:0:
1608
Fred Drake1b58bff2001-10-29 17:43:14 +00001609PyWeakref_GET_OBJECT:PyObject*::0:
1610PyWeakref_GET_OBJECT:PyObject*:ref:0:
1611
Fred Drake8371e842002-02-20 05:07:36 +00001612PyWeakref_GetObject:PyObject*::0:
Fred Drake1b58bff2001-10-29 17:43:14 +00001613PyWeakref_GetObject:PyObject*:ref:0:
1614
1615PyWeakref_NewProxy:PyObject*::+1:
1616PyWeakref_NewProxy:PyObject*:ob:0:
1617PyWeakref_NewProxy:PyObject*:callback:0:
1618
1619PyWeakref_NewRef:PyObject*::+1:
1620PyWeakref_NewRef:PyObject*:ob:0:
1621PyWeakref_NewRef:PyObject*:callback:0:
1622
1623PyWrapper_New:PyObject*::+1:
1624PyWrapper_New:PyObject*:d:0:
1625PyWrapper_New:PyObject*:self:0:
1626
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001627Py_AtExit:int:::
1628Py_AtExit:void (*)():func::
1629
Fred Drake6d988552001-07-20 20:55:31 +00001630Py_BuildValue:PyObject*::+1:
1631Py_BuildValue:char*:format::
1632
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001633Py_CompileString:PyObject*::+1:
1634Py_CompileString:char*:str::
1635Py_CompileString:char*:filename::
1636Py_CompileString:int:start::
1637
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001638Py_CompileStringFlags:PyObject*::+1:
1639Py_CompileStringFlags:char*:str::
1640Py_CompileStringFlags:char*:filename::
1641Py_CompileStringFlags:int:start::
1642Py_CompileStringFlags:PyCompilerFlags*:flags::
1643
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001644Py_DECREF:void:::
1645Py_DECREF:PyObject*:o:-1:
1646
1647Py_EndInterpreter:void:::
1648Py_EndInterpreter:PyThreadState*:tstate::
1649
1650Py_Exit:void:::
1651Py_Exit:int:status::
1652
1653Py_FatalError:void:::
1654Py_FatalError:char*:message::
1655
1656Py_FdIsInteractive:int:::
1657Py_FdIsInteractive:FILE*:fp::
1658Py_FdIsInteractive:char*:filename::
1659
1660Py_Finalize:void:::
1661
Fred Drake8520cc22000-04-10 19:38:24 +00001662Py_FindMethod:PyObject*::+1:
1663Py_FindMethod:PyMethodDef[]:methods::
1664Py_FindMethod:PyObject*:self:+1:
1665Py_FindMethod:char*:name::
1666
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001667Py_GetBuildInfoconst:char*:::
1668
1669Py_GetCompilerconst:char*:::
1670
1671Py_GetCopyrightconst:char*:::
1672
1673Py_GetExecPrefix:char*:::
1674
1675Py_GetPath:char*:::
1676
1677Py_GetPlatformconst:char*:::
1678
1679Py_GetPrefix:char*:::
1680
1681Py_GetProgramFullPath:char*:::
1682
1683Py_GetProgramName:char*:::
1684
1685Py_GetVersionconst:char*:::
1686
1687Py_INCREF:void:::
1688Py_INCREF:PyObject*:o:+1:
1689
1690Py_Initialize:void:::
1691
1692Py_IsInitialized:int:::
1693
1694Py_NewInterpreter:PyThreadState*:::
1695
1696Py_SetProgramName:void:::
1697Py_SetProgramName:char*:name::
1698
1699Py_XDECREF:void:::
1700Py_XDECREF:PyObject*:o:-1:if o is not NULL
1701
1702Py_XINCREF:void:::
1703Py_XINCREF:PyObject*:o:+1:if o is not NULL
1704
1705_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1706_PyImport_FindExtension:char*:::
1707_PyImport_FindExtension:char*:::
1708
1709_PyImport_Fini:void:::
1710
1711_PyImport_FixupExtension:PyObject*:::???
1712_PyImport_FixupExtension:char*:::
1713_PyImport_FixupExtension:char*:::
1714
1715_PyImport_Init:void:::
1716
Fred Drakef913e542000-09-12 20:17:17 +00001717_PyObject_Del:void:::
1718_PyObject_Del:PyObject*:op:0:
1719
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001720_PyObject_New:PyObject*::+1:
1721_PyObject_New:PyTypeObject*:type:0:
1722
Fred Drake8e0c09d2001-07-06 23:31:49 +00001723_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001724_PyObject_NewVar:PyTypeObject*:type:0:
1725_PyObject_NewVar:int:size::
1726
1727_PyString_Resize:int:::
1728_PyString_Resize:PyObject**:string:+1:
1729_PyString_Resize:int:newsize::
1730
1731_PyTuple_Resize:int:::
1732_PyTuple_Resize:PyTupleObject**:p:+1:
1733_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001734
1735_Py_c_diff:Py_complex:::
1736_Py_c_diff:Py_complex:left::
1737_Py_c_diff:Py_complex:right::
1738
1739_Py_c_neg:Py_complex:::
1740_Py_c_neg:Py_complex:complex::
1741
1742_Py_c_pow:Py_complex:::
1743_Py_c_pow:Py_complex:num::
1744_Py_c_pow:Py_complex:exp::
1745
1746_Py_c_prod:Py_complex:::
1747_Py_c_prod:Py_complex:left::
1748_Py_c_prod:Py_complex:right::
1749
1750_Py_c_quot:Py_complex:::
1751_Py_c_quot:Py_complex:dividend::
1752_Py_c_quot:Py_complex:divisor::
1753
1754_Py_c_sum:Py_complex:::
1755_Py_c_sum:Py_complex:left::
1756_Py_c_sum:Py_complex:right::