blob: 7bba011d77359bba25b76e00955c9aeb4856c6df [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
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000306PyEval_AcquireLock:void:::
307
308PyEval_AcquireThread:void:::
309PyEval_AcquireThread:PyThreadState*:tstate::
310
311PyEval_InitThreads:void:::
312
313PyEval_ReleaseLock:void:::
314
315PyEval_ReleaseThread:void:::
316PyEval_ReleaseThread:PyThreadState*:tstate::
317
318PyEval_RestoreThread:void:::
319PyEval_RestoreThread:PyThreadState*:tstate::
320
321PyEval_SaveThread:PyThreadState*:::
322
Fred Drake4ca744c2000-08-12 03:39:47 +0000323PyEval_EvalCode:PyObject*::+1:
324PyEval_EvalCode:PyCodeObject*:co:0:
325PyEval_EvalCode:PyObject*:globals:0:
326PyEval_EvalCode:PyObject*:locals:0:
327
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000328PyFile_AsFile:FILE*:::
329PyFile_AsFile:PyFileObject*:p:0:
330
331PyFile_Check:int:::
332PyFile_Check:PyObject*:p:0:
333
334PyFile_FromFile:PyObject*::+1:
335PyFile_FromFile:FILE*:fp::
336PyFile_FromFile:char*:name::
337PyFile_FromFile:char*:mode::
338PyFile_FromFile:int(*:close)::
339
340PyFile_FromString:PyObject*::+1:
341PyFile_FromString:char*:name::
342PyFile_FromString:char*:mode::
343
344PyFile_GetLine:PyObject*::+1:
345PyFile_GetLine:PyObject*:p::
346PyFile_GetLine:int:n::
347
348PyFile_Name:PyObject*::0:
349PyFile_Name:PyObject*:p:0:
350
351PyFile_SetBufSize:void:::
352PyFile_SetBufSize:PyFileObject*:p:0:
353PyFile_SetBufSize:int:n::
354
355PyFile_SoftSpace:int:::
356PyFile_SoftSpace:PyFileObject*:p:0:
357PyFile_SoftSpace:int:newflag::
358
359PyFile_WriteObject:int:::
360PyFile_WriteObject:PyObject*:obj:0:
361PyFile_WriteObject:PyFileObject*:p:0:
362PyFile_WriteObject:int:flags::
363
364PyFile_WriteString:int:::
Fred Drake454af892001-11-29 22:42:59 +0000365PyFile_WriteString:const char*:s::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000366PyFile_WriteString:PyFileObject*:p:0:
367PyFile_WriteString:int:flags::
368
369PyFloat_AS_DOUBLE:double:::
370PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
371
372PyFloat_AsDouble:double:::
373PyFloat_AsDouble:PyObject*:pyfloat:0:
374
375PyFloat_Check:int:::
376PyFloat_Check:PyObject*:p:0:
377
378PyFloat_FromDouble:PyObject*::+1:
379PyFloat_FromDouble:double:v::
380
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000381PyFloat_FromString:PyObject*::+1:
382PyFloat_FromString:PyObject*:str:0:
383PyFloat_FromString:char**:pend:0:ignored
384
385PyFrozenSet_New:PyObject*::+1:
386PyFrozenSet_New:PyObject*:iterable:0:
387
Georg Brandl9b743f52006-02-20 12:57:53 +0000388PyFunction_GetClosure:PyObject*::0:
389PyFunction_GetClosure:PyObject*:op:0:
390
391PyFunction_GetCode:PyObject*::0:
392PyFunction_GetCode:PyObject*:op:0:
393
394PyFunction_GetDefaults:PyObject*::0:
395PyFunction_GetDefaults:PyObject*:op:0:
396
397PyFunction_GetGlobals:PyObject*::0:
398PyFunction_GetGlobals:PyObject*:op:0:
399
400PyFunction_GetModule:PyObject*::0:
401PyFunction_GetModule:PyObject*:op:0:
402
403PyFunction_New:PyObject*::+1:
404PyFunction_New:PyObject*:code:+1:
405PyFunction_New:PyObject*:globals:+1:
406
407PyFunction_SetClosure:int:::
408PyFunction_SetClosure:PyObject*:op:0:
409PyFunction_SetClosure:PyObject*:closure:+1:
410
411PyFunction_SetDefaults:int:::
412PyFunction_SetDefaults:PyObject*:op:0:
413PyFunction_SetDefaults:PyObject*:defaults:+1:
414
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000415PyGen_New:PyObject*::+1:
416PyGen_New:PyFrameObject*:frame:0:
417
Fred Drakeee814bf2000-11-28 22:34:32 +0000418Py_InitModule:PyObject*::0:
Georg Brandl9b743f52006-02-20 12:57:53 +0000419Py_InitModule:char*:name::
420Py_InitModule:PyMethodDef[]:methods::
Fred Drakeee814bf2000-11-28 22:34:32 +0000421
422Py_InitModule3:PyObject*::0:
Georg Brandl9b743f52006-02-20 12:57:53 +0000423Py_InitModule3:char*:name::
424Py_InitModule3:PyMethodDef[]:methods::
425Py_InitModule3:char*:doc::
Fred Drakeee814bf2000-11-28 22:34:32 +0000426
427Py_InitModule4:PyObject*::0:
Georg Brandl9b743f52006-02-20 12:57:53 +0000428Py_InitModule4:char*:name::
429Py_InitModule4:PyMethodDef[]:methods::
430Py_InitModule4:char*:doc::
431Py_InitModule4:PyObject*:self::
432Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
Fred Drakeee814bf2000-11-28 22:34:32 +0000433
Fred Drake805bf1b1999-10-20 16:03:38 +0000434PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000435PyImport_AddModule:char*:name::
436
437PyImport_Cleanup:void:::
438
439PyImport_ExecCodeModule:PyObject*::+1:
440PyImport_ExecCodeModule:char*:name::
441PyImport_ExecCodeModule:PyObject*:co:0:
442
443PyImport_GetMagicNumber:long:::
444
445PyImport_GetModuleDict:PyObject*::0:
446
447PyImport_Import:PyObject*::+1:
448PyImport_Import:PyObject*:name:0:
449
450PyImport_ImportFrozenModule:int:::
451PyImport_ImportFrozenModule:char*:::
452
Fred Drakeeb725cd2000-04-03 15:06:40 +0000453PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000454PyImport_ImportModule:char*:name::
455
Fred Drakeeb725cd2000-04-03 15:06:40 +0000456PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000457PyImport_ImportModuleEx:char*:name::
458PyImport_ImportModuleEx:PyObject*:globals:0:???
459PyImport_ImportModuleEx:PyObject*:locals:0:???
460PyImport_ImportModuleEx:PyObject*:fromlist:0:???
461
Fred Drakeeb725cd2000-04-03 15:06:40 +0000462PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000463PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000464
Fred Drake5838d0f2001-01-28 06:39:35 +0000465PyInstance_New:PyObject*::+1:
466PyInstance_New:PyObject*:klass:+1:
467PyInstance_New:PyObject*:arg:0:
468PyInstance_New:PyObject*:kw:0:
469
470PyInstance_NewRaw:PyObject*::+1:
471PyInstance_NewRaw:PyObject*:klass:+1:
472PyInstance_NewRaw:PyObject*:dict:+1:
473
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000474PyInt_AS_LONG:long:::
475PyInt_AS_LONG:PyIntObject*:io:0:
476
477PyInt_AsLong:long:::
478PyInt_AsLong:PyObject*:io:0:
479
480PyInt_Check:int:::
Fred Drake9c75ff72001-09-06 18:06:46 +0000481PyInt_Check:PyObject*:op:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000482
483PyInt_FromLong:PyObject*::+1:
484PyInt_FromLong:long:ival::
485
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000486PyInt_FromString:PyObject*::+1:
487PyInt_FromString:char*:str:0:
488PyInt_FromString:char**:pend:0:
489PyInt_FromString:int:base:0:
490
491PyInt_FromSsize_t:PyObject*::+1:
492PyInt_FromSsize_t:Py_ssize_t:ival::
493
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000494PyInt_GetMax:long:::
495
496PyInterpreterState_Clear:void:::
497PyInterpreterState_Clear:PyInterpreterState*:interp::
498
499PyInterpreterState_Delete:void:::
500PyInterpreterState_Delete:PyInterpreterState*:interp::
501
502PyInterpreterState_New:PyInterpreterState*:::
503
Fred Drakeb2625eb2001-05-29 15:34:06 +0000504PyIter_Check:int:o:0:
505
506PyIter_Next:PyObject*::+1:
507PyIter_Next:PyObject*:o:0:
508
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000509PyList_Append:int:::
510PyList_Append:PyObject*:list:0:
511PyList_Append:PyObject*:item:+1:
512
513PyList_AsTuple:PyObject*::+1:
514PyList_AsTuple:PyObject*:list:0:
515
516PyList_Check:int:::
517PyList_Check:PyObject*:p:0:
518
519PyList_GET_ITEM:PyObject*::0:
520PyList_GET_ITEM:PyObject*:list:0:
521PyList_GET_ITEM:int:i:0:
522
523PyList_GET_SIZE:int:::
524PyList_GET_SIZE:PyObject*:list:0:
525
526PyList_GetItem:PyObject*::0:
527PyList_GetItem:PyObject*:list:0:
528PyList_GetItem:int:index::
529
530PyList_GetSlice:PyObject*::+1:
531PyList_GetSlice:PyObject*:list:0:
532PyList_GetSlice:int:low::
533PyList_GetSlice:int:high::
534
535PyList_Insert:int:::
536PyList_Insert:PyObject*:list:0:
537PyList_Insert:int:index::
538PyList_Insert:PyObject*:item:+1:
539
540PyList_New:PyObject*::+1:
541PyList_New:int:len::
542
543PyList_Reverse:int:::
544PyList_Reverse:PyObject*:list:0:
545
Fred Draked8548312001-07-10 16:19:13 +0000546PyList_SET_ITEM:void:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000547PyList_SET_ITEM:PyObject*:list:0:
548PyList_SET_ITEM:int:i::
549PyList_SET_ITEM:PyObject*:o:0:
550
551PyList_SetItem:int:::
552PyList_SetItem:PyObject*:list:0:
553PyList_SetItem:int:index::
554PyList_SetItem:PyObject*:item:0:
555
556PyList_SetSlice:int:::
557PyList_SetSlice:PyObject*:list:0:
558PyList_SetSlice:int:low::
559PyList_SetSlice:int:high::
560PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
561
562PyList_Size:int:::
563PyList_Size:PyObject*:list:0:
564
565PyList_Sort:int:::
566PyList_Sort:PyObject*:list:0:
567
568PyLong_AsDouble:double:::
569PyLong_AsDouble:PyObject*:pylong:0:
570
571PyLong_AsLong:long:::
572PyLong_AsLong:PyObject*:pylong:0:
573
574PyLong_AsUnsignedLong:unsigned long:::
575PyLong_AsUnsignedLong:PyObject*:pylong:0:
576
577PyLong_Check:int:::
578PyLong_Check:PyObject*:p:0:
579
580PyLong_FromDouble:PyObject*::+1:
581PyLong_FromDouble:double:v::
582
583PyLong_FromLong:PyObject*::+1:
584PyLong_FromLong:long:v::
585
Fred Drakef47d8ef2001-09-20 19:18:52 +0000586PyLong_FromLongLong:PyObject*::+1:
587PyLong_FromLongLong:long long:v::
588
589PyLong_FromUnsignedLongLong:PyObject*::+1:
590PyLong_FromUnsignedLongLong:unsigned long long:v::
591
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000592PyLong_FromString:PyObject*::+1:
593PyLong_FromString:char*:str::
594PyLong_FromString:char**:pend::
595PyLong_FromString:int:base::
596
Fred Drakef47d8ef2001-09-20 19:18:52 +0000597PyLong_FromUnicode:PyObject*::+1:
598PyLong_FromUnicode:Py_UNICODE:u::
599PyLong_FromUnicode:int:length::
600PyLong_FromUnicode:int:base::
601
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000602PyLong_FromUnsignedLong:PyObject*::+1:
603PyLong_FromUnsignedLong:unsignedlong:v::
604
Fred Drakef47d8ef2001-09-20 19:18:52 +0000605PyLong_FromVoidPtr:PyObject*::+1:
606PyLong_FromVoidPtr:void*:p::
607
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000608PyMapping_Check:int:::
609PyMapping_Check:PyObject*:o:0:
610
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000611PyMapping_DelItem:int:::
612PyMapping_DelItem:PyObject*:o:0:
613PyMapping_DelItem:PyObject*:key:0:
614
615PyMapping_DelItemString:int:::
616PyMapping_DelItemString:PyObject*:o:0:
617PyMapping_DelItemString:char*:key::
618
619PyMapping_GetItemString:PyObject*::+1:
620PyMapping_GetItemString:PyObject*:o:0:
621PyMapping_GetItemString:char*:key::
622
623PyMapping_HasKey:int:::
624PyMapping_HasKey:PyObject*:o:0:
625PyMapping_HasKey:PyObject*:key::
626
627PyMapping_HasKeyString:int:::
628PyMapping_HasKeyString:PyObject*:o:0:
629PyMapping_HasKeyString:char*:key::
630
631PyMapping_Items:PyObject*::+1:
632PyMapping_Items:PyObject*:o:0:
633
634PyMapping_Keys:PyObject*::+1:
635PyMapping_Keys:PyObject*:o:0:
636
637PyMapping_Length:int:::
638PyMapping_Length:PyObject*:o:0:
639
640PyMapping_SetItemString:int:::
641PyMapping_SetItemString:PyObject*:o:0:
642PyMapping_SetItemString:char*:key::
643PyMapping_SetItemString:PyObject*:v:+1:
644
645PyMapping_Values:PyObject*::+1:
646PyMapping_Values:PyObject*:o:0:
647
Fred Drake1b58bff2001-10-29 17:43:14 +0000648PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
649PyMarshal_ReadLastObjectFromFile:FILE*:file::
650
651PyMarshal_ReadObjectFromFile:PyObject*::+1:
652PyMarshal_ReadObjectFromFile:FILE*:file::
653
654PyMarshal_ReadObjectFromString:PyObject*::+1:
655PyMarshal_ReadObjectFromString:char*:string::
656PyMarshal_ReadObjectFromString:int:len::
657
658PyMarshal_WriteObjectToString:PyObject*::+1:
659PyMarshal_WriteObjectToString:PyObject*:value:0:
660
Fred Drake9c75ff72001-09-06 18:06:46 +0000661PyMethod_Class:PyObject*::0:
662PyMethod_Class:PyObject*:im:0:
663
664PyMethod_Function:PyObject*::0:
665PyMethod_Function:PyObject*:im:0:
666
667PyMethod_GET_CLASS:PyObject*::0:
668PyMethod_GET_CLASS:PyObject*:im:0:
669
670PyMethod_GET_FUNCTION:PyObject*::0:
671PyMethod_GET_FUNCTION:PyObject*:im:0:
672
673PyMethod_GET_SELF:PyObject*::0:
674PyMethod_GET_SELF:PyObject*:im:0:
675
676PyMethod_New:PyObject*::+1:
677PyMethod_New:PyObject*:func:0:
678PyMethod_New:PyObject*:self:0:
679PyMethod_New:PyObject*:class:0:
680
681PyMethod_Self:PyObject*::0:
682PyMethod_Self:PyObject*:im:0:
683
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000684PyModule_GetDict:PyObject*::0:
685PyModule_GetDict::PyObject* module:0:
686
687PyModule_GetFilename:char*:::
688PyModule_GetFilename:PyObject*:module:0:
689
690PyModule_GetName:char*:::
691PyModule_GetName:PyObject*:module:0:
692
693PyModule_New:PyObject*::+1:
694PyModule_New::char* name::
695
696PyNumber_Absolute:PyObject*::+1:
697PyNumber_Absolute:PyObject*:o:0:
698
699PyNumber_Add:PyObject*::+1:
700PyNumber_Add:PyObject*:o1:0:
701PyNumber_Add:PyObject*:o2:0:
702
703PyNumber_And:PyObject*::+1:
704PyNumber_And:PyObject*:o1:0:
705PyNumber_And:PyObject*:o2:0:
706
707PyNumber_Check:PyObject*:o:0:
708PyNumber_Check:int:::
709
710PyNumber_Coerce:int:::
711PyNumber_Coerce:PyObject**:p1:+1:
712PyNumber_Coerce:PyObject**:p2:+1:
713
714PyNumber_Divide:PyObject*::+1:
715PyNumber_Divide:PyObject*:o1:0:
716PyNumber_Divide:PyObject*:o2:0:
717
718PyNumber_Divmod:PyObject*::+1:
719PyNumber_Divmod:PyObject*:o1:0:
720PyNumber_Divmod:PyObject*:o2:0:
721
722PyNumber_Float:PyObject*::+1:
723PyNumber_Float:PyObject*:o:0:
724
Fred Drake03590c62001-08-08 18:50:18 +0000725PyNumber_FloorDivide:PyObject*::+1:
726PyNumber_FloorDivide:PyObject*:v:0:
727PyNumber_FloorDivide:PyObject*:w:0:
728
Fred Drake1fa93652000-09-22 18:19:37 +0000729PyNumber_InPlaceAdd:PyObject*::+1:
730PyNumber_InPlaceAdd:PyObject*:v:0:
731PyNumber_InPlaceAdd:PyObject*:w:0:
732
733PyNumber_InPlaceAnd:PyObject*::+1:
734PyNumber_InPlaceAnd:PyObject*:v:0:
735PyNumber_InPlaceAnd:PyObject*:w:0:
736
737PyNumber_InPlaceDivide:PyObject*::+1:
738PyNumber_InPlaceDivide:PyObject*:v:0:
739PyNumber_InPlaceDivide:PyObject*:w:0:
740
Fred Drake03590c62001-08-08 18:50:18 +0000741PyNumber_InPlaceFloorDivide:PyObject*::+1:
742PyNumber_InPlaceFloorDivide:PyObject*:v:0:
743PyNumber_InPlaceFloorDivide:PyObject*:w:0:
744
Fred Drake1fa93652000-09-22 18:19:37 +0000745PyNumber_InPlaceLshift:PyObject*::+1:
746PyNumber_InPlaceLshift:PyObject*:v:0:
747PyNumber_InPlaceLshift:PyObject*:w:0:
748
749PyNumber_InPlaceMultiply:PyObject*::+1:
750PyNumber_InPlaceMultiply:PyObject*:v:0:
751PyNumber_InPlaceMultiply:PyObject*:w:0:
752
753PyNumber_InPlaceOr:PyObject*::+1:
754PyNumber_InPlaceOr:PyObject*:v:0:
755PyNumber_InPlaceOr:PyObject*:w:0:
756
757PyNumber_InPlacePower:PyObject*::+1:
758PyNumber_InPlacePower:PyObject*:v:0:
759PyNumber_InPlacePower:PyObject*:w:0:
760PyNumber_InPlacePower:PyObject*:z:0:
761
762PyNumber_InPlaceRemainder:PyObject*::+1:
763PyNumber_InPlaceRemainder:PyObject*:v:0:
764PyNumber_InPlaceRemainder:PyObject*:w:0:
765
766PyNumber_InPlaceRshift:PyObject*::+1:
767PyNumber_InPlaceRshift:PyObject*:v:0:
768PyNumber_InPlaceRshift:PyObject*:w:0:
769
770PyNumber_InPlaceSubtract:PyObject*::+1:
771PyNumber_InPlaceSubtract:PyObject*:v:0:
772PyNumber_InPlaceSubtract:PyObject*:w:0:
773
Fred Drake03590c62001-08-08 18:50:18 +0000774PyNumber_InPlaceTrueDivide:PyObject*::+1:
775PyNumber_InPlaceTrueDivide:PyObject*:v:0:
776PyNumber_InPlaceTrueDivide:PyObject*:w:0:
777
Fred Drake1fa93652000-09-22 18:19:37 +0000778PyNumber_InPlaceXor:PyObject*::+1:
779PyNumber_InPlaceXor:PyObject*:v:0:
780PyNumber_InPlaceXor:PyObject*:w:0:
781
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000782PyNumber_Int:PyObject*::+1:
783PyNumber_Int:PyObject*:o:0:
784
785PyNumber_Invert:PyObject*::+1:
786PyNumber_Invert:PyObject*:o:0:
787
788PyNumber_Long:PyObject*::+1:
789PyNumber_Long:PyObject*:o:0:
790
791PyNumber_Lshift:PyObject*::+1:
792PyNumber_Lshift:PyObject*:o1:0:
793PyNumber_Lshift:PyObject*:o2:0:
794
795PyNumber_Multiply:PyObject*::+1:
796PyNumber_Multiply:PyObject*:o1:0:
797PyNumber_Multiply:PyObject*:o2:0:
798
799PyNumber_Negative:PyObject*::+1:
800PyNumber_Negative:PyObject*:o:0:
801
802PyNumber_Or:PyObject*::+1:
803PyNumber_Or:PyObject*:o1:0:
804PyNumber_Or:PyObject*:o2:0:
805
806PyNumber_Positive:PyObject*::+1:
807PyNumber_Positive:PyObject*:o:0:
808
809PyNumber_Power:PyObject*::+1:
810PyNumber_Power:PyObject*:o1:0:
811PyNumber_Power:PyObject*:o2:0:
812PyNumber_Power:PyObject*:o3:0:
813
814PyNumber_Remainder:PyObject*::+1:
815PyNumber_Remainder:PyObject*:o1:0:
816PyNumber_Remainder:PyObject*:o2:0:
817
818PyNumber_Rshift:PyObject*::+1:
819PyNumber_Rshift:PyObject*:o1:0:
820PyNumber_Rshift:PyObject*:o2:0:
821
822PyNumber_Subtract:PyObject*::+1:
823PyNumber_Subtract:PyObject*:o1:0:
824PyNumber_Subtract:PyObject*:o2:0:
825
Fred Drake03590c62001-08-08 18:50:18 +0000826PyNumber_TrueDivide:PyObject*::+1:
827PyNumber_TrueDivide:PyObject*:v:0:
828PyNumber_TrueDivide:PyObject*:w:0:
829
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000830PyNumber_Xor:PyObject*::+1:
831PyNumber_Xor:PyObject*:o1:0:
832PyNumber_Xor:PyObject*:o2:0:
833
834PyOS_GetLastModificationTime:long:::
835PyOS_GetLastModificationTime:char*:filename::
836
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000837PyObject_AsFileDescriptor:int:::
838PyObject_AsFileDescriptor:PyObject*:o:0:
839
Fredrik Lundh118be0c2005-12-18 19:39:59 +0000840PyObject_Call:PyObject*::+1:
841PyObject_Call:PyObject*:callable_object:0:
842PyObject_Call:PyObject*:args:0:
843PyObject_Call:PyObject*:kw:0:
844
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000845PyObject_CallFunction:PyObject*::+1:
846PyObject_CallFunction:PyObject*:callable_object:0:
847PyObject_CallFunction:char*:format::
848PyObject_CallFunction::...::
849
Fred Drakeb0c079e2001-10-28 02:39:03 +0000850PyObject_CallFunctionObjArgs:PyObject*::+1:
851PyObject_CallFunctionObjArgs:PyObject*:callable:0:
852PyObject_CallFunctionObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000853
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000854PyObject_CallMethod:PyObject*::+1:
855PyObject_CallMethod:PyObject*:o:0:
856PyObject_CallMethod:char*:m::
857PyObject_CallMethod:char*:format::
858PyObject_CallMethod::...::
859
Fred Drakeb0c079e2001-10-28 02:39:03 +0000860PyObject_CallMethodObjArgs:PyObject*::+1:
861PyObject_CallMethodObjArgs:PyObject*:o:0:
862PyObject_CallMethodObjArgs:char*:name::
863PyObject_CallMethodObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000864
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000865PyObject_CallObject:PyObject*::+1:
866PyObject_CallObject:PyObject*:callable_object:0:
867PyObject_CallObject:PyObject*:args:0:
868
869PyObject_Cmp:int:::
870PyObject_Cmp:PyObject*:o1:0:
871PyObject_Cmp:PyObject*:o2:0:
872PyObject_Cmp:int*:result::
873
874PyObject_Compare:int:::
875PyObject_Compare:PyObject*:o1:0:
876PyObject_Compare:PyObject*:o2:0:
877
878PyObject_DelAttr:int:::
879PyObject_DelAttr:PyObject*:o:0:
880PyObject_DelAttr:PyObject*:attr_name:0:
881
882PyObject_DelAttrString:int:::
883PyObject_DelAttrString:PyObject*:o:0:
884PyObject_DelAttrString:char*:attr_name::
885
886PyObject_DelItem:int:::
887PyObject_DelItem:PyObject*:o:0:
888PyObject_DelItem:PyObject*:key:0:
889
Fred Drake9c75ff72001-09-06 18:06:46 +0000890PyObject_Dir:PyObject*::+1:
891PyObject_Dir:PyObject*:o:0:
892
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000893PyObject_GetAttr:PyObject*::+1:
894PyObject_GetAttr:PyObject*:o:0:
895PyObject_GetAttr:PyObject*:attr_name:0:
896
897PyObject_GetAttrString:PyObject*::+1:
898PyObject_GetAttrString:PyObject*:o:0:
899PyObject_GetAttrString:char*:attr_name::
900
901PyObject_GetItem:PyObject*::+1:
902PyObject_GetItem:PyObject*:o:0:
903PyObject_GetItem:PyObject*:key:0:
904
Fred Drakeb915a382002-10-04 18:58:58 +0000905PyObject_GetIter:PyObject*::+1:
906PyObject_GetIter:PyObject*:o:0:
907
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000908PyObject_HasAttr:int:::
909PyObject_HasAttr:PyObject*:o:0:
910PyObject_HasAttr:PyObject*:attr_name:0:
911
912PyObject_HasAttrString:int:::
913PyObject_HasAttrString:PyObject*:o:0:
914PyObject_HasAttrString:char*:attr_name:0:
915
916PyObject_Hash:int:::
917PyObject_Hash:PyObject*:o:0:
918
919PyObject_IsTrue:int:::
920PyObject_IsTrue:PyObject*:o:0:
921
Fred Drakef913e542000-09-12 20:17:17 +0000922PyObject_Init:PyObject*::0:
923PyObject_Init:PyObject*:op:0:
924
925PyObject_InitVar:PyVarObject*::0:
926PyObject_InitVar:PyVarObject*:op:0:
927
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000928PyObject_Length:int:::
929PyObject_Length:PyObject*:o:0:
930
Fred Drake8e0c09d2001-07-06 23:31:49 +0000931PyObject_NEW:PyObject*::+1:
932
933PyObject_New:PyObject*::+1:
934
935PyObject_NEW_VAR:PyObject*::+1:
936
937PyObject_NewVar:PyObject*::+1:
938
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000939PyObject_Print:int:::
940PyObject_Print:PyObject*:o:0:
941PyObject_Print:FILE*:fp::
942PyObject_Print:int:flags::
943
944PyObject_Repr:PyObject*::+1:
945PyObject_Repr:PyObject*:o:0:
946
Fred Drakea0c5e9f2002-06-14 14:35:56 +0000947PyObject_RichCompare:PyObject*::+1:
948PyObject_RichCompare:PyObject*:o1:0:
949PyObject_RichCompare:PyObject*:o2:0:
950PyObject_RichCompare:int:opid::
951
952PyObject_RichCompareBool:int:::
953PyObject_RichCompareBool:PyObject*:o1:0:
954PyObject_RichCompareBool:PyObject*:o2:0:
955PyObject_RichCompareBool:int:opid::
956
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000957PyObject_SetAttr:int:::
958PyObject_SetAttr:PyObject*:o:0:
959PyObject_SetAttr:PyObject*:attr_name:0:
960PyObject_SetAttr:PyObject*:v:+1:
961
962PyObject_SetAttrString:int:::
963PyObject_SetAttrString:PyObject*:o:0:
964PyObject_SetAttrString:char*:attr_name::
965PyObject_SetAttrString:PyObject*:v:+1:
966
967PyObject_SetItem:int:::
968PyObject_SetItem:PyObject*:o:0:
969PyObject_SetItem:PyObject*:key:0:
970PyObject_SetItem:PyObject*:v:+1:
971
972PyObject_Str:PyObject*::+1:
973PyObject_Str:PyObject*:o:0:
974
975PyObject_Type:PyObject*::+1:
976PyObject_Type:PyObject*:o:0:
977
Fred Drakeb2625eb2001-05-29 15:34:06 +0000978PyObject_Unicode:PyObject*::+1:
979PyObject_Unicode:PyObject*:o:0:
980
Fred Drake805bf1b1999-10-20 16:03:38 +0000981PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000982PyParser_SimpleParseFile:FILE*:fp::
983PyParser_SimpleParseFile:char*:filename::
984PyParser_SimpleParseFile:int:start::
985
Fred Drake805bf1b1999-10-20 16:03:38 +0000986PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000987PyParser_SimpleParseString:char*:str::
988PyParser_SimpleParseString:int:start::
989
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000990PyRun_AnyFile:int:::
991PyRun_AnyFile:FILE*:fp::
992PyRun_AnyFile:char*:filename::
993
Fred Drake4ca744c2000-08-12 03:39:47 +0000994PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000995PyRun_File:FILE*:fp::
996PyRun_File:char*:filename::
997PyRun_File:int:start::
998PyRun_File:PyObject*:globals:0:
999PyRun_File:PyObject*:locals:0:
1000
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001001PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1002PyRun_FileEx:FILE*:fp::
1003PyRun_FileEx:char*:filename::
1004PyRun_FileEx:int:start::
1005PyRun_FileEx:PyObject*:globals:0:
1006PyRun_FileEx:PyObject*:locals:0:
1007PyRun_FileEx:int:closeit::
1008
1009PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1010PyRun_FileFlags:FILE*:fp::
1011PyRun_FileFlags:char*:filename::
1012PyRun_FileFlags:int:start::
1013PyRun_FileFlags:PyObject*:globals:0:
1014PyRun_FileFlags:PyObject*:locals:0:
1015PyRun_FileFlags:PyCompilerFlags*:flags::
1016
1017PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1018PyRun_FileExFlags:FILE*:fp::
1019PyRun_FileExFlags:char*:filename::
1020PyRun_FileExFlags:int:start::
1021PyRun_FileExFlags:PyObject*:globals:0:
1022PyRun_FileExFlags:PyObject*:locals:0:
1023PyRun_FileExFlags:int:closeit::
1024PyRun_FileExFlags:PyCompilerFlags*:flags::
1025
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001026PyRun_InteractiveLoop:int:::
1027PyRun_InteractiveLoop:FILE*:fp::
1028PyRun_InteractiveLoop:char*:filename::
1029
1030PyRun_InteractiveOne:int:::
1031PyRun_InteractiveOne:FILE*:fp::
1032PyRun_InteractiveOne:char*:filename::
1033
1034PyRun_SimpleFile:int:::
1035PyRun_SimpleFile:FILE*:fp::
1036PyRun_SimpleFile:char*:filename::
1037
1038PyRun_SimpleString:int:::
1039PyRun_SimpleString:char*:command::
1040
Fred Drake4ca744c2000-08-12 03:39:47 +00001041PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001042PyRun_String:char*:str::
1043PyRun_String:int:start::
1044PyRun_String:PyObject*:globals:0:
1045PyRun_String:PyObject*:locals:0:
1046
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001047PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
1048PyRun_StringFlags:char*:str::
1049PyRun_StringFlags:int:start::
1050PyRun_StringFlags:PyObject*:globals:0:
1051PyRun_StringFlags:PyObject*:locals:0:
1052PyRun_StringFlags:PyCompilerFlags*:flags::
1053
Fred Draked61d0d32001-09-23 02:05:26 +00001054PySeqIter_New:PyObject*::+1:
1055PySeqIter_New:PyObject*:seq::
1056
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001057PySequence_Check:int:::
1058PySequence_Check:PyObject*:o:0:
1059
1060PySequence_Concat:PyObject*::+1:
1061PySequence_Concat:PyObject*:o1:0:
1062PySequence_Concat:PyObject*:o2:0:
1063
1064PySequence_Count:int:::
1065PySequence_Count:PyObject*:o:0:
1066PySequence_Count:PyObject*:value:0:
1067
1068PySequence_DelItem:int:::
1069PySequence_DelItem:PyObject*:o:0:
1070PySequence_DelItem:int:i::
1071
1072PySequence_DelSlice:int:::
1073PySequence_DelSlice:PyObject*:o:0:
1074PySequence_DelSlice:int:i1::
1075PySequence_DelSlice:int:i2::
1076
Fred Drake81cccb72000-09-12 15:22:05 +00001077PySequence_Fast:PyObject*::+1:
1078PySequence_Fast:PyObject*:v:0:
1079PySequence_Fast:const char*:m::
1080
1081PySequence_Fast_GET_ITEM:PyObject*::0:
1082PySequence_Fast_GET_ITEM:PyObject*:o:0:
1083PySequence_Fast_GET_ITEM:int:i::
1084
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001085PySequence_GetItem:PyObject*::+1:
1086PySequence_GetItem:PyObject*:o:0:
1087PySequence_GetItem:int:i::
1088
1089PySequence_GetSlice:PyObject*::+1:
1090PySequence_GetSlice:PyObject*:o:0:
1091PySequence_GetSlice:int:i1::
1092PySequence_GetSlice:int:i2::
1093
1094PySequence_In:int:::
1095PySequence_In:PyObject*:o:0:
1096PySequence_In:PyObject*:value:0:
1097
1098PySequence_Index:int:::
1099PySequence_Index:PyObject*:o:0:
1100PySequence_Index:PyObject*:value:0:
1101
Fred Drake1fa93652000-09-22 18:19:37 +00001102PySequence_InPlaceConcat:PyObject*::+1:
1103PySequence_InPlaceConcat:PyObject*:s:0:
1104PySequence_InPlaceConcat:PyObject*:o:0:
1105
1106PySequence_InPlaceRepeat:PyObject*::+1:
1107PySequence_InPlaceRepeat:PyObject*:s:0:
1108PySequence_InPlaceRepeat:PyObject*:o:0:
1109
Fred Drakeffb294b2002-05-23 16:03:16 +00001110PySequence_ITEM:PyObject*::+1:
1111PySequence_ITEM:PyObject*:o:0:
1112PySequence_ITEM:int:i::
1113
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001114PySequence_Repeat:PyObject*::+1:
1115PySequence_Repeat:PyObject*:o:0:
1116PySequence_Repeat:int:count::
1117
1118PySequence_SetItem:int:::
1119PySequence_SetItem:PyObject*:o:0:
1120PySequence_SetItem:int:i::
1121PySequence_SetItem:PyObject*:v:+1:
1122
1123PySequence_SetSlice:int:::
1124PySequence_SetSlice:PyObject*:o:0:
1125PySequence_SetSlice:int:i1::
1126PySequence_SetSlice:int:i2::
1127PySequence_SetSlice:PyObject*:v:+1:
1128
Fred Drake1c2d06a2000-06-16 20:00:04 +00001129PySequence_List:PyObject*::+1:
1130PySequence_List:PyObject*:o:0:
1131
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001132PySequence_Tuple:PyObject*::+1:
1133PySequence_Tuple:PyObject*:o:0:
1134
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001135PySet_Append:int:::
1136PySet_Append:PyObject*:set:0:
1137PySet_Append:PyObject*:key:+1:
1138
1139PySet_Contains:int:::
1140PySet_Contains:PyObject*:anyset:0:
1141PySet_Contains:PyObject*:key:0:
1142
1143PySet_Discard:int:::
1144PySet_Discard:PyObject*:set:0:
1145PySet_Discard:PyObject*:key:-1:no effect if key not found
1146
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001147PySet_New:PyObject*::+1:
1148PySet_New:PyObject*:iterable:0:
1149
Raymond Hettinger76382492005-08-21 00:08:36 +00001150PySet_Pop:PyObject*::0:or returns NULL and raises KeyError if set is empty
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001151PySet_Pop:PyObject*:set:0:
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001152
1153PySet_Size:int:::
1154PySet_Size:PyObject*:anyset:0:
1155
Fred Drake23a78cf2001-09-24 15:29:47 +00001156PySlice_Check:int:::
1157PySlice_Check:PyObject*:ob:0:
1158
1159PySlice_New:PyObject*::+1:
1160PySlice_New:PyObject*:start:0:
1161PySlice_New:PyObject*:stop:0:
1162PySlice_New:PyObject*:step:0:
1163
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001164PyString_AS_STRING:char*:::
1165PyString_AS_STRING:PyObject*:string:0:
1166
Fred Drakeb2625eb2001-05-29 15:34:06 +00001167PyString_AsDecodedObject:PyObject*::+1:
1168PyString_AsDecodedObject:PyObject*:str:0:
1169PyString_AsDecodedObject:const char*:encoding::
1170PyString_AsDecodedObject:const char*:errors::
1171
1172PyString_AsEncodedObject:PyObject*::+1:
1173PyString_AsEncodedObject:PyObject*:str:0:
1174PyString_AsEncodedObject:const char*:encoding::
1175PyString_AsEncodedObject:const char*:errors::
1176
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001177PyString_AsString:char*:::
1178PyString_AsString:PyObject*:string:0:
1179
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +00001180PyString_AsStringAndSize:int:::
1181PyString_AsStringAndSize:PyObject*:obj:0:
1182PyString_AsStringAndSize:char**:buffer::
1183PyString_AsStringAndSize:int*:length::
1184
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001185PyString_Check:int:::
1186PyString_Check:PyObject*:o:0:
1187
1188PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001189PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001190PyString_Concat:PyObject*:newpart:0:
1191
1192PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001193PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001194PyString_ConcatAndDel:PyObject*:newpart:-1:
1195
1196PyString_Format:PyObject*::+1:
1197PyString_Format:PyObject*:format:0:
1198PyString_Format:PyObject*:args:0:
1199
1200PyString_FromString:PyObject*::+1:
1201PyString_FromString:const char*:v::
1202
1203PyString_FromStringAndSize:PyObject*::+1:
1204PyString_FromStringAndSize:const char*:v::
1205PyString_FromStringAndSize:int:len::
1206
Barry Warsaw8c64a542001-08-28 02:32:04 +00001207PyString_FromFormat:PyObject*::+1:
1208PyString_FromFormat:const char*:format::
1209PyString_FromFormat::...::
1210
1211PyString_FromFormatV:PyObject*::+1:
1212PyString_FromFormatV:const char*:format::
1213PyString_FromFormatV:va_list:vargs::
1214
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001215PyString_GET_SIZE:int:::
1216PyString_GET_SIZE:PyObject*:string:0:
1217
1218PyString_InternFromString:PyObject*::+1:
1219PyString_InternFromString:const char*:v::
1220
1221PyString_InternInPlace:void:::
1222PyString_InternInPlace:PyObject**:string:+1:???
1223
1224PyString_Size:int:::
1225PyString_Size:PyObject*:string:0:
1226
Marc-André Lemburg47073202000-07-07 15:48:54 +00001227PyString_Decode:PyObject*::+1:
1228PyString_Decode:const char*:s::
1229PyString_Decode:int:size::
1230PyString_Decode:const char*:encoding::
1231PyString_Decode:const char*:errors::
1232
1233PyString_Encode:PyObject*::+1:
1234PyString_Encode:const char*:s::
1235PyString_Encode:int:size::
1236PyString_Encode:const char*:encoding::
1237PyString_Encode:const char*:errors::
1238
1239PyString_AsEncodedString:PyObject*::+1:
1240PyString_AsEncodedString:PyObject*:str::
1241PyString_AsEncodedString:const char*:encoding::
1242PyString_AsEncodedString:const char*:errors::
1243
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001244PySys_SetArgv:int:::
1245PySys_SetArgv:int:argc::
1246PySys_SetArgv:char**:argv::
1247
1248PyThreadState_Clear:void:::
1249PyThreadState_Clear:PyThreadState*:tstate::
1250
1251PyThreadState_Delete:void:::
1252PyThreadState_Delete:PyThreadState*:tstate::
1253
1254PyThreadState_Get:PyThreadState*:::
1255
Fred Drakeb2625eb2001-05-29 15:34:06 +00001256PyThreadState_GetDict:PyObject*::0:
1257
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001258PyThreadState_New:PyThreadState*:::
1259PyThreadState_New:PyInterpreterState*:interp::
1260
1261PyThreadState_Swap:PyThreadState*:::
1262PyThreadState_Swap:PyThreadState*:tstate::
1263
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001264PyTime_FromTime:PyObject*::+1:
1265PyTime_FromTime:int:hour::
1266PyTime_FromTime:int:minute::
1267PyTime_FromTime:int:second::
1268PyTime_FromTime:int:usecond::
1269
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001270PyTuple_Check:int:::
1271PyTuple_Check:PyObject*:p:0:
1272
1273PyTuple_GET_ITEM:PyObject*::0:
1274PyTuple_GET_ITEM:PyTupleObject*:p:0:
1275PyTuple_GET_ITEM:int:pos::
1276
1277PyTuple_GetItem:PyObject*::0:
1278PyTuple_GetItem:PyTupleObject*:p:0:
1279PyTuple_GetItem:int:pos::
1280
1281PyTuple_GetSlice:PyObject*::+1:
1282PyTuple_GetSlice:PyTupleObject*:p:0:
1283PyTuple_GetSlice:int:low::
1284PyTuple_GetSlice:int:high::
1285
1286PyTuple_New:PyObject*::+1:
1287PyTuple_New:int:len::
1288
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001289PyTuple_Pack:PyObject*::+1:
1290PyTuple_Pack:int:len::
1291PyTuple_Pack:PyObject*:...:0:
1292
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001293PyTuple_SET_ITEM:void:::
1294PyTuple_SET_ITEM:PyTupleObject*:p:0:
1295PyTuple_SET_ITEM:int:pos::
1296PyTuple_SET_ITEM:PyObject*:o:0:
1297
1298PyTuple_SetItem:int:::
1299PyTuple_SetItem:PyTupleObject*:p:0:
1300PyTuple_SetItem:int:pos::
1301PyTuple_SetItem:PyObject*:o:0:
1302
1303PyTuple_Size:int:::
1304PyTuple_Size:PyTupleObject*:p:0:
1305
Fred Drake1b58bff2001-10-29 17:43:14 +00001306PyType_GenericAlloc:PyObject*::+1:
1307PyType_GenericAlloc:PyObject*:type:0:
1308PyType_GenericAlloc:int:nitems:0:
1309
1310PyType_GenericNew:PyObject*::+1:
1311PyType_GenericNew:PyObject*:type:0:
1312PyType_GenericNew:PyObject*:args:0:
1313PyType_GenericNew:PyObject*:kwds:0:
1314
Fred Drake992fe5a2000-06-16 21:04:15 +00001315PyUnicode_Check:int:::
1316PyUnicode_Check:PyObject*:o:0:
1317
1318PyUnicode_GET_SIZE:int:::
1319PyUnicode_GET_SIZE:PyObject*:o:0:
1320
1321PyUnicode_GET_DATA_SIZE:int:::
1322PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1323
1324PyUnicode_AS_UNICODE:Py_UNICODE*:::
1325PyUnicode_AS_UNICODE:PyObject*:o:0:
1326
1327PyUnicode_AS_DATA:const char*:::
1328PyUnicode_AS_DATA:PyObject*:o:0:
1329
1330Py_UNICODE_ISSPACE:int:::
1331Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1332
1333Py_UNICODE_ISLOWER:int:::
1334Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1335
1336Py_UNICODE_ISUPPER:int:::
1337Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1338
1339Py_UNICODE_ISTITLE:int:::
1340Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1341
1342Py_UNICODE_ISLINEBREAK:int:::
1343Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1344
1345Py_UNICODE_ISDECIMAL:int:::
1346Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1347
1348Py_UNICODE_ISDIGIT:int:::
1349Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1350
1351Py_UNICODE_ISNUMERIC:int:::
1352Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1353
1354Py_UNICODE_TOLOWER:Py_UNICODE:::
1355Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1356
1357Py_UNICODE_TOUPPER:Py_UNICODE:::
1358Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1359
1360Py_UNICODE_TOTITLE:Py_UNICODE:::
1361Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1362
1363Py_UNICODE_TODECIMAL:int:::
1364Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1365
1366Py_UNICODE_TODIGIT:int:::
1367Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1368
1369Py_UNICODE_TONUMERIC:double:::
1370Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1371
1372PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001373PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001374PyUnicode_FromUnicode:int:size::
1375
1376PyUnicode_AsUnicode:Py_UNICODE*:::
1377PyUnicode_AsUnicode:PyObject :*unicode:0:
1378
1379PyUnicode_GetSize:int:::
1380PyUnicode_GetSize:PyObject :*unicode:0:
1381
1382PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001383PyUnicode_FromObject:PyObject*:*obj:0:
1384
1385PyUnicode_FromEncodedObject:PyObject*::+1:
1386PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1387PyUnicode_FromEncodedObject:const char*:encoding::
1388PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001389
1390PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001391PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001392PyUnicode_FromWideChar:int:size::
1393
1394PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001395PyUnicode_AsWideChar:PyObject*:*unicode:0:
1396PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001397PyUnicode_AsWideChar:int:size::
1398
1399PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001400PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001401PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001402PyUnicode_Decode:const char*:encoding::
1403PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001404
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001405PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1406PyUnicode_DecodeUTF16Stateful:const char*:s::
1407PyUnicode_DecodeUTF16Stateful:int:size::
1408PyUnicode_DecodeUTF16Stateful:const char*:errors::
1409PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1410PyUnicode_DecodeUTF16Stateful:int*:consumed::
1411
1412PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1413PyUnicode_DecodeUTF8Stateful:const char*:s::
1414PyUnicode_DecodeUTF8Stateful:int:size::
1415PyUnicode_DecodeUTF8Stateful:const char*:errors::
1416PyUnicode_DecodeUTF8Stateful:int*:consumed::
1417
Fred Drake992fe5a2000-06-16 21:04:15 +00001418PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001419PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001420PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001421PyUnicode_Encode:const char*:encoding::
1422PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001423
1424PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001425PyUnicode_AsEncodedString:PyObject*:unicode::
1426PyUnicode_AsEncodedString:const char*:encoding::
1427PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001428
1429PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001430PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001431PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001432PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001433
1434PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001435PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001436PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001437PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001438
1439PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001440PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001441
1442PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001443PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001444PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001445PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001446PyUnicode_DecodeUTF16:int*:byteorder::
1447
1448PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001449PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001450PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001451PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001452PyUnicode_EncodeUTF16:int:byteorder::
1453
1454PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001455PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001456
1457PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001458PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001459PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001460PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001461
1462PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001463PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001464PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001465PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001466
1467PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001468PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001469
1470PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001471PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001472PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001473PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001474
1475PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001476PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001477PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001478PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001479
1480PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001481PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001482
1483PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001484PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001485PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001486PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001487
1488PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001489PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001490PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001491PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001492
1493PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001494PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001495
1496PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001497PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001498PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001499PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001500
1501PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001502PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001503PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001504PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001505
1506PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001507PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001508
1509PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001510PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001511PyUnicode_DecodeCharmap:int:size::
1512PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001513PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001514
1515PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001516PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001517PyUnicode_EncodeCharmap:int:size::
1518PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001519PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001520
1521PyUnicode_AsCharmapString:PyObject*::+1:
1522PyUnicode_AsCharmapString:PyObject*:unicode:0:
1523PyUnicode_AsCharmapString:PyObject*:mapping:0:
1524
1525PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001526PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001527PyUnicode_TranslateCharmap:int:size::
1528PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001529PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001530
1531PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001532PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001533PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001534PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001535
1536PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001537PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001538PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001539PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001540
1541PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001542PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001543
1544PyUnicode_Concat:PyObject*::+1:
1545PyUnicode_Concat:PyObject*:left:0:
1546PyUnicode_Concat:PyObject*:right:0:
1547
1548PyUnicode_Split:PyObject*::+1:
1549PyUnicode_Split:PyObject*:left:0:
1550PyUnicode_Split:PyObject*:right:0:
1551PyUnicode_Split:int:maxsplit::
1552
1553PyUnicode_Splitlines:PyObject*::+1:
1554PyUnicode_Splitlines:PyObject*:s:0:
1555PyUnicode_Splitlines:int:maxsplit::
1556
1557PyUnicode_Translate:PyObject*::+1:
1558PyUnicode_Translate:PyObject*:str:0:
1559PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001560PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001561
1562PyUnicode_Join:PyObject*::+1:
1563PyUnicode_Join:PyObject*:separator:0:
1564PyUnicode_Join:PyObject*:seq:0:
1565
1566PyUnicode_Tailmatch:PyObject*::+1:
1567PyUnicode_Tailmatch:PyObject*:str:0:
1568PyUnicode_Tailmatch:PyObject*:substr:0:
1569PyUnicode_Tailmatch:int:start::
1570PyUnicode_Tailmatch:int:end::
1571PyUnicode_Tailmatch:int:direction::
1572
Fred Drake1d1e1db2002-06-20 22:07:04 +00001573PyUnicode_Find:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001574PyUnicode_Find:PyObject*:str:0:
1575PyUnicode_Find:PyObject*:substr:0:
1576PyUnicode_Find:int:start::
1577PyUnicode_Find:int:end::
1578PyUnicode_Find:int:direction::
1579
Fred Drake1d1e1db2002-06-20 22:07:04 +00001580PyUnicode_Count:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001581PyUnicode_Count:PyObject*:str:0:
1582PyUnicode_Count:PyObject*:substr:0:
1583PyUnicode_Count:int:start::
1584PyUnicode_Count:int:end::
1585
1586PyUnicode_Replace:PyObject*::+1:
1587PyUnicode_Replace:PyObject*:str:0:
1588PyUnicode_Replace:PyObject*:substr:0:
1589PyUnicode_Replace:PyObject*:replstr:0:
1590PyUnicode_Replace:int:maxcount::
1591
1592PyUnicode_Compare:int:::
1593PyUnicode_Compare:PyObject*:left:0:
1594PyUnicode_Compare:PyObject*:right:0:
1595
1596PyUnicode_Format:PyObject*::+1:
1597PyUnicode_Format:PyObject*:format:0:
1598PyUnicode_Format:PyObject*:args:0:
1599
1600PyUnicode_Contains:int:::
1601PyUnicode_Contains:PyObject*:container:0:
1602PyUnicode_Contains:PyObject*:element:0:
1603
Fred Drake1b58bff2001-10-29 17:43:14 +00001604PyWeakref_GET_OBJECT:PyObject*::0:
1605PyWeakref_GET_OBJECT:PyObject*:ref:0:
1606
Fred Drake8371e842002-02-20 05:07:36 +00001607PyWeakref_GetObject:PyObject*::0:
Fred Drake1b58bff2001-10-29 17:43:14 +00001608PyWeakref_GetObject:PyObject*:ref:0:
1609
1610PyWeakref_NewProxy:PyObject*::+1:
1611PyWeakref_NewProxy:PyObject*:ob:0:
1612PyWeakref_NewProxy:PyObject*:callback:0:
1613
1614PyWeakref_NewRef:PyObject*::+1:
1615PyWeakref_NewRef:PyObject*:ob:0:
1616PyWeakref_NewRef:PyObject*:callback:0:
1617
1618PyWrapper_New:PyObject*::+1:
1619PyWrapper_New:PyObject*:d:0:
1620PyWrapper_New:PyObject*:self:0:
1621
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001622Py_AtExit:int:::
1623Py_AtExit:void (*)():func::
1624
Fred Drake6d988552001-07-20 20:55:31 +00001625Py_BuildValue:PyObject*::+1:
1626Py_BuildValue:char*:format::
1627
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001628Py_CompileString:PyObject*::+1:
1629Py_CompileString:char*:str::
1630Py_CompileString:char*:filename::
1631Py_CompileString:int:start::
1632
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001633Py_CompileStringFlags:PyObject*::+1:
1634Py_CompileStringFlags:char*:str::
1635Py_CompileStringFlags:char*:filename::
1636Py_CompileStringFlags:int:start::
1637Py_CompileStringFlags:PyCompilerFlags*:flags::
1638
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001639Py_DECREF:void:::
1640Py_DECREF:PyObject*:o:-1:
1641
1642Py_EndInterpreter:void:::
1643Py_EndInterpreter:PyThreadState*:tstate::
1644
1645Py_Exit:void:::
1646Py_Exit:int:status::
1647
1648Py_FatalError:void:::
1649Py_FatalError:char*:message::
1650
1651Py_FdIsInteractive:int:::
1652Py_FdIsInteractive:FILE*:fp::
1653Py_FdIsInteractive:char*:filename::
1654
1655Py_Finalize:void:::
1656
Fred Drake8520cc22000-04-10 19:38:24 +00001657Py_FindMethod:PyObject*::+1:
1658Py_FindMethod:PyMethodDef[]:methods::
1659Py_FindMethod:PyObject*:self:+1:
1660Py_FindMethod:char*:name::
1661
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001662Py_GetBuildInfoconst:char*:::
1663
1664Py_GetCompilerconst:char*:::
1665
1666Py_GetCopyrightconst:char*:::
1667
1668Py_GetExecPrefix:char*:::
1669
1670Py_GetPath:char*:::
1671
1672Py_GetPlatformconst:char*:::
1673
1674Py_GetPrefix:char*:::
1675
1676Py_GetProgramFullPath:char*:::
1677
1678Py_GetProgramName:char*:::
1679
1680Py_GetVersionconst:char*:::
1681
1682Py_INCREF:void:::
1683Py_INCREF:PyObject*:o:+1:
1684
1685Py_Initialize:void:::
1686
1687Py_IsInitialized:int:::
1688
1689Py_NewInterpreter:PyThreadState*:::
1690
1691Py_SetProgramName:void:::
1692Py_SetProgramName:char*:name::
1693
1694Py_XDECREF:void:::
1695Py_XDECREF:PyObject*:o:-1:if o is not NULL
1696
1697Py_XINCREF:void:::
1698Py_XINCREF:PyObject*:o:+1:if o is not NULL
1699
1700_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1701_PyImport_FindExtension:char*:::
1702_PyImport_FindExtension:char*:::
1703
1704_PyImport_Fini:void:::
1705
1706_PyImport_FixupExtension:PyObject*:::???
1707_PyImport_FixupExtension:char*:::
1708_PyImport_FixupExtension:char*:::
1709
1710_PyImport_Init:void:::
1711
Fred Drakef913e542000-09-12 20:17:17 +00001712_PyObject_Del:void:::
1713_PyObject_Del:PyObject*:op:0:
1714
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001715_PyObject_New:PyObject*::+1:
1716_PyObject_New:PyTypeObject*:type:0:
1717
Fred Drake8e0c09d2001-07-06 23:31:49 +00001718_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001719_PyObject_NewVar:PyTypeObject*:type:0:
1720_PyObject_NewVar:int:size::
1721
1722_PyString_Resize:int:::
1723_PyString_Resize:PyObject**:string:+1:
1724_PyString_Resize:int:newsize::
1725
1726_PyTuple_Resize:int:::
1727_PyTuple_Resize:PyTupleObject**:p:+1:
1728_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001729
1730_Py_c_diff:Py_complex:::
1731_Py_c_diff:Py_complex:left::
1732_Py_c_diff:Py_complex:right::
1733
1734_Py_c_neg:Py_complex:::
1735_Py_c_neg:Py_complex:complex::
1736
1737_Py_c_pow:Py_complex:::
1738_Py_c_pow:Py_complex:num::
1739_Py_c_pow:Py_complex:exp::
1740
1741_Py_c_prod:Py_complex:::
1742_Py_c_prod:Py_complex:left::
1743_Py_c_prod:Py_complex:right::
1744
1745_Py_c_quot:Py_complex:::
1746_Py_c_quot:Py_complex:dividend::
1747_Py_c_quot:Py_complex:divisor::
1748
1749_Py_c_sum:Py_complex:::
1750_Py_c_sum:Py_complex:left::
1751_Py_c_sum:Py_complex:right::