blob: 049df94466a42d1eef1b64d8fee7d78e070117e5 [file] [log] [blame]
Jeremy Hyltona12c7a72000-03-30 22:27:31 +00001# Created by Skip Montanaro <skip@mojam.com>.
Fred Drake805bf1b1999-10-20 16:03:38 +00002
Fred Drake7b7dc6b1999-10-20 15:06:24 +00003# Format:
4# function ':' type ':' [param name] ':' [refcount effect] ':' [comment]
5# If the param name slot is empty, that line corresponds to the function's
6# return value, otherwise it's the type of the named parameter.
7
8# The first line of a function block gives type/refcount information for the
9# function's return value. Successive lines with the same function name
10# correspond to the function's parameter list and appear in the order the
11# parameters appear in the function's prototype.
12
13# For readability, each function's lines are surrounded by a blank line.
14# The blocks are sorted alphabetically by function name.
15
16# Refcount behavior is given for all PyObject* types: 0 (no change), +1
17# (increment) and -1 (decrement). A blank refcount field indicates the
18# parameter or function value is not a PyObject* and is therefore not
Fred Drake83945952000-04-10 18:29:21 +000019# subject to reference counting. A special case for the value "null"
20# (without quotes) is used for functions which return a PyObject* type but
21# always return NULL. This is used by some of the PyErr_*() functions, in
22# particular.
Fred Drake7b7dc6b1999-10-20 15:06:24 +000023
Guido van Rossum9a18a7e2000-12-19 03:53:57 +000024# XXX NOTE: the 0/+1/-1 refcount information for arguments is
25# confusing! Much more useful would be to indicate whether the
26# function "steals" a reference to the argument or not. Take for
27# example PyList_SetItem(list, i, item). This lists as a 0 change for
28# both the list and the item arguments. However, in fact it steals a
29# reference to the item argument!
30
Fred Drake7b7dc6b1999-10-20 15:06:24 +000031# The parameter names are as they appear in the API manual, not the source
32# code.
33
Fred Drake3e482d92006-03-30 02:58:38 +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
Fred Drake3e482d92006-03-30 02:58:38 +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
Fred Drake3e482d92006-03-30 02:58:38 +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
Fred Drake3e482d92006-03-30 02:58:38 +0000381PyFloat_FromString:PyObject*::+1:
382PyFloat_FromString:PyObject*:str:0:
383PyFloat_FromString:char**:pend:0:ignored
384
Georg Brandl9b743f52006-02-20 12:57:53 +0000385PyFunction_GetClosure:PyObject*::0:
386PyFunction_GetClosure:PyObject*:op:0:
387
388PyFunction_GetCode:PyObject*::0:
389PyFunction_GetCode:PyObject*:op:0:
390
391PyFunction_GetDefaults:PyObject*::0:
392PyFunction_GetDefaults:PyObject*:op:0:
393
394PyFunction_GetGlobals:PyObject*::0:
395PyFunction_GetGlobals:PyObject*:op:0:
396
397PyFunction_GetModule:PyObject*::0:
398PyFunction_GetModule:PyObject*:op:0:
399
400PyFunction_New:PyObject*::+1:
401PyFunction_New:PyObject*:code:+1:
402PyFunction_New:PyObject*:globals:+1:
403
404PyFunction_SetClosure:int:::
405PyFunction_SetClosure:PyObject*:op:0:
406PyFunction_SetClosure:PyObject*:closure:+1:
407
408PyFunction_SetDefaults:int:::
409PyFunction_SetDefaults:PyObject*:op:0:
410PyFunction_SetDefaults:PyObject*:defaults:+1:
411
Fred Drake3e482d92006-03-30 02:58:38 +0000412PyGen_New:PyObject*::+1:
413PyGen_New:PyFrameObject*:frame:0:
414
Fred Drakeee814bf2000-11-28 22:34:32 +0000415Py_InitModule:PyObject*::0:
Georg Brandl9b743f52006-02-20 12:57:53 +0000416Py_InitModule:char*:name::
417Py_InitModule:PyMethodDef[]:methods::
Fred Drakeee814bf2000-11-28 22:34:32 +0000418
419Py_InitModule3:PyObject*::0:
Georg Brandl9b743f52006-02-20 12:57:53 +0000420Py_InitModule3:char*:name::
421Py_InitModule3:PyMethodDef[]:methods::
422Py_InitModule3:char*:doc::
Fred Drakeee814bf2000-11-28 22:34:32 +0000423
424Py_InitModule4:PyObject*::0:
Georg Brandl9b743f52006-02-20 12:57:53 +0000425Py_InitModule4:char*:name::
426Py_InitModule4:PyMethodDef[]:methods::
427Py_InitModule4:char*:doc::
428Py_InitModule4:PyObject*:self::
429Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
Fred Drakeee814bf2000-11-28 22:34:32 +0000430
Fred Drake805bf1b1999-10-20 16:03:38 +0000431PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000432PyImport_AddModule:char*:name::
433
434PyImport_Cleanup:void:::
435
436PyImport_ExecCodeModule:PyObject*::+1:
437PyImport_ExecCodeModule:char*:name::
438PyImport_ExecCodeModule:PyObject*:co:0:
439
440PyImport_GetMagicNumber:long:::
441
442PyImport_GetModuleDict:PyObject*::0:
443
444PyImport_Import:PyObject*::+1:
445PyImport_Import:PyObject*:name:0:
446
447PyImport_ImportFrozenModule:int:::
448PyImport_ImportFrozenModule:char*:::
449
Fred Drakeeb725cd2000-04-03 15:06:40 +0000450PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000451PyImport_ImportModule:char*:name::
452
Fred Drakeeb725cd2000-04-03 15:06:40 +0000453PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000454PyImport_ImportModuleEx:char*:name::
455PyImport_ImportModuleEx:PyObject*:globals:0:???
456PyImport_ImportModuleEx:PyObject*:locals:0:???
457PyImport_ImportModuleEx:PyObject*:fromlist:0:???
458
Fred Drakeeb725cd2000-04-03 15:06:40 +0000459PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000460PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000461
Fred Drake5838d0f2001-01-28 06:39:35 +0000462PyInstance_New:PyObject*::+1:
463PyInstance_New:PyObject*:klass:+1:
464PyInstance_New:PyObject*:arg:0:
465PyInstance_New:PyObject*:kw:0:
466
467PyInstance_NewRaw:PyObject*::+1:
468PyInstance_NewRaw:PyObject*:klass:+1:
469PyInstance_NewRaw:PyObject*:dict:+1:
470
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000471PyInt_AS_LONG:long:::
472PyInt_AS_LONG:PyIntObject*:io:0:
473
474PyInt_AsLong:long:::
475PyInt_AsLong:PyObject*:io:0:
476
477PyInt_Check:int:::
Fred Drake9c75ff72001-09-06 18:06:46 +0000478PyInt_Check:PyObject*:op:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000479
480PyInt_FromLong:PyObject*::+1:
481PyInt_FromLong:long:ival::
482
Fred Drake3e482d92006-03-30 02:58:38 +0000483PyInt_FromString:PyObject*::+1:
484PyInt_FromString:char*:str:0:
485PyInt_FromString:char**:pend:0:
486PyInt_FromString:int:base:0:
487
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000488PyInt_GetMax:long:::
489
490PyInterpreterState_Clear:void:::
491PyInterpreterState_Clear:PyInterpreterState*:interp::
492
493PyInterpreterState_Delete:void:::
494PyInterpreterState_Delete:PyInterpreterState*:interp::
495
496PyInterpreterState_New:PyInterpreterState*:::
497
Fred Drakeb2625eb2001-05-29 15:34:06 +0000498PyIter_Check:int:o:0:
499
500PyIter_Next:PyObject*::+1:
501PyIter_Next:PyObject*:o:0:
502
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000503PyList_Append:int:::
504PyList_Append:PyObject*:list:0:
505PyList_Append:PyObject*:item:+1:
506
507PyList_AsTuple:PyObject*::+1:
508PyList_AsTuple:PyObject*:list:0:
509
510PyList_Check:int:::
511PyList_Check:PyObject*:p:0:
512
513PyList_GET_ITEM:PyObject*::0:
514PyList_GET_ITEM:PyObject*:list:0:
515PyList_GET_ITEM:int:i:0:
516
517PyList_GET_SIZE:int:::
518PyList_GET_SIZE:PyObject*:list:0:
519
520PyList_GetItem:PyObject*::0:
521PyList_GetItem:PyObject*:list:0:
522PyList_GetItem:int:index::
523
524PyList_GetSlice:PyObject*::+1:
525PyList_GetSlice:PyObject*:list:0:
526PyList_GetSlice:int:low::
527PyList_GetSlice:int:high::
528
529PyList_Insert:int:::
530PyList_Insert:PyObject*:list:0:
531PyList_Insert:int:index::
532PyList_Insert:PyObject*:item:+1:
533
534PyList_New:PyObject*::+1:
535PyList_New:int:len::
536
537PyList_Reverse:int:::
538PyList_Reverse:PyObject*:list:0:
539
Fred Draked8548312001-07-10 16:19:13 +0000540PyList_SET_ITEM:void:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000541PyList_SET_ITEM:PyObject*:list:0:
542PyList_SET_ITEM:int:i::
543PyList_SET_ITEM:PyObject*:o:0:
544
545PyList_SetItem:int:::
546PyList_SetItem:PyObject*:list:0:
547PyList_SetItem:int:index::
548PyList_SetItem:PyObject*:item:0:
549
550PyList_SetSlice:int:::
551PyList_SetSlice:PyObject*:list:0:
552PyList_SetSlice:int:low::
553PyList_SetSlice:int:high::
554PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
555
556PyList_Size:int:::
557PyList_Size:PyObject*:list:0:
558
559PyList_Sort:int:::
560PyList_Sort:PyObject*:list:0:
561
562PyLong_AsDouble:double:::
563PyLong_AsDouble:PyObject*:pylong:0:
564
565PyLong_AsLong:long:::
566PyLong_AsLong:PyObject*:pylong:0:
567
568PyLong_AsUnsignedLong:unsigned long:::
569PyLong_AsUnsignedLong:PyObject*:pylong:0:
570
571PyLong_Check:int:::
572PyLong_Check:PyObject*:p:0:
573
574PyLong_FromDouble:PyObject*::+1:
575PyLong_FromDouble:double:v::
576
577PyLong_FromLong:PyObject*::+1:
578PyLong_FromLong:long:v::
579
Fred Drakef47d8ef2001-09-20 19:18:52 +0000580PyLong_FromLongLong:PyObject*::+1:
581PyLong_FromLongLong:long long:v::
582
583PyLong_FromUnsignedLongLong:PyObject*::+1:
584PyLong_FromUnsignedLongLong:unsigned long long:v::
585
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000586PyLong_FromString:PyObject*::+1:
587PyLong_FromString:char*:str::
588PyLong_FromString:char**:pend::
589PyLong_FromString:int:base::
590
Fred Drakef47d8ef2001-09-20 19:18:52 +0000591PyLong_FromUnicode:PyObject*::+1:
592PyLong_FromUnicode:Py_UNICODE:u::
593PyLong_FromUnicode:int:length::
594PyLong_FromUnicode:int:base::
595
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000596PyLong_FromUnsignedLong:PyObject*::+1:
597PyLong_FromUnsignedLong:unsignedlong:v::
598
Fred Drakef47d8ef2001-09-20 19:18:52 +0000599PyLong_FromVoidPtr:PyObject*::+1:
600PyLong_FromVoidPtr:void*:p::
601
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000602PyMapping_Check:int:::
603PyMapping_Check:PyObject*:o:0:
604
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000605PyMapping_DelItem:int:::
606PyMapping_DelItem:PyObject*:o:0:
607PyMapping_DelItem:PyObject*:key:0:
608
609PyMapping_DelItemString:int:::
610PyMapping_DelItemString:PyObject*:o:0:
611PyMapping_DelItemString:char*:key::
612
613PyMapping_GetItemString:PyObject*::+1:
614PyMapping_GetItemString:PyObject*:o:0:
615PyMapping_GetItemString:char*:key::
616
617PyMapping_HasKey:int:::
618PyMapping_HasKey:PyObject*:o:0:
619PyMapping_HasKey:PyObject*:key::
620
621PyMapping_HasKeyString:int:::
622PyMapping_HasKeyString:PyObject*:o:0:
623PyMapping_HasKeyString:char*:key::
624
625PyMapping_Items:PyObject*::+1:
626PyMapping_Items:PyObject*:o:0:
627
628PyMapping_Keys:PyObject*::+1:
629PyMapping_Keys:PyObject*:o:0:
630
631PyMapping_Length:int:::
632PyMapping_Length:PyObject*:o:0:
633
634PyMapping_SetItemString:int:::
635PyMapping_SetItemString:PyObject*:o:0:
636PyMapping_SetItemString:char*:key::
637PyMapping_SetItemString:PyObject*:v:+1:
638
639PyMapping_Values:PyObject*::+1:
640PyMapping_Values:PyObject*:o:0:
641
Fred Drake1b58bff2001-10-29 17:43:14 +0000642PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
643PyMarshal_ReadLastObjectFromFile:FILE*:file::
644
645PyMarshal_ReadObjectFromFile:PyObject*::+1:
646PyMarshal_ReadObjectFromFile:FILE*:file::
647
648PyMarshal_ReadObjectFromString:PyObject*::+1:
649PyMarshal_ReadObjectFromString:char*:string::
650PyMarshal_ReadObjectFromString:int:len::
651
652PyMarshal_WriteObjectToString:PyObject*::+1:
653PyMarshal_WriteObjectToString:PyObject*:value:0:
654
Fred Drake9c75ff72001-09-06 18:06:46 +0000655PyMethod_Class:PyObject*::0:
656PyMethod_Class:PyObject*:im:0:
657
658PyMethod_Function:PyObject*::0:
659PyMethod_Function:PyObject*:im:0:
660
661PyMethod_GET_CLASS:PyObject*::0:
662PyMethod_GET_CLASS:PyObject*:im:0:
663
664PyMethod_GET_FUNCTION:PyObject*::0:
665PyMethod_GET_FUNCTION:PyObject*:im:0:
666
667PyMethod_GET_SELF:PyObject*::0:
668PyMethod_GET_SELF:PyObject*:im:0:
669
670PyMethod_New:PyObject*::+1:
671PyMethod_New:PyObject*:func:0:
672PyMethod_New:PyObject*:self:0:
673PyMethod_New:PyObject*:class:0:
674
675PyMethod_Self:PyObject*::0:
676PyMethod_Self:PyObject*:im:0:
677
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000678PyModule_GetDict:PyObject*::0:
679PyModule_GetDict::PyObject* module:0:
680
681PyModule_GetFilename:char*:::
682PyModule_GetFilename:PyObject*:module:0:
683
684PyModule_GetName:char*:::
685PyModule_GetName:PyObject*:module:0:
686
687PyModule_New:PyObject*::+1:
688PyModule_New::char* name::
689
690PyNumber_Absolute:PyObject*::+1:
691PyNumber_Absolute:PyObject*:o:0:
692
693PyNumber_Add:PyObject*::+1:
694PyNumber_Add:PyObject*:o1:0:
695PyNumber_Add:PyObject*:o2:0:
696
697PyNumber_And:PyObject*::+1:
698PyNumber_And:PyObject*:o1:0:
699PyNumber_And:PyObject*:o2:0:
700
701PyNumber_Check:PyObject*:o:0:
702PyNumber_Check:int:::
703
704PyNumber_Coerce:int:::
705PyNumber_Coerce:PyObject**:p1:+1:
706PyNumber_Coerce:PyObject**:p2:+1:
707
708PyNumber_Divide:PyObject*::+1:
709PyNumber_Divide:PyObject*:o1:0:
710PyNumber_Divide:PyObject*:o2:0:
711
712PyNumber_Divmod:PyObject*::+1:
713PyNumber_Divmod:PyObject*:o1:0:
714PyNumber_Divmod:PyObject*:o2:0:
715
716PyNumber_Float:PyObject*::+1:
717PyNumber_Float:PyObject*:o:0:
718
Fred Drake03590c62001-08-08 18:50:18 +0000719PyNumber_FloorDivide:PyObject*::+1:
720PyNumber_FloorDivide:PyObject*:v:0:
721PyNumber_FloorDivide:PyObject*:w:0:
722
Fred Drake1fa93652000-09-22 18:19:37 +0000723PyNumber_InPlaceAdd:PyObject*::+1:
724PyNumber_InPlaceAdd:PyObject*:v:0:
725PyNumber_InPlaceAdd:PyObject*:w:0:
726
727PyNumber_InPlaceAnd:PyObject*::+1:
728PyNumber_InPlaceAnd:PyObject*:v:0:
729PyNumber_InPlaceAnd:PyObject*:w:0:
730
731PyNumber_InPlaceDivide:PyObject*::+1:
732PyNumber_InPlaceDivide:PyObject*:v:0:
733PyNumber_InPlaceDivide:PyObject*:w:0:
734
Fred Drake03590c62001-08-08 18:50:18 +0000735PyNumber_InPlaceFloorDivide:PyObject*::+1:
736PyNumber_InPlaceFloorDivide:PyObject*:v:0:
737PyNumber_InPlaceFloorDivide:PyObject*:w:0:
738
Fred Drake1fa93652000-09-22 18:19:37 +0000739PyNumber_InPlaceLshift:PyObject*::+1:
740PyNumber_InPlaceLshift:PyObject*:v:0:
741PyNumber_InPlaceLshift:PyObject*:w:0:
742
743PyNumber_InPlaceMultiply:PyObject*::+1:
744PyNumber_InPlaceMultiply:PyObject*:v:0:
745PyNumber_InPlaceMultiply:PyObject*:w:0:
746
747PyNumber_InPlaceOr:PyObject*::+1:
748PyNumber_InPlaceOr:PyObject*:v:0:
749PyNumber_InPlaceOr:PyObject*:w:0:
750
751PyNumber_InPlacePower:PyObject*::+1:
752PyNumber_InPlacePower:PyObject*:v:0:
753PyNumber_InPlacePower:PyObject*:w:0:
754PyNumber_InPlacePower:PyObject*:z:0:
755
756PyNumber_InPlaceRemainder:PyObject*::+1:
757PyNumber_InPlaceRemainder:PyObject*:v:0:
758PyNumber_InPlaceRemainder:PyObject*:w:0:
759
760PyNumber_InPlaceRshift:PyObject*::+1:
761PyNumber_InPlaceRshift:PyObject*:v:0:
762PyNumber_InPlaceRshift:PyObject*:w:0:
763
764PyNumber_InPlaceSubtract:PyObject*::+1:
765PyNumber_InPlaceSubtract:PyObject*:v:0:
766PyNumber_InPlaceSubtract:PyObject*:w:0:
767
Fred Drake03590c62001-08-08 18:50:18 +0000768PyNumber_InPlaceTrueDivide:PyObject*::+1:
769PyNumber_InPlaceTrueDivide:PyObject*:v:0:
770PyNumber_InPlaceTrueDivide:PyObject*:w:0:
771
Fred Drake1fa93652000-09-22 18:19:37 +0000772PyNumber_InPlaceXor:PyObject*::+1:
773PyNumber_InPlaceXor:PyObject*:v:0:
774PyNumber_InPlaceXor:PyObject*:w:0:
775
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000776PyNumber_Int:PyObject*::+1:
777PyNumber_Int:PyObject*:o:0:
778
779PyNumber_Invert:PyObject*::+1:
780PyNumber_Invert:PyObject*:o:0:
781
782PyNumber_Long:PyObject*::+1:
783PyNumber_Long:PyObject*:o:0:
784
785PyNumber_Lshift:PyObject*::+1:
786PyNumber_Lshift:PyObject*:o1:0:
787PyNumber_Lshift:PyObject*:o2:0:
788
789PyNumber_Multiply:PyObject*::+1:
790PyNumber_Multiply:PyObject*:o1:0:
791PyNumber_Multiply:PyObject*:o2:0:
792
793PyNumber_Negative:PyObject*::+1:
794PyNumber_Negative:PyObject*:o:0:
795
796PyNumber_Or:PyObject*::+1:
797PyNumber_Or:PyObject*:o1:0:
798PyNumber_Or:PyObject*:o2:0:
799
800PyNumber_Positive:PyObject*::+1:
801PyNumber_Positive:PyObject*:o:0:
802
803PyNumber_Power:PyObject*::+1:
804PyNumber_Power:PyObject*:o1:0:
805PyNumber_Power:PyObject*:o2:0:
806PyNumber_Power:PyObject*:o3:0:
807
808PyNumber_Remainder:PyObject*::+1:
809PyNumber_Remainder:PyObject*:o1:0:
810PyNumber_Remainder:PyObject*:o2:0:
811
812PyNumber_Rshift:PyObject*::+1:
813PyNumber_Rshift:PyObject*:o1:0:
814PyNumber_Rshift:PyObject*:o2:0:
815
816PyNumber_Subtract:PyObject*::+1:
817PyNumber_Subtract:PyObject*:o1:0:
818PyNumber_Subtract:PyObject*:o2:0:
819
Fred Drake03590c62001-08-08 18:50:18 +0000820PyNumber_TrueDivide:PyObject*::+1:
821PyNumber_TrueDivide:PyObject*:v:0:
822PyNumber_TrueDivide:PyObject*:w:0:
823
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000824PyNumber_Xor:PyObject*::+1:
825PyNumber_Xor:PyObject*:o1:0:
826PyNumber_Xor:PyObject*:o2:0:
827
828PyOS_GetLastModificationTime:long:::
829PyOS_GetLastModificationTime:char*:filename::
830
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000831PyObject_AsFileDescriptor:int:::
832PyObject_AsFileDescriptor:PyObject*:o:0:
833
Fredrik Lundh118be0c2005-12-18 19:39:59 +0000834PyObject_Call:PyObject*::+1:
835PyObject_Call:PyObject*:callable_object:0:
836PyObject_Call:PyObject*:args:0:
837PyObject_Call:PyObject*:kw:0:
838
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000839PyObject_CallFunction:PyObject*::+1:
840PyObject_CallFunction:PyObject*:callable_object:0:
841PyObject_CallFunction:char*:format::
842PyObject_CallFunction::...::
843
Fred Drakeb0c079e2001-10-28 02:39:03 +0000844PyObject_CallFunctionObjArgs:PyObject*::+1:
845PyObject_CallFunctionObjArgs:PyObject*:callable:0:
846PyObject_CallFunctionObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000847
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000848PyObject_CallMethod:PyObject*::+1:
849PyObject_CallMethod:PyObject*:o:0:
850PyObject_CallMethod:char*:m::
851PyObject_CallMethod:char*:format::
852PyObject_CallMethod::...::
853
Fred Drakeb0c079e2001-10-28 02:39:03 +0000854PyObject_CallMethodObjArgs:PyObject*::+1:
855PyObject_CallMethodObjArgs:PyObject*:o:0:
856PyObject_CallMethodObjArgs:char*:name::
857PyObject_CallMethodObjArgs::...::
Fred Drake81c7aa22001-10-26 16:29:22 +0000858
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000859PyObject_CallObject:PyObject*::+1:
860PyObject_CallObject:PyObject*:callable_object:0:
861PyObject_CallObject:PyObject*:args:0:
862
863PyObject_Cmp:int:::
864PyObject_Cmp:PyObject*:o1:0:
865PyObject_Cmp:PyObject*:o2:0:
866PyObject_Cmp:int*:result::
867
868PyObject_Compare:int:::
869PyObject_Compare:PyObject*:o1:0:
870PyObject_Compare:PyObject*:o2:0:
871
872PyObject_DelAttr:int:::
873PyObject_DelAttr:PyObject*:o:0:
874PyObject_DelAttr:PyObject*:attr_name:0:
875
876PyObject_DelAttrString:int:::
877PyObject_DelAttrString:PyObject*:o:0:
878PyObject_DelAttrString:char*:attr_name::
879
880PyObject_DelItem:int:::
881PyObject_DelItem:PyObject*:o:0:
882PyObject_DelItem:PyObject*:key:0:
883
Fred Drake9c75ff72001-09-06 18:06:46 +0000884PyObject_Dir:PyObject*::+1:
885PyObject_Dir:PyObject*:o:0:
886
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000887PyObject_GetAttr:PyObject*::+1:
888PyObject_GetAttr:PyObject*:o:0:
889PyObject_GetAttr:PyObject*:attr_name:0:
890
891PyObject_GetAttrString:PyObject*::+1:
892PyObject_GetAttrString:PyObject*:o:0:
893PyObject_GetAttrString:char*:attr_name::
894
895PyObject_GetItem:PyObject*::+1:
896PyObject_GetItem:PyObject*:o:0:
897PyObject_GetItem:PyObject*:key:0:
898
Fred Drakeb915a382002-10-04 18:58:58 +0000899PyObject_GetIter:PyObject*::+1:
900PyObject_GetIter:PyObject*:o:0:
901
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000902PyObject_HasAttr:int:::
903PyObject_HasAttr:PyObject*:o:0:
904PyObject_HasAttr:PyObject*:attr_name:0:
905
906PyObject_HasAttrString:int:::
907PyObject_HasAttrString:PyObject*:o:0:
908PyObject_HasAttrString:char*:attr_name:0:
909
910PyObject_Hash:int:::
911PyObject_Hash:PyObject*:o:0:
912
913PyObject_IsTrue:int:::
914PyObject_IsTrue:PyObject*:o:0:
915
Fred Drakef913e542000-09-12 20:17:17 +0000916PyObject_Init:PyObject*::0:
917PyObject_Init:PyObject*:op:0:
918
919PyObject_InitVar:PyVarObject*::0:
920PyObject_InitVar:PyVarObject*:op:0:
921
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000922PyObject_Length:int:::
923PyObject_Length:PyObject*:o:0:
924
Fred Drake8e0c09d2001-07-06 23:31:49 +0000925PyObject_NEW:PyObject*::+1:
926
927PyObject_New:PyObject*::+1:
928
929PyObject_NEW_VAR:PyObject*::+1:
930
931PyObject_NewVar:PyObject*::+1:
932
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000933PyObject_Print:int:::
934PyObject_Print:PyObject*:o:0:
935PyObject_Print:FILE*:fp::
936PyObject_Print:int:flags::
937
938PyObject_Repr:PyObject*::+1:
939PyObject_Repr:PyObject*:o:0:
940
Fred Drakea0c5e9f2002-06-14 14:35:56 +0000941PyObject_RichCompare:PyObject*::+1:
942PyObject_RichCompare:PyObject*:o1:0:
943PyObject_RichCompare:PyObject*:o2:0:
944PyObject_RichCompare:int:opid::
945
946PyObject_RichCompareBool:int:::
947PyObject_RichCompareBool:PyObject*:o1:0:
948PyObject_RichCompareBool:PyObject*:o2:0:
949PyObject_RichCompareBool:int:opid::
950
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000951PyObject_SetAttr:int:::
952PyObject_SetAttr:PyObject*:o:0:
953PyObject_SetAttr:PyObject*:attr_name:0:
954PyObject_SetAttr:PyObject*:v:+1:
955
956PyObject_SetAttrString:int:::
957PyObject_SetAttrString:PyObject*:o:0:
958PyObject_SetAttrString:char*:attr_name::
959PyObject_SetAttrString:PyObject*:v:+1:
960
961PyObject_SetItem:int:::
962PyObject_SetItem:PyObject*:o:0:
963PyObject_SetItem:PyObject*:key:0:
964PyObject_SetItem:PyObject*:v:+1:
965
966PyObject_Str:PyObject*::+1:
967PyObject_Str:PyObject*:o:0:
968
969PyObject_Type:PyObject*::+1:
970PyObject_Type:PyObject*:o:0:
971
Fred Drakeb2625eb2001-05-29 15:34:06 +0000972PyObject_Unicode:PyObject*::+1:
973PyObject_Unicode:PyObject*:o:0:
974
Fred Drake805bf1b1999-10-20 16:03:38 +0000975PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000976PyParser_SimpleParseFile:FILE*:fp::
977PyParser_SimpleParseFile:char*:filename::
978PyParser_SimpleParseFile:int:start::
979
Fred Drake805bf1b1999-10-20 16:03:38 +0000980PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000981PyParser_SimpleParseString:char*:str::
982PyParser_SimpleParseString:int:start::
983
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000984PyRun_AnyFile:int:::
985PyRun_AnyFile:FILE*:fp::
986PyRun_AnyFile:char*:filename::
987
Fred Drake4ca744c2000-08-12 03:39:47 +0000988PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000989PyRun_File:FILE*:fp::
990PyRun_File:char*:filename::
991PyRun_File:int:start::
992PyRun_File:PyObject*:globals:0:
993PyRun_File:PyObject*:locals:0:
994
Fred Drake3e482d92006-03-30 02:58:38 +0000995PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
996PyRun_FileEx:FILE*:fp::
997PyRun_FileEx:char*:filename::
998PyRun_FileEx:int:start::
999PyRun_FileEx:PyObject*:globals:0:
1000PyRun_FileEx:PyObject*:locals:0:
1001PyRun_FileEx:int:closeit::
1002
1003PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1004PyRun_FileFlags:FILE*:fp::
1005PyRun_FileFlags:char*:filename::
1006PyRun_FileFlags:int:start::
1007PyRun_FileFlags:PyObject*:globals:0:
1008PyRun_FileFlags:PyObject*:locals:0:
1009PyRun_FileFlags:PyCompilerFlags*:flags::
1010
1011PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1012PyRun_FileExFlags:FILE*:fp::
1013PyRun_FileExFlags:char*:filename::
1014PyRun_FileExFlags:int:start::
1015PyRun_FileExFlags:PyObject*:globals:0:
1016PyRun_FileExFlags:PyObject*:locals:0:
1017PyRun_FileExFlags:int:closeit::
1018PyRun_FileExFlags:PyCompilerFlags*:flags::
1019
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001020PyRun_InteractiveLoop:int:::
1021PyRun_InteractiveLoop:FILE*:fp::
1022PyRun_InteractiveLoop:char*:filename::
1023
1024PyRun_InteractiveOne:int:::
1025PyRun_InteractiveOne:FILE*:fp::
1026PyRun_InteractiveOne:char*:filename::
1027
1028PyRun_SimpleFile:int:::
1029PyRun_SimpleFile:FILE*:fp::
1030PyRun_SimpleFile:char*:filename::
1031
1032PyRun_SimpleString:int:::
1033PyRun_SimpleString:char*:command::
1034
Fred Drake4ca744c2000-08-12 03:39:47 +00001035PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001036PyRun_String:char*:str::
1037PyRun_String:int:start::
1038PyRun_String:PyObject*:globals:0:
1039PyRun_String:PyObject*:locals:0:
1040
Fred Drake3e482d92006-03-30 02:58:38 +00001041PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
1042PyRun_StringFlags:char*:str::
1043PyRun_StringFlags:int:start::
1044PyRun_StringFlags:PyObject*:globals:0:
1045PyRun_StringFlags:PyObject*:locals:0:
1046PyRun_StringFlags:PyCompilerFlags*:flags::
1047
Fred Draked61d0d32001-09-23 02:05:26 +00001048PySeqIter_New:PyObject*::+1:
1049PySeqIter_New:PyObject*:seq::
1050
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001051PySequence_Check:int:::
1052PySequence_Check:PyObject*:o:0:
1053
1054PySequence_Concat:PyObject*::+1:
1055PySequence_Concat:PyObject*:o1:0:
1056PySequence_Concat:PyObject*:o2:0:
1057
1058PySequence_Count:int:::
1059PySequence_Count:PyObject*:o:0:
1060PySequence_Count:PyObject*:value:0:
1061
1062PySequence_DelItem:int:::
1063PySequence_DelItem:PyObject*:o:0:
1064PySequence_DelItem:int:i::
1065
1066PySequence_DelSlice:int:::
1067PySequence_DelSlice:PyObject*:o:0:
1068PySequence_DelSlice:int:i1::
1069PySequence_DelSlice:int:i2::
1070
Fred Drake81cccb72000-09-12 15:22:05 +00001071PySequence_Fast:PyObject*::+1:
1072PySequence_Fast:PyObject*:v:0:
1073PySequence_Fast:const char*:m::
1074
1075PySequence_Fast_GET_ITEM:PyObject*::0:
1076PySequence_Fast_GET_ITEM:PyObject*:o:0:
1077PySequence_Fast_GET_ITEM:int:i::
1078
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001079PySequence_GetItem:PyObject*::+1:
1080PySequence_GetItem:PyObject*:o:0:
1081PySequence_GetItem:int:i::
1082
1083PySequence_GetSlice:PyObject*::+1:
1084PySequence_GetSlice:PyObject*:o:0:
1085PySequence_GetSlice:int:i1::
1086PySequence_GetSlice:int:i2::
1087
1088PySequence_In:int:::
1089PySequence_In:PyObject*:o:0:
1090PySequence_In:PyObject*:value:0:
1091
1092PySequence_Index:int:::
1093PySequence_Index:PyObject*:o:0:
1094PySequence_Index:PyObject*:value:0:
1095
Fred Drake1fa93652000-09-22 18:19:37 +00001096PySequence_InPlaceConcat:PyObject*::+1:
1097PySequence_InPlaceConcat:PyObject*:s:0:
1098PySequence_InPlaceConcat:PyObject*:o:0:
1099
1100PySequence_InPlaceRepeat:PyObject*::+1:
1101PySequence_InPlaceRepeat:PyObject*:s:0:
1102PySequence_InPlaceRepeat:PyObject*:o:0:
1103
Fred Drakeffb294b2002-05-23 16:03:16 +00001104PySequence_ITEM:PyObject*::+1:
1105PySequence_ITEM:PyObject*:o:0:
1106PySequence_ITEM:int:i::
1107
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001108PySequence_Repeat:PyObject*::+1:
1109PySequence_Repeat:PyObject*:o:0:
1110PySequence_Repeat:int:count::
1111
1112PySequence_SetItem:int:::
1113PySequence_SetItem:PyObject*:o:0:
1114PySequence_SetItem:int:i::
1115PySequence_SetItem:PyObject*:v:+1:
1116
1117PySequence_SetSlice:int:::
1118PySequence_SetSlice:PyObject*:o:0:
1119PySequence_SetSlice:int:i1::
1120PySequence_SetSlice:int:i2::
1121PySequence_SetSlice:PyObject*:v:+1:
1122
Fred Drake1c2d06a2000-06-16 20:00:04 +00001123PySequence_List:PyObject*::+1:
1124PySequence_List:PyObject*:o:0:
1125
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001126PySequence_Tuple:PyObject*::+1:
1127PySequence_Tuple:PyObject*:o:0:
1128
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001129PySet_Append:int:::
1130PySet_Append:PyObject*:set:0:
1131PySet_Append:PyObject*:key:+1:
1132
1133PySet_Contains:int:::
1134PySet_Contains:PyObject*:anyset:0:
1135PySet_Contains:PyObject*:key:0:
1136
1137PySet_Discard:int:::
1138PySet_Discard:PyObject*:set:0:
1139PySet_Discard:PyObject*:key:-1:no effect if key not found
1140
Raymond Hettinger76382492005-08-21 00:08:36 +00001141PySet_Pop:PyObject*::0:or returns NULL and raises KeyError if set is empty
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001142PySet_Pop:PyObject*:set:0:
Raymond Hettinger0cbf4002005-08-20 23:52:30 +00001143
1144PySet_Size:int:::
1145PySet_Size:PyObject*:anyset:0:
1146
Fred Drake23a78cf2001-09-24 15:29:47 +00001147PySlice_Check:int:::
1148PySlice_Check:PyObject*:ob:0:
1149
1150PySlice_New:PyObject*::+1:
1151PySlice_New:PyObject*:start:0:
1152PySlice_New:PyObject*:stop:0:
1153PySlice_New:PyObject*:step:0:
1154
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001155PyString_AS_STRING:char*:::
1156PyString_AS_STRING:PyObject*:string:0:
1157
Fred Drakeb2625eb2001-05-29 15:34:06 +00001158PyString_AsDecodedObject:PyObject*::+1:
1159PyString_AsDecodedObject:PyObject*:str:0:
1160PyString_AsDecodedObject:const char*:encoding::
1161PyString_AsDecodedObject:const char*:errors::
1162
1163PyString_AsEncodedObject:PyObject*::+1:
1164PyString_AsEncodedObject:PyObject*:str:0:
1165PyString_AsEncodedObject:const char*:encoding::
1166PyString_AsEncodedObject:const char*:errors::
1167
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001168PyString_AsString:char*:::
1169PyString_AsString:PyObject*:string:0:
1170
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +00001171PyString_AsStringAndSize:int:::
1172PyString_AsStringAndSize:PyObject*:obj:0:
1173PyString_AsStringAndSize:char**:buffer::
1174PyString_AsStringAndSize:int*:length::
1175
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001176PyString_Check:int:::
1177PyString_Check:PyObject*:o:0:
1178
1179PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001180PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001181PyString_Concat:PyObject*:newpart:0:
1182
1183PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +00001184PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001185PyString_ConcatAndDel:PyObject*:newpart:-1:
1186
1187PyString_Format:PyObject*::+1:
1188PyString_Format:PyObject*:format:0:
1189PyString_Format:PyObject*:args:0:
1190
1191PyString_FromString:PyObject*::+1:
1192PyString_FromString:const char*:v::
1193
1194PyString_FromStringAndSize:PyObject*::+1:
1195PyString_FromStringAndSize:const char*:v::
1196PyString_FromStringAndSize:int:len::
1197
Barry Warsaw8c64a542001-08-28 02:32:04 +00001198PyString_FromFormat:PyObject*::+1:
1199PyString_FromFormat:const char*:format::
1200PyString_FromFormat::...::
1201
1202PyString_FromFormatV:PyObject*::+1:
1203PyString_FromFormatV:const char*:format::
1204PyString_FromFormatV:va_list:vargs::
1205
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001206PyString_GET_SIZE:int:::
1207PyString_GET_SIZE:PyObject*:string:0:
1208
1209PyString_InternFromString:PyObject*::+1:
1210PyString_InternFromString:const char*:v::
1211
1212PyString_InternInPlace:void:::
1213PyString_InternInPlace:PyObject**:string:+1:???
1214
1215PyString_Size:int:::
1216PyString_Size:PyObject*:string:0:
1217
Marc-André Lemburg47073202000-07-07 15:48:54 +00001218PyString_Decode:PyObject*::+1:
1219PyString_Decode:const char*:s::
1220PyString_Decode:int:size::
1221PyString_Decode:const char*:encoding::
1222PyString_Decode:const char*:errors::
1223
1224PyString_Encode:PyObject*::+1:
1225PyString_Encode:const char*:s::
1226PyString_Encode:int:size::
1227PyString_Encode:const char*:encoding::
1228PyString_Encode:const char*:errors::
1229
1230PyString_AsEncodedString:PyObject*::+1:
1231PyString_AsEncodedString:PyObject*:str::
1232PyString_AsEncodedString:const char*:encoding::
1233PyString_AsEncodedString:const char*:errors::
1234
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001235PySys_SetArgv:int:::
1236PySys_SetArgv:int:argc::
1237PySys_SetArgv:char**:argv::
1238
1239PyThreadState_Clear:void:::
1240PyThreadState_Clear:PyThreadState*:tstate::
1241
1242PyThreadState_Delete:void:::
1243PyThreadState_Delete:PyThreadState*:tstate::
1244
1245PyThreadState_Get:PyThreadState*:::
1246
Fred Drakeb2625eb2001-05-29 15:34:06 +00001247PyThreadState_GetDict:PyObject*::0:
1248
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001249PyThreadState_New:PyThreadState*:::
1250PyThreadState_New:PyInterpreterState*:interp::
1251
1252PyThreadState_Swap:PyThreadState*:::
1253PyThreadState_Swap:PyThreadState*:tstate::
1254
Fred Drake3e482d92006-03-30 02:58:38 +00001255PyTime_FromTime:PyObject*::+1:
1256PyTime_FromTime:int:hour::
1257PyTime_FromTime:int:minute::
1258PyTime_FromTime:int:second::
1259PyTime_FromTime:int:usecond::
1260
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001261PyTuple_Check:int:::
1262PyTuple_Check:PyObject*:p:0:
1263
1264PyTuple_GET_ITEM:PyObject*::0:
1265PyTuple_GET_ITEM:PyTupleObject*:p:0:
1266PyTuple_GET_ITEM:int:pos::
1267
1268PyTuple_GetItem:PyObject*::0:
1269PyTuple_GetItem:PyTupleObject*:p:0:
1270PyTuple_GetItem:int:pos::
1271
1272PyTuple_GetSlice:PyObject*::+1:
1273PyTuple_GetSlice:PyTupleObject*:p:0:
1274PyTuple_GetSlice:int:low::
1275PyTuple_GetSlice:int:high::
1276
1277PyTuple_New:PyObject*::+1:
1278PyTuple_New:int:len::
1279
Fred Drake3e482d92006-03-30 02:58:38 +00001280PyTuple_Pack:PyObject*::+1:
1281PyTuple_Pack:int:len::
1282PyTuple_Pack:PyObject*:...:0:
1283
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001284PyTuple_SET_ITEM:void:::
1285PyTuple_SET_ITEM:PyTupleObject*:p:0:
1286PyTuple_SET_ITEM:int:pos::
1287PyTuple_SET_ITEM:PyObject*:o:0:
1288
1289PyTuple_SetItem:int:::
1290PyTuple_SetItem:PyTupleObject*:p:0:
1291PyTuple_SetItem:int:pos::
1292PyTuple_SetItem:PyObject*:o:0:
1293
1294PyTuple_Size:int:::
1295PyTuple_Size:PyTupleObject*:p:0:
1296
Fred Drake1b58bff2001-10-29 17:43:14 +00001297PyType_GenericAlloc:PyObject*::+1:
1298PyType_GenericAlloc:PyObject*:type:0:
1299PyType_GenericAlloc:int:nitems:0:
1300
1301PyType_GenericNew:PyObject*::+1:
1302PyType_GenericNew:PyObject*:type:0:
1303PyType_GenericNew:PyObject*:args:0:
1304PyType_GenericNew:PyObject*:kwds:0:
1305
Fred Drake992fe5a2000-06-16 21:04:15 +00001306PyUnicode_Check:int:::
1307PyUnicode_Check:PyObject*:o:0:
1308
1309PyUnicode_GET_SIZE:int:::
1310PyUnicode_GET_SIZE:PyObject*:o:0:
1311
1312PyUnicode_GET_DATA_SIZE:int:::
1313PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1314
1315PyUnicode_AS_UNICODE:Py_UNICODE*:::
1316PyUnicode_AS_UNICODE:PyObject*:o:0:
1317
1318PyUnicode_AS_DATA:const char*:::
1319PyUnicode_AS_DATA:PyObject*:o:0:
1320
1321Py_UNICODE_ISSPACE:int:::
1322Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1323
1324Py_UNICODE_ISLOWER:int:::
1325Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1326
1327Py_UNICODE_ISUPPER:int:::
1328Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1329
1330Py_UNICODE_ISTITLE:int:::
1331Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1332
1333Py_UNICODE_ISLINEBREAK:int:::
1334Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1335
1336Py_UNICODE_ISDECIMAL:int:::
1337Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1338
1339Py_UNICODE_ISDIGIT:int:::
1340Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1341
1342Py_UNICODE_ISNUMERIC:int:::
1343Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1344
1345Py_UNICODE_TOLOWER:Py_UNICODE:::
1346Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1347
1348Py_UNICODE_TOUPPER:Py_UNICODE:::
1349Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1350
1351Py_UNICODE_TOTITLE:Py_UNICODE:::
1352Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1353
1354Py_UNICODE_TODECIMAL:int:::
1355Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1356
1357Py_UNICODE_TODIGIT:int:::
1358Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1359
1360Py_UNICODE_TONUMERIC:double:::
1361Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1362
1363PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001364PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001365PyUnicode_FromUnicode:int:size::
1366
1367PyUnicode_AsUnicode:Py_UNICODE*:::
1368PyUnicode_AsUnicode:PyObject :*unicode:0:
1369
1370PyUnicode_GetSize:int:::
1371PyUnicode_GetSize:PyObject :*unicode:0:
1372
1373PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001374PyUnicode_FromObject:PyObject*:*obj:0:
1375
1376PyUnicode_FromEncodedObject:PyObject*::+1:
1377PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1378PyUnicode_FromEncodedObject:const char*:encoding::
1379PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001380
1381PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001382PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001383PyUnicode_FromWideChar:int:size::
1384
1385PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001386PyUnicode_AsWideChar:PyObject*:*unicode:0:
1387PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001388PyUnicode_AsWideChar:int:size::
1389
1390PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001391PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001392PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001393PyUnicode_Decode:const char*:encoding::
1394PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001395
Fred Drake3e482d92006-03-30 02:58:38 +00001396PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1397PyUnicode_DecodeUTF16Stateful:const char*:s::
1398PyUnicode_DecodeUTF16Stateful:int:size::
1399PyUnicode_DecodeUTF16Stateful:const char*:errors::
1400PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1401PyUnicode_DecodeUTF16Stateful:int*:consumed::
1402
1403PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1404PyUnicode_DecodeUTF8Stateful:const char*:s::
1405PyUnicode_DecodeUTF8Stateful:int:size::
1406PyUnicode_DecodeUTF8Stateful:const char*:errors::
1407PyUnicode_DecodeUTF8Stateful:int*:consumed::
1408
Fred Drake992fe5a2000-06-16 21:04:15 +00001409PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001410PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001411PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001412PyUnicode_Encode:const char*:encoding::
1413PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001414
1415PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001416PyUnicode_AsEncodedString:PyObject*:unicode::
1417PyUnicode_AsEncodedString:const char*:encoding::
1418PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001419
1420PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001421PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001422PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001423PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001424
1425PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001426PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001427PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001428PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001429
1430PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001431PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001432
1433PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001434PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001435PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001436PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001437PyUnicode_DecodeUTF16:int*:byteorder::
1438
1439PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001440PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001441PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001442PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001443PyUnicode_EncodeUTF16:int:byteorder::
1444
1445PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001446PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001447
1448PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001449PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001450PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001451PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001452
1453PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001454PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001455PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001456PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001457
1458PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001459PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001460
1461PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001462PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001463PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001464PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001465
1466PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001467PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001468PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001469PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001470
1471PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001472PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001473
1474PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001475PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001476PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001477PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001478
1479PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001480PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001481PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001482PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001483
1484PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001485PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001486
1487PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001488PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001489PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001490PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001491
1492PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001493PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001494PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001495PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001496
1497PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001498PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001499
1500PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001501PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001502PyUnicode_DecodeCharmap:int:size::
1503PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001504PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001505
1506PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001507PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001508PyUnicode_EncodeCharmap:int:size::
1509PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001510PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001511
1512PyUnicode_AsCharmapString:PyObject*::+1:
1513PyUnicode_AsCharmapString:PyObject*:unicode:0:
1514PyUnicode_AsCharmapString:PyObject*:mapping:0:
1515
1516PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001517PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001518PyUnicode_TranslateCharmap:int:size::
1519PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001520PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001521
1522PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001523PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001524PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001525PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001526
1527PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001528PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001529PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001530PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001531
1532PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001533PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001534
1535PyUnicode_Concat:PyObject*::+1:
1536PyUnicode_Concat:PyObject*:left:0:
1537PyUnicode_Concat:PyObject*:right:0:
1538
1539PyUnicode_Split:PyObject*::+1:
1540PyUnicode_Split:PyObject*:left:0:
1541PyUnicode_Split:PyObject*:right:0:
1542PyUnicode_Split:int:maxsplit::
1543
1544PyUnicode_Splitlines:PyObject*::+1:
1545PyUnicode_Splitlines:PyObject*:s:0:
1546PyUnicode_Splitlines:int:maxsplit::
1547
1548PyUnicode_Translate:PyObject*::+1:
1549PyUnicode_Translate:PyObject*:str:0:
1550PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001551PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001552
1553PyUnicode_Join:PyObject*::+1:
1554PyUnicode_Join:PyObject*:separator:0:
1555PyUnicode_Join:PyObject*:seq:0:
1556
1557PyUnicode_Tailmatch:PyObject*::+1:
1558PyUnicode_Tailmatch:PyObject*:str:0:
1559PyUnicode_Tailmatch:PyObject*:substr:0:
1560PyUnicode_Tailmatch:int:start::
1561PyUnicode_Tailmatch:int:end::
1562PyUnicode_Tailmatch:int:direction::
1563
Fred Drake1d1e1db2002-06-20 22:07:04 +00001564PyUnicode_Find:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001565PyUnicode_Find:PyObject*:str:0:
1566PyUnicode_Find:PyObject*:substr:0:
1567PyUnicode_Find:int:start::
1568PyUnicode_Find:int:end::
1569PyUnicode_Find:int:direction::
1570
Fred Drake1d1e1db2002-06-20 22:07:04 +00001571PyUnicode_Count:int:::
Fred Drake992fe5a2000-06-16 21:04:15 +00001572PyUnicode_Count:PyObject*:str:0:
1573PyUnicode_Count:PyObject*:substr:0:
1574PyUnicode_Count:int:start::
1575PyUnicode_Count:int:end::
1576
1577PyUnicode_Replace:PyObject*::+1:
1578PyUnicode_Replace:PyObject*:str:0:
1579PyUnicode_Replace:PyObject*:substr:0:
1580PyUnicode_Replace:PyObject*:replstr:0:
1581PyUnicode_Replace:int:maxcount::
1582
1583PyUnicode_Compare:int:::
1584PyUnicode_Compare:PyObject*:left:0:
1585PyUnicode_Compare:PyObject*:right:0:
1586
1587PyUnicode_Format:PyObject*::+1:
1588PyUnicode_Format:PyObject*:format:0:
1589PyUnicode_Format:PyObject*:args:0:
1590
1591PyUnicode_Contains:int:::
1592PyUnicode_Contains:PyObject*:container:0:
1593PyUnicode_Contains:PyObject*:element:0:
1594
Fred Drake1b58bff2001-10-29 17:43:14 +00001595PyWeakref_GET_OBJECT:PyObject*::0:
1596PyWeakref_GET_OBJECT:PyObject*:ref:0:
1597
Fred Drake8371e842002-02-20 05:07:36 +00001598PyWeakref_GetObject:PyObject*::0:
Fred Drake1b58bff2001-10-29 17:43:14 +00001599PyWeakref_GetObject:PyObject*:ref:0:
1600
1601PyWeakref_NewProxy:PyObject*::+1:
1602PyWeakref_NewProxy:PyObject*:ob:0:
1603PyWeakref_NewProxy:PyObject*:callback:0:
1604
1605PyWeakref_NewRef:PyObject*::+1:
1606PyWeakref_NewRef:PyObject*:ob:0:
1607PyWeakref_NewRef:PyObject*:callback:0:
1608
1609PyWrapper_New:PyObject*::+1:
1610PyWrapper_New:PyObject*:d:0:
1611PyWrapper_New:PyObject*:self:0:
1612
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001613Py_AtExit:int:::
1614Py_AtExit:void (*)():func::
1615
Fred Drake6d988552001-07-20 20:55:31 +00001616Py_BuildValue:PyObject*::+1:
1617Py_BuildValue:char*:format::
1618
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001619Py_CompileString:PyObject*::+1:
1620Py_CompileString:char*:str::
1621Py_CompileString:char*:filename::
1622Py_CompileString:int:start::
1623
Fred Drake3e482d92006-03-30 02:58:38 +00001624Py_CompileStringFlags:PyObject*::+1:
1625Py_CompileStringFlags:char*:str::
1626Py_CompileStringFlags:char*:filename::
1627Py_CompileStringFlags:int:start::
1628Py_CompileStringFlags:PyCompilerFlags*:flags::
1629
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001630Py_DECREF:void:::
1631Py_DECREF:PyObject*:o:-1:
1632
1633Py_EndInterpreter:void:::
1634Py_EndInterpreter:PyThreadState*:tstate::
1635
1636Py_Exit:void:::
1637Py_Exit:int:status::
1638
1639Py_FatalError:void:::
1640Py_FatalError:char*:message::
1641
1642Py_FdIsInteractive:int:::
1643Py_FdIsInteractive:FILE*:fp::
1644Py_FdIsInteractive:char*:filename::
1645
1646Py_Finalize:void:::
1647
Fred Drake8520cc22000-04-10 19:38:24 +00001648Py_FindMethod:PyObject*::+1:
1649Py_FindMethod:PyMethodDef[]:methods::
1650Py_FindMethod:PyObject*:self:+1:
1651Py_FindMethod:char*:name::
1652
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001653Py_GetBuildInfoconst:char*:::
1654
1655Py_GetCompilerconst:char*:::
1656
1657Py_GetCopyrightconst:char*:::
1658
1659Py_GetExecPrefix:char*:::
1660
1661Py_GetPath:char*:::
1662
1663Py_GetPlatformconst:char*:::
1664
1665Py_GetPrefix:char*:::
1666
1667Py_GetProgramFullPath:char*:::
1668
1669Py_GetProgramName:char*:::
1670
1671Py_GetVersionconst:char*:::
1672
1673Py_INCREF:void:::
1674Py_INCREF:PyObject*:o:+1:
1675
1676Py_Initialize:void:::
1677
1678Py_IsInitialized:int:::
1679
1680Py_NewInterpreter:PyThreadState*:::
1681
1682Py_SetProgramName:void:::
1683Py_SetProgramName:char*:name::
1684
1685Py_XDECREF:void:::
1686Py_XDECREF:PyObject*:o:-1:if o is not NULL
1687
1688Py_XINCREF:void:::
1689Py_XINCREF:PyObject*:o:+1:if o is not NULL
1690
1691_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1692_PyImport_FindExtension:char*:::
1693_PyImport_FindExtension:char*:::
1694
1695_PyImport_Fini:void:::
1696
1697_PyImport_FixupExtension:PyObject*:::???
1698_PyImport_FixupExtension:char*:::
1699_PyImport_FixupExtension:char*:::
1700
1701_PyImport_Init:void:::
1702
Fred Drakef913e542000-09-12 20:17:17 +00001703_PyObject_Del:void:::
1704_PyObject_Del:PyObject*:op:0:
1705
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001706_PyObject_New:PyObject*::+1:
1707_PyObject_New:PyTypeObject*:type:0:
1708
Fred Drake8e0c09d2001-07-06 23:31:49 +00001709_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001710_PyObject_NewVar:PyTypeObject*:type:0:
1711_PyObject_NewVar:int:size::
1712
1713_PyString_Resize:int:::
1714_PyString_Resize:PyObject**:string:+1:
1715_PyString_Resize:int:newsize::
1716
1717_PyTuple_Resize:int:::
1718_PyTuple_Resize:PyTupleObject**:p:+1:
1719_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001720
1721_Py_c_diff:Py_complex:::
1722_Py_c_diff:Py_complex:left::
1723_Py_c_diff:Py_complex:right::
1724
1725_Py_c_neg:Py_complex:::
1726_Py_c_neg:Py_complex:complex::
1727
1728_Py_c_pow:Py_complex:::
1729_Py_c_pow:Py_complex:num::
1730_Py_c_pow:Py_complex:exp::
1731
1732_Py_c_prod:Py_complex:::
1733_Py_c_prod:Py_complex:left::
1734_Py_c_prod:Py_complex:right::
1735
1736_Py_c_quot:Py_complex:::
1737_Py_c_quot:Py_complex:dividend::
1738_Py_c_quot:Py_complex:divisor::
1739
1740_Py_c_sum:Py_complex:::
1741_Py_c_sum:Py_complex:left::
1742_Py_c_sum:Py_complex:right::