blob: e3881957579441a84bebdbb44362ec342cb49fb8 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001# Created by Skip Montanaro <skip@mojam.com>.
2
3# 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
19# 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.
23
24# 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
31# The parameter names are as they appear in the API manual, not the source
Larry Hastingsb0827312014-02-09 22:05:19 -080032# code.
Georg Brandl116aa622007-08-15 14:28:22 +000033
34PyBool_FromLong:PyObject*::+1:
35PyBool_FromLong:long:v:0:
36
37PyBuffer_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
Benjamin Petersonb173f782009-05-05 22:31:58 +000058PyCapsule_GetContext:void *:::
59PyCapsule_GetContext:PyObject*:self:0:
60
61PyCapsule_GetDestructor:void (*)(PyObject *):::
62PyCapsule_GetDestructor:PyObject*:self:0:
63
64PyCapsule_GetName:const char *:::
65PyCapsule_GetName:PyObject*:self:0:
66
67PyCapsule_GetPointer:void*:::
68PyCapsule_GetPointer:PyObject*:self:0:
69PyCapsule_GetPointer:const char *:name::
70
71PyCapsule_Import:void *:::
72PyCapsule_Import:const char *:name::
73PyCapsule_Import:int:no_block::
74
75PyCapsule_New:PyObject*::+1:
76PyCapsule_New:void*:pointer::
77PyCapsule_New:const char *:name::
78PyCapsule_New::void (* destructor)(PyObject* )::
79
80PyCapsule_SetContext:int:::
81PyCapsule_SetContext:PyObject*:self:0:
82PyCapsule_SetContext:void *:context::
83
84PyCapsule_SetDestructor:int:::
85PyCapsule_SetDestructor:PyObject*:self:0:
86PyCapsule_SetDestructor:void (*)(PyObject *):destructor::
87
88PyCapsule_SetName:int:::
89PyCapsule_SetName:PyObject*:self:0:
90PyCapsule_SetName:const char *:name::
91
92PyCapsule_SetPointer:int:::
93PyCapsule_SetPointer:PyObject*:self:0:
94PyCapsule_SetPointer:void*:pointer::
95
96
Georg Brandl116aa622007-08-15 14:28:22 +000097PyCObject_AsVoidPtr:void*:::
98PyCObject_AsVoidPtr:PyObject*:self:0:
99
100PyCObject_FromVoidPtr:PyObject*::+1:
101PyCObject_FromVoidPtr:void*:cobj::
102PyCObject_FromVoidPtr::void (* destr)(void* )::
103
104PyCObject_FromVoidPtrAndDesc:PyObject*::+1:
105PyCObject_FromVoidPtrAndDesc:void*:cobj::
106PyCObject_FromVoidPtrAndDesc:void*:desc::
107PyCObject_FromVoidPtrAndDesc:void(*)(void*,void*):destr::
108
109PyCObject_GetDesc:void*:::
110PyCObject_GetDesc:PyObject*:self:0:
111
112PyCell_New:PyObject*::+1:
113PyCell_New:PyObject*:ob:0:
114
115PyCell_GET:PyObject*::0:
116PyCell_GET:PyObject*:ob:0:
117
118PyCell_Get:PyObject*::+1:
119PyCell_Get:PyObject*:cell:0:
120
121PyCell_SET:void:::
122PyCell_SET:PyObject*:cell:0:
123PyCell_SET:PyObject*:value:0:
124
125PyCell_Set:int:::
126PyCell_Set:PyObject*:cell:0:
127PyCell_Set:PyObject*:value:0:
128
129PyCallIter_New:PyObject*::+1:
130PyCallIter_New:PyObject*:callable::
131PyCallIter_New:PyObject*:sentinel::
132
133PyCallable_Check:int:::
134PyCallable_Check:PyObject*:o:0:
135
136PyComplex_AsCComplex:Py_complex:::
137PyComplex_AsCComplex:PyObject*:op:0:
138
139PyComplex_Check:int:::
140PyComplex_Check:PyObject*:p:0:
141
142PyComplex_FromCComplex:PyObject*::+1:
143PyComplex_FromCComplex::Py_complex v::
144
145PyComplex_FromDoubles:PyObject*::+1:
146PyComplex_FromDoubles::double real::
147PyComplex_FromDoubles::double imag::
148
149PyComplex_ImagAsDouble:double:::
150PyComplex_ImagAsDouble:PyObject*:op:0:
151
152PyComplex_RealAsDouble:double:::
153PyComplex_RealAsDouble:PyObject*:op:0:
154
155PyDate_FromDate:PyObject*::+1:
156PyDate_FromDate:int:year::
157PyDate_FromDate:int:month::
158PyDate_FromDate:int:day::
159
160PyDate_FromTimestamp:PyObject*::+1:
161PyDate_FromTimestamp:PyObject*:args:0:
162
163PyDateTime_FromDateAndTime:PyObject*::+1:
164PyDateTime_FromDateAndTime:int:year::
165PyDateTime_FromDateAndTime:int:month::
166PyDateTime_FromDateAndTime:int:day::
167PyDateTime_FromDateAndTime:int:hour::
168PyDateTime_FromDateAndTime:int:minute::
169PyDateTime_FromDateAndTime:int:second::
170PyDateTime_FromDateAndTime:int:usecond::
171
172PyDateTime_FromTimestamp:PyObject*::+1:
173PyDateTime_FromTimestamp:PyObject*:args:0:
174
175PyDelta_FromDSU:PyObject*::+1:
176PyDelta_FromDSU:int:days::
177PyDelta_FromDSU:int:seconds::
178PyDelta_FromDSU:int:useconds::
179
180PyDescr_NewClassMethod:PyObject*::+1:
181PyDescr_NewClassMethod:PyTypeObject*:type::
182PyDescr_NewClassMethod:PyMethodDef*:method::
183
184PyDescr_NewGetSet:PyObject*::+1:
185PyDescr_NewGetSet:PyTypeObject*:type::
186PyDescr_NewGetSet:PyGetSetDef*:getset::
187
188PyDescr_NewMember:PyObject*::+1:
189PyDescr_NewMember:PyTypeObject*:type::
190PyDescr_NewMember:PyMemberDef*:member::
191
192PyDescr_NewMethod:PyObject*::+1:
193PyDescr_NewMethod:PyTypeObject*:type::
194PyDescr_NewMethod:PyMethodDef*:meth::
195
196PyDescr_NewWrapper:PyObject*::+1:
197PyDescr_NewWrapper:PyTypeObject*:type::
198PyDescr_NewWrapper:struct wrapperbase*:base::
199PyDescr_NewWrapper:void*:wrapped::
200
201PyDict_Check:int:::
202PyDict_Check:PyObject*:p:0:
203
204PyDict_Clear:void:::
205PyDict_Clear:PyObject*:p:0:
206
207PyDict_DelItem:int:::
208PyDict_DelItem:PyObject*:p:0:
209PyDict_DelItem:PyObject*:key:0:
210
211PyDict_DelItemString:int:::
212PyDict_DelItemString:PyObject*:p:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300213PyDict_DelItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000214
215PyDict_GetItem:PyObject*::0:0
216PyDict_GetItem:PyObject*:p:0:
217PyDict_GetItem:PyObject*:key:0:
218
219PyDict_GetItemString:PyObject*::0:
220PyDict_GetItemString:PyObject*:p:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300221PyDict_GetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000222
Benjamin Peterson00e98862013-03-07 22:16:29 -0500223PyDict_SetDefault:PyObject*::0:
224PyDict_SetDefault:PyObject*:p:0:
225PyDict_SetDefault:PyObject*:key:0:conditionally +1 if inserted into the dict
226PyDict_SetDefault:PyObject*:default:0:conditionally +1 if inserted into the dict
227
Georg Brandl116aa622007-08-15 14:28:22 +0000228PyDict_Items:PyObject*::+1:
229PyDict_Items:PyObject*:p:0:
230
231PyDict_Keys:PyObject*::+1:
232PyDict_Keys:PyObject*:p:0:
233
234PyDict_New:PyObject*::+1:
235
236PyDict_Copy:PyObject*::+1:
237PyDict_Copy:PyObject*:p:0:
238
239PyDict_Next:int:::
240PyDict_Next:PyObject*:p:0:
241PyDict_Next:int:ppos::
242PyDict_Next:PyObject**:pkey:0:
243PyDict_Next:PyObject**:pvalue:0:
244
245PyDict_SetItem:int:::
246PyDict_SetItem:PyObject*:p:0:
247PyDict_SetItem:PyObject*:key:+1:
248PyDict_SetItem:PyObject*:val:+1:
249
250PyDict_SetItemString:int:::
251PyDict_SetItemString:PyObject*:p:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300252PyDict_SetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000253PyDict_SetItemString:PyObject*:val:+1:
254
255PyDict_Size:int:::
256PyDict_Size:PyObject*:p::
257
258PyDict_Values:PyObject*::+1:
259PyDict_Values:PyObject*:p:0:
260
261PyDictProxy_New:PyObject*::+1:
262PyDictProxy_New:PyObject*:dict:0:
263
264PyErr_BadArgument:int:::
265
266PyErr_BadInternalCall:void:::
267
268PyErr_CheckSignals:int:::
269
270PyErr_Clear:void:::
271
272PyErr_ExceptionMatches:int:::
273PyErr_ExceptionMatches:PyObject*:exc:0:
274
275PyErr_Fetch:void:::
276PyErr_Fetch:PyObject**:ptype:0:
277PyErr_Fetch:PyObject**:pvalue:0:
278PyErr_Fetch:PyObject**:ptraceback:0:
279
280PyErr_GivenExceptionMatches:int:::
281PyErr_GivenExceptionMatches:PyObject*:given:0:
282PyErr_GivenExceptionMatches:PyObject*:exc:0:
283
284PyErr_NewException:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300285PyErr_NewException:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000286PyErr_NewException:PyObject*:base:0:
287PyErr_NewException:PyObject*:dict:0:
288
Georg Brandl1e28a272009-12-28 08:41:01 +0000289PyErr_NewExceptionWithDoc:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300290PyErr_NewExceptionWithDoc:const char*:name::
291PyErr_NewExceptionWithDoc:const char*:doc::
Georg Brandl1e28a272009-12-28 08:41:01 +0000292PyErr_NewExceptionWithDoc:PyObject*:base:0:
293PyErr_NewExceptionWithDoc:PyObject*:dict:0:
294
Georg Brandl116aa622007-08-15 14:28:22 +0000295PyErr_NoMemory:PyObject*::null:
296
297PyErr_NormalizeException:void:::
298PyErr_NormalizeException:PyObject**:exc::???
299PyErr_NormalizeException:PyObject**:val::???
300PyErr_NormalizeException:PyObject**:tb::???
301
302PyErr_Occurred:PyObject*::0:
303
304PyErr_Print:void:::
305
306PyErr_Restore:void:::
307PyErr_Restore:PyObject*:type:-1:
308PyErr_Restore:PyObject*:value:-1:
309PyErr_Restore:PyObject*:traceback:-1:
310
311PyErr_SetExcFromWindowsErr:PyObject*::null:
312PyErr_SetExcFromWindowsErr:PyObject*:type:0:
313PyErr_SetExcFromWindowsErr:int:ierr::
314
315PyErr_SetExcFromWindowsErrWithFilename:PyObject*::null:
316PyErr_SetExcFromWindowsErrWithFilename:PyObject*:type:0:
317PyErr_SetExcFromWindowsErrWithFilename:int:ierr::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300318PyErr_SetExcFromWindowsErrWithFilename:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +0000319
320PyErr_SetFromErrno:PyObject*::null:
321PyErr_SetFromErrno:PyObject*:type:0:
322
323PyErr_SetFromErrnoWithFilename:PyObject*::null:
324PyErr_SetFromErrnoWithFilename:PyObject*:type:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300325PyErr_SetFromErrnoWithFilename:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +0000326
327PyErr_SetFromWindowsErr:PyObject*::null:
328PyErr_SetFromWindowsErr:int:ierr::
329
330PyErr_SetFromWindowsErrWithFilename:PyObject*::null:
331PyErr_SetFromWindowsErrWithFilename:int:ierr::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300332PyErr_SetFromWindowsErrWithFilename:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +0000333
334PyErr_SetInterrupt:void:::
335
336PyErr_SetNone:void:::
337PyErr_SetNone:PyObject*:type:+1:
338
339PyErr_SetObject:void:::
340PyErr_SetObject:PyObject*:type:+1:
341PyErr_SetObject:PyObject*:value:+1:
342
343PyErr_SetString:void:::
344PyErr_SetString:PyObject*:type:+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300345PyErr_SetString:const char*:message::
Georg Brandl116aa622007-08-15 14:28:22 +0000346
347PyErr_Format:PyObject*::null:
348PyErr_Format:PyObject*:exception:+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300349PyErr_Format:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000350PyErr_Format::...::
351
Antoine Pitrou0676a402014-09-30 21:16:27 +0200352PyErr_FormatV:PyObject*::null:
353PyErr_FormatV:PyObject*:exception:+1:
354PyErr_FormatV:const char*:format::
355PyErr_FormatV:va_list:vargs::
356
Georg Brandl116aa622007-08-15 14:28:22 +0000357PyErr_WarnEx:int:::
358PyErr_WarnEx:PyObject*:category:0:
359PyErr_WarnEx:const char*:message::
360PyErr_WarnEx:Py_ssize_t:stack_level::
361
362PyEval_AcquireLock:void:::
363
364PyEval_AcquireThread:void:::
365PyEval_AcquireThread:PyThreadState*:tstate::
366
Christian Heimesd8654cf2007-12-02 15:22:16 +0000367PyEval_GetBuiltins:PyObject*::0:
368PyEval_GetLocals:PyObject*::0:
369PyEval_GetGlobals:PyObject*::0:
370PyEval_GetFrame:PyObject*::0:
371
Georg Brandl116aa622007-08-15 14:28:22 +0000372PyEval_InitThreads:void:::
373
374PyEval_ReleaseLock:void:::
375
376PyEval_ReleaseThread:void:::
377PyEval_ReleaseThread:PyThreadState*:tstate::
378
379PyEval_RestoreThread:void:::
380PyEval_RestoreThread:PyThreadState*:tstate::
381
382PyEval_SaveThread:PyThreadState*:::
383
384PyEval_EvalCode:PyObject*::+1:
385PyEval_EvalCode:PyCodeObject*:co:0:
386PyEval_EvalCode:PyObject*:globals:0:
387PyEval_EvalCode:PyObject*:locals:0:
388
Petri Lehtinence770372011-10-23 21:03:33 +0300389PyException_GetTraceback:PyObject*::+1:
390
Georg Brandl116aa622007-08-15 14:28:22 +0000391PyFile_AsFile:FILE*:::
392PyFile_AsFile:PyFileObject*:p:0:
393
394PyFile_Check:int:::
395PyFile_Check:PyObject*:p:0:
396
397PyFile_FromFile:PyObject*::+1:
398PyFile_FromFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300399PyFile_FromFile:const char*:name::
400PyFile_FromFile:const char*:mode::
Georg Brandl116aa622007-08-15 14:28:22 +0000401PyFile_FromFile:int(*:close)::
402
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000403PyFile_FromFileEx:PyObject*::+1:
404PyFile_FromFileEx:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300405PyFile_FromFileEx:const char*:name::
406PyFile_FromFileEx:const char*:mode::
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000407PyFile_FromFileEx:int(*:close)::
408PyFile_FromFileEx:int:buffering::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300409PyFile_FromFileEx:const char*:encoding::
410PyFile_FromFileEx:const char*:newline::
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000411
Georg Brandl116aa622007-08-15 14:28:22 +0000412PyFile_FromString:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300413PyFile_FromString:const char*:name::
414PyFile_FromString:const char*:mode::
Georg Brandl116aa622007-08-15 14:28:22 +0000415
416PyFile_GetLine:PyObject*::+1:
417PyFile_GetLine:PyObject*:p::
418PyFile_GetLine:int:n::
419
420PyFile_Name:PyObject*::0:
421PyFile_Name:PyObject*:p:0:
422
423PyFile_SetBufSize:void:::
424PyFile_SetBufSize:PyFileObject*:p:0:
425PyFile_SetBufSize:int:n::
426
427PyFile_SoftSpace:int:::
428PyFile_SoftSpace:PyFileObject*:p:0:
429PyFile_SoftSpace:int:newflag::
430
431PyFile_WriteObject:int:::
432PyFile_WriteObject:PyObject*:obj:0:
433PyFile_WriteObject:PyFileObject*:p:0:
434PyFile_WriteObject:int:flags::
435
436PyFile_WriteString:int:::
437PyFile_WriteString:const char*:s::
438PyFile_WriteString:PyFileObject*:p:0:
439PyFile_WriteString:int:flags::
440
441PyFloat_AS_DOUBLE:double:::
442PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
443
444PyFloat_AsDouble:double:::
445PyFloat_AsDouble:PyObject*:pyfloat:0:
446
447PyFloat_Check:int:::
448PyFloat_Check:PyObject*:p:0:
449
450PyFloat_FromDouble:PyObject*::+1:
451PyFloat_FromDouble:double:v::
452
453PyFloat_FromString:PyObject*::+1:
454PyFloat_FromString:PyObject*:str:0:
455
456PyFrozenSet_New:PyObject*::+1:
457PyFrozenSet_New:PyObject*:iterable:0:
458
459PyFunction_GetClosure:PyObject*::0:
460PyFunction_GetClosure:PyObject*:op:0:
461
462PyFunction_GetCode:PyObject*::0:
463PyFunction_GetCode:PyObject*:op:0:
464
465PyFunction_GetDefaults:PyObject*::0:
466PyFunction_GetDefaults:PyObject*:op:0:
467
468PyFunction_GetGlobals:PyObject*::0:
469PyFunction_GetGlobals:PyObject*:op:0:
470
471PyFunction_GetModule:PyObject*::0:
472PyFunction_GetModule:PyObject*:op:0:
473
474PyFunction_New:PyObject*::+1:
475PyFunction_New:PyObject*:code:+1:
476PyFunction_New:PyObject*:globals:+1:
477
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100478PyFunction_NewWithQualName:PyObject*::+1:
479PyFunction_NewWithQualName:PyObject*:code:+1:
480PyFunction_NewWithQualName:PyObject*:globals:+1:
481PyFunction_NewWithQualName:PyObject*:qualname:+1:
482
Georg Brandl116aa622007-08-15 14:28:22 +0000483PyFunction_SetClosure:int:::
484PyFunction_SetClosure:PyObject*:op:0:
485PyFunction_SetClosure:PyObject*:closure:+1:
486
487PyFunction_SetDefaults:int:::
488PyFunction_SetDefaults:PyObject*:op:0:
489PyFunction_SetDefaults:PyObject*:defaults:+1:
490
491PyGen_New:PyObject*::+1:
492PyGen_New:PyFrameObject*:frame:0:
493
Yury Selivanov5376ba92015-06-22 12:19:30 -0400494PyGen_NewWithQualName:PyObject*::+1:
495PyGen_NewWithQualName:PyFrameObject*:frame:0:
496
497PyCoro_New:PyObject*::+1:
498PyCoro_New:PyFrameObject*:frame:0:
499
Georg Brandl116aa622007-08-15 14:28:22 +0000500Py_InitModule:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300501Py_InitModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000502Py_InitModule:PyMethodDef[]:methods::
503
504Py_InitModule3:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300505Py_InitModule3:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000506Py_InitModule3:PyMethodDef[]:methods::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300507Py_InitModule3:const char*:doc::
Georg Brandl116aa622007-08-15 14:28:22 +0000508
509Py_InitModule4:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300510Py_InitModule4:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000511Py_InitModule4:PyMethodDef[]:methods::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300512Py_InitModule4:const char*:doc::
Georg Brandl116aa622007-08-15 14:28:22 +0000513Py_InitModule4:PyObject*:self::
514Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
515
516PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300517PyImport_AddModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000518
519PyImport_Cleanup:void:::
520
521PyImport_ExecCodeModule:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300522PyImport_ExecCodeModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000523PyImport_ExecCodeModule:PyObject*:co:0:
524
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000525PyImport_ExecCodeModuleEx:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300526PyImport_ExecCodeModuleEx:const char*:name::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000527PyImport_ExecCodeModuleEx:PyObject*:co:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300528PyImport_ExecCodeModuleEx:const char*:pathname::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000529
Georg Brandl116aa622007-08-15 14:28:22 +0000530PyImport_GetMagicNumber:long:::
531
532PyImport_GetModuleDict:PyObject*::0:
533
534PyImport_Import:PyObject*::+1:
535PyImport_Import:PyObject*:name:0:
536
537PyImport_ImportFrozenModule:int:::
Serhiy Storchakac6792272013-10-19 21:03:34 +0300538PyImport_ImportFrozenModule:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000539
540PyImport_ImportModule:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300541PyImport_ImportModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000542
543PyImport_ImportModuleEx:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300544PyImport_ImportModuleEx:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000545PyImport_ImportModuleEx:PyObject*:globals:0:???
546PyImport_ImportModuleEx:PyObject*:locals:0:???
547PyImport_ImportModuleEx:PyObject*:fromlist:0:???
548
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000549PyImport_ImportModuleLevel:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300550PyImport_ImportModuleLevel:const char*:name::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000551PyImport_ImportModuleLevel:PyObject*:globals:0:???
552PyImport_ImportModuleLevel:PyObject*:locals:0:???
553PyImport_ImportModuleLevel:PyObject*:fromlist:0:???
554PyImport_ImportModuleLevel:int:level::
555
Georg Brandl116aa622007-08-15 14:28:22 +0000556PyImport_ReloadModule:PyObject*::+1:
557PyImport_ReloadModule:PyObject*:m:0:
558
559PyInstance_New:PyObject*::+1:
560PyInstance_New:PyObject*:klass:+1:
561PyInstance_New:PyObject*:arg:0:
562PyInstance_New:PyObject*:kw:0:
563
564PyInstance_NewRaw:PyObject*::+1:
565PyInstance_NewRaw:PyObject*:klass:+1:
566PyInstance_NewRaw:PyObject*:dict:+1:
567
568PyInt_AS_LONG:long:::
569PyInt_AS_LONG:PyIntObject*:io:0:
570
571PyInt_AsLong:long:::
572PyInt_AsLong:PyObject*:io:0:
573
574PyInt_Check:int:::
575PyInt_Check:PyObject*:op:0:
576
577PyInt_FromLong:PyObject*::+1:
578PyInt_FromLong:long:ival::
579
580PyInt_FromString:PyObject*::+1:
581PyInt_FromString:char*:str:0:
582PyInt_FromString:char**:pend:0:
583PyInt_FromString:int:base:0:
584
585PyInt_FromSsize_t:PyObject*::+1:
586PyInt_FromSsize_t:Py_ssize_t:ival::
587
588PyInt_GetMax:long:::
589
590PyInterpreterState_Clear:void:::
591PyInterpreterState_Clear:PyInterpreterState*:interp::
592
593PyInterpreterState_Delete:void:::
594PyInterpreterState_Delete:PyInterpreterState*:interp::
595
596PyInterpreterState_New:PyInterpreterState*:::
597
598PyIter_Check:int:o:0:
599
600PyIter_Next:PyObject*::+1:
601PyIter_Next:PyObject*:o:0:
602
603PyList_Append:int:::
604PyList_Append:PyObject*:list:0:
605PyList_Append:PyObject*:item:+1:
606
607PyList_AsTuple:PyObject*::+1:
608PyList_AsTuple:PyObject*:list:0:
609
610PyList_Check:int:::
611PyList_Check:PyObject*:p:0:
612
613PyList_GET_ITEM:PyObject*::0:
614PyList_GET_ITEM:PyObject*:list:0:
615PyList_GET_ITEM:int:i:0:
616
617PyList_GET_SIZE:int:::
618PyList_GET_SIZE:PyObject*:list:0:
619
620PyList_GetItem:PyObject*::0:
621PyList_GetItem:PyObject*:list:0:
622PyList_GetItem:int:index::
623
624PyList_GetSlice:PyObject*::+1:
625PyList_GetSlice:PyObject*:list:0:
626PyList_GetSlice:int:low::
627PyList_GetSlice:int:high::
628
629PyList_Insert:int:::
630PyList_Insert:PyObject*:list:0:
631PyList_Insert:int:index::
632PyList_Insert:PyObject*:item:+1:
633
634PyList_New:PyObject*::+1:
635PyList_New:int:len::
636
637PyList_Reverse:int:::
638PyList_Reverse:PyObject*:list:0:
639
640PyList_SET_ITEM:void:::
641PyList_SET_ITEM:PyObject*:list:0:
642PyList_SET_ITEM:int:i::
643PyList_SET_ITEM:PyObject*:o:0:
644
645PyList_SetItem:int:::
646PyList_SetItem:PyObject*:list:0:
647PyList_SetItem:int:index::
648PyList_SetItem:PyObject*:item:0:
649
650PyList_SetSlice:int:::
651PyList_SetSlice:PyObject*:list:0:
652PyList_SetSlice:int:low::
653PyList_SetSlice:int:high::
654PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
655
656PyList_Size:int:::
657PyList_Size:PyObject*:list:0:
658
659PyList_Sort:int:::
660PyList_Sort:PyObject*:list:0:
661
662PyLong_AsDouble:double:::
663PyLong_AsDouble:PyObject*:pylong:0:
664
665PyLong_AsLong:long:::
666PyLong_AsLong:PyObject*:pylong:0:
667
668PyLong_AsUnsignedLong:unsigned long:::
669PyLong_AsUnsignedLong:PyObject*:pylong:0:
670
671PyLong_Check:int:::
672PyLong_Check:PyObject*:p:0:
673
674PyLong_FromDouble:PyObject*::+1:
675PyLong_FromDouble:double:v::
676
677PyLong_FromLong:PyObject*::+1:
678PyLong_FromLong:long:v::
679
680PyLong_FromLongLong:PyObject*::+1:
681PyLong_FromLongLong:long long:v::
682
683PyLong_FromUnsignedLongLong:PyObject*::+1:
684PyLong_FromUnsignedLongLong:unsigned long long:v::
685
686PyLong_FromString:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300687PyLong_FromString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +0000688PyLong_FromString:char**:pend::
689PyLong_FromString:int:base::
690
691PyLong_FromUnicode:PyObject*::+1:
692PyLong_FromUnicode:Py_UNICODE:u::
693PyLong_FromUnicode:int:length::
694PyLong_FromUnicode:int:base::
695
696PyLong_FromUnsignedLong:PyObject*::+1:
697PyLong_FromUnsignedLong:unsignedlong:v::
698
699PyLong_FromVoidPtr:PyObject*::+1:
700PyLong_FromVoidPtr:void*:p::
701
702PyMapping_Check:int:::
703PyMapping_Check:PyObject*:o:0:
704
705PyMapping_DelItem:int:::
706PyMapping_DelItem:PyObject*:o:0:
707PyMapping_DelItem:PyObject*:key:0:
708
709PyMapping_DelItemString:int:::
710PyMapping_DelItemString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300711PyMapping_DelItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000712
713PyMapping_GetItemString:PyObject*::+1:
714PyMapping_GetItemString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300715PyMapping_GetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000716
717PyMapping_HasKey:int:::
718PyMapping_HasKey:PyObject*:o:0:
719PyMapping_HasKey:PyObject*:key::
720
721PyMapping_HasKeyString:int:::
722PyMapping_HasKeyString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300723PyMapping_HasKeyString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000724
725PyMapping_Items:PyObject*::+1:
726PyMapping_Items:PyObject*:o:0:
727
728PyMapping_Keys:PyObject*::+1:
729PyMapping_Keys:PyObject*:o:0:
730
731PyMapping_Length:int:::
732PyMapping_Length:PyObject*:o:0:
733
734PyMapping_SetItemString:int:::
735PyMapping_SetItemString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300736PyMapping_SetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000737PyMapping_SetItemString:PyObject*:v:+1:
738
739PyMapping_Values:PyObject*::+1:
740PyMapping_Values:PyObject*:o:0:
741
742PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
743PyMarshal_ReadLastObjectFromFile:FILE*:file::
744
745PyMarshal_ReadObjectFromFile:PyObject*::+1:
746PyMarshal_ReadObjectFromFile:FILE*:file::
747
748PyMarshal_ReadObjectFromString:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300749PyMarshal_ReadObjectFromString:const char*:string::
Georg Brandl116aa622007-08-15 14:28:22 +0000750PyMarshal_ReadObjectFromString:int:len::
751
752PyMarshal_WriteObjectToString:PyObject*::+1:
753PyMarshal_WriteObjectToString:PyObject*:value:0:
754
755PyMethod_Class:PyObject*::0:
756PyMethod_Class:PyObject*:im:0:
757
758PyMethod_Function:PyObject*::0:
759PyMethod_Function:PyObject*:im:0:
760
761PyMethod_GET_CLASS:PyObject*::0:
762PyMethod_GET_CLASS:PyObject*:im:0:
763
764PyMethod_GET_FUNCTION:PyObject*::0:
765PyMethod_GET_FUNCTION:PyObject*:im:0:
766
767PyMethod_GET_SELF:PyObject*::0:
768PyMethod_GET_SELF:PyObject*:im:0:
769
770PyMethod_New:PyObject*::+1:
771PyMethod_New:PyObject*:func:0:
772PyMethod_New:PyObject*:self:0:
773PyMethod_New:PyObject*:class:0:
774
775PyMethod_Self:PyObject*::0:
776PyMethod_Self:PyObject*:im:0:
777
778PyModule_GetDict:PyObject*::0:
779PyModule_GetDict::PyObject* module:0:
780
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300781PyModule_GetFilename:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000782PyModule_GetFilename:PyObject*:module:0:
783
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300784PyModule_GetName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000785PyModule_GetName:PyObject*:module:0:
786
787PyModule_New:PyObject*::+1:
788PyModule_New::char* name::
789
790PyNumber_Absolute:PyObject*::+1:
791PyNumber_Absolute:PyObject*:o:0:
792
793PyNumber_Add:PyObject*::+1:
794PyNumber_Add:PyObject*:o1:0:
795PyNumber_Add:PyObject*:o2:0:
796
797PyNumber_And:PyObject*::+1:
798PyNumber_And:PyObject*:o1:0:
799PyNumber_And:PyObject*:o2:0:
800
801PyNumber_Check:PyObject*:o:0:
802PyNumber_Check:int:::
803
804PyNumber_Divide:PyObject*::+1:
805PyNumber_Divide:PyObject*:o1:0:
806PyNumber_Divide:PyObject*:o2:0:
807
808PyNumber_Divmod:PyObject*::+1:
809PyNumber_Divmod:PyObject*:o1:0:
810PyNumber_Divmod:PyObject*:o2:0:
811
812PyNumber_Float:PyObject*::+1:
813PyNumber_Float:PyObject*:o:0:
814
815PyNumber_FloorDivide:PyObject*::+1:
816PyNumber_FloorDivide:PyObject*:v:0:
817PyNumber_FloorDivide:PyObject*:w:0:
818
819PyNumber_InPlaceAdd:PyObject*::+1:
820PyNumber_InPlaceAdd:PyObject*:v:0:
821PyNumber_InPlaceAdd:PyObject*:w:0:
822
823PyNumber_InPlaceAnd:PyObject*::+1:
824PyNumber_InPlaceAnd:PyObject*:v:0:
825PyNumber_InPlaceAnd:PyObject*:w:0:
826
827PyNumber_InPlaceDivide:PyObject*::+1:
828PyNumber_InPlaceDivide:PyObject*:v:0:
829PyNumber_InPlaceDivide:PyObject*:w:0:
830
831PyNumber_InPlaceFloorDivide:PyObject*::+1:
832PyNumber_InPlaceFloorDivide:PyObject*:v:0:
833PyNumber_InPlaceFloorDivide:PyObject*:w:0:
834
835PyNumber_InPlaceLshift:PyObject*::+1:
836PyNumber_InPlaceLshift:PyObject*:v:0:
837PyNumber_InPlaceLshift:PyObject*:w:0:
838
839PyNumber_InPlaceMultiply:PyObject*::+1:
840PyNumber_InPlaceMultiply:PyObject*:v:0:
841PyNumber_InPlaceMultiply:PyObject*:w:0:
842
843PyNumber_InPlaceOr:PyObject*::+1:
844PyNumber_InPlaceOr:PyObject*:v:0:
845PyNumber_InPlaceOr:PyObject*:w:0:
846
847PyNumber_InPlacePower:PyObject*::+1:
848PyNumber_InPlacePower:PyObject*:v:0:
849PyNumber_InPlacePower:PyObject*:w:0:
850PyNumber_InPlacePower:PyObject*:z:0:
851
852PyNumber_InPlaceRemainder:PyObject*::+1:
853PyNumber_InPlaceRemainder:PyObject*:v:0:
854PyNumber_InPlaceRemainder:PyObject*:w:0:
855
856PyNumber_InPlaceRshift:PyObject*::+1:
857PyNumber_InPlaceRshift:PyObject*:v:0:
858PyNumber_InPlaceRshift:PyObject*:w:0:
859
860PyNumber_InPlaceSubtract:PyObject*::+1:
861PyNumber_InPlaceSubtract:PyObject*:v:0:
862PyNumber_InPlaceSubtract:PyObject*:w:0:
863
864PyNumber_InPlaceTrueDivide:PyObject*::+1:
865PyNumber_InPlaceTrueDivide:PyObject*:v:0:
866PyNumber_InPlaceTrueDivide:PyObject*:w:0:
867
868PyNumber_InPlaceXor:PyObject*::+1:
869PyNumber_InPlaceXor:PyObject*:v:0:
870PyNumber_InPlaceXor:PyObject*:w:0:
871
Georg Brandl116aa622007-08-15 14:28:22 +0000872PyNumber_Invert:PyObject*::+1:
873PyNumber_Invert:PyObject*:o:0:
874
875PyNumber_Long:PyObject*::+1:
876PyNumber_Long:PyObject*:o:0:
877
878PyNumber_Lshift:PyObject*::+1:
879PyNumber_Lshift:PyObject*:o1:0:
880PyNumber_Lshift:PyObject*:o2:0:
881
882PyNumber_Multiply:PyObject*::+1:
883PyNumber_Multiply:PyObject*:o1:0:
884PyNumber_Multiply:PyObject*:o2:0:
885
886PyNumber_Negative:PyObject*::+1:
887PyNumber_Negative:PyObject*:o:0:
888
889PyNumber_Or:PyObject*::+1:
890PyNumber_Or:PyObject*:o1:0:
891PyNumber_Or:PyObject*:o2:0:
892
893PyNumber_Positive:PyObject*::+1:
894PyNumber_Positive:PyObject*:o:0:
895
896PyNumber_Power:PyObject*::+1:
897PyNumber_Power:PyObject*:o1:0:
898PyNumber_Power:PyObject*:o2:0:
899PyNumber_Power:PyObject*:o3:0:
900
901PyNumber_Remainder:PyObject*::+1:
902PyNumber_Remainder:PyObject*:o1:0:
903PyNumber_Remainder:PyObject*:o2:0:
904
905PyNumber_Rshift:PyObject*::+1:
906PyNumber_Rshift:PyObject*:o1:0:
907PyNumber_Rshift:PyObject*:o2:0:
908
909PyNumber_Subtract:PyObject*::+1:
910PyNumber_Subtract:PyObject*:o1:0:
911PyNumber_Subtract:PyObject*:o2:0:
912
913PyNumber_TrueDivide:PyObject*::+1:
914PyNumber_TrueDivide:PyObject*:v:0:
915PyNumber_TrueDivide:PyObject*:w:0:
916
917PyNumber_Xor:PyObject*::+1:
918PyNumber_Xor:PyObject*:o1:0:
919PyNumber_Xor:PyObject*:o2:0:
920
Larry Hastingsb0827312014-02-09 22:05:19 -0800921PyObject_AsFileDescriptor:int:::
Georg Brandl116aa622007-08-15 14:28:22 +0000922PyObject_AsFileDescriptor:PyObject*:o:0:
923
924PyObject_Call:PyObject*::+1:
925PyObject_Call:PyObject*:callable_object:0:
926PyObject_Call:PyObject*:args:0:
927PyObject_Call:PyObject*:kw:0:
928
929PyObject_CallFunction:PyObject*::+1:
930PyObject_CallFunction:PyObject*:callable_object:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300931PyObject_CallFunction:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000932PyObject_CallFunction::...::
933
934PyObject_CallFunctionObjArgs:PyObject*::+1:
935PyObject_CallFunctionObjArgs:PyObject*:callable:0:
936PyObject_CallFunctionObjArgs::...::
937
938PyObject_CallMethod:PyObject*::+1:
939PyObject_CallMethod:PyObject*:o:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300940PyObject_CallMethod:const char*:m::
941PyObject_CallMethod:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000942PyObject_CallMethod::...::
943
944PyObject_CallMethodObjArgs:PyObject*::+1:
945PyObject_CallMethodObjArgs:PyObject*:o:0:
Serhiy Storchakadce05502013-05-28 22:46:15 +0300946PyObject_CallMethodObjArgs:PyObject*:name:0:
Georg Brandl116aa622007-08-15 14:28:22 +0000947PyObject_CallMethodObjArgs::...::
948
949PyObject_CallObject:PyObject*::+1:
950PyObject_CallObject:PyObject*:callable_object:0:
951PyObject_CallObject:PyObject*:args:0:
952
953PyObject_Cmp:int:::
954PyObject_Cmp:PyObject*:o1:0:
955PyObject_Cmp:PyObject*:o2:0:
956PyObject_Cmp:int*:result::
957
958PyObject_Compare:int:::
959PyObject_Compare:PyObject*:o1:0:
960PyObject_Compare:PyObject*:o2:0:
961
962PyObject_DelAttr:int:::
963PyObject_DelAttr:PyObject*:o:0:
964PyObject_DelAttr:PyObject*:attr_name:0:
965
966PyObject_DelAttrString:int:::
967PyObject_DelAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300968PyObject_DelAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +0000969
970PyObject_DelItem:int:::
971PyObject_DelItem:PyObject*:o:0:
972PyObject_DelItem:PyObject*:key:0:
973
974PyObject_Dir:PyObject*::+1:
975PyObject_Dir:PyObject*:o:0:
976
977PyObject_GetAttr:PyObject*::+1:
978PyObject_GetAttr:PyObject*:o:0:
979PyObject_GetAttr:PyObject*:attr_name:0:
980
981PyObject_GetAttrString:PyObject*::+1:
982PyObject_GetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300983PyObject_GetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +0000984
985PyObject_GetItem:PyObject*::+1:
986PyObject_GetItem:PyObject*:o:0:
987PyObject_GetItem:PyObject*:key:0:
988
989PyObject_GetIter:PyObject*::+1:
990PyObject_GetIter:PyObject*:o:0:
991
992PyObject_HasAttr:int:::
993PyObject_HasAttr:PyObject*:o:0:
994PyObject_HasAttr:PyObject*:attr_name:0:
995
996PyObject_HasAttrString:int:::
997PyObject_HasAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300998PyObject_HasAttrString:const char*:attr_name:0:
Georg Brandl116aa622007-08-15 14:28:22 +0000999
1000PyObject_Hash:int:::
1001PyObject_Hash:PyObject*:o:0:
1002
1003PyObject_IsTrue:int:::
1004PyObject_IsTrue:PyObject*:o:0:
1005
1006PyObject_Init:PyObject*::0:
1007PyObject_Init:PyObject*:op:0:
1008
1009PyObject_InitVar:PyVarObject*::0:
1010PyObject_InitVar:PyVarObject*:op:0:
1011
1012PyObject_Length:int:::
1013PyObject_Length:PyObject*:o:0:
1014
1015PyObject_NEW:PyObject*::+1:
1016
1017PyObject_New:PyObject*::+1:
1018
1019PyObject_NEW_VAR:PyObject*::+1:
1020
1021PyObject_NewVar:PyObject*::+1:
1022
1023PyObject_Print:int:::
1024PyObject_Print:PyObject*:o:0:
1025PyObject_Print:FILE*:fp::
1026PyObject_Print:int:flags::
1027
1028PyObject_Repr:PyObject*::+1:
1029PyObject_Repr:PyObject*:o:0:
1030
1031PyObject_RichCompare:PyObject*::+1:
1032PyObject_RichCompare:PyObject*:o1:0:
1033PyObject_RichCompare:PyObject*:o2:0:
1034PyObject_RichCompare:int:opid::
1035
1036PyObject_RichCompareBool:int:::
1037PyObject_RichCompareBool:PyObject*:o1:0:
1038PyObject_RichCompareBool:PyObject*:o2:0:
1039PyObject_RichCompareBool:int:opid::
1040
1041PyObject_SetAttr:int:::
1042PyObject_SetAttr:PyObject*:o:0:
1043PyObject_SetAttr:PyObject*:attr_name:0:
1044PyObject_SetAttr:PyObject*:v:+1:
1045
1046PyObject_SetAttrString:int:::
1047PyObject_SetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001048PyObject_SetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +00001049PyObject_SetAttrString:PyObject*:v:+1:
1050
1051PyObject_SetItem:int:::
1052PyObject_SetItem:PyObject*:o:0:
1053PyObject_SetItem:PyObject*:key:0:
1054PyObject_SetItem:PyObject*:v:+1:
1055
1056PyObject_Str:PyObject*::+1:
1057PyObject_Str:PyObject*:o:0:
1058
1059PyObject_Type:PyObject*::+1:
1060PyObject_Type:PyObject*:o:0:
1061
1062PyObject_Unicode:PyObject*::+1:
1063PyObject_Unicode:PyObject*:o:0:
1064
1065PyParser_SimpleParseFile:struct _node*:::
1066PyParser_SimpleParseFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001067PyParser_SimpleParseFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001068PyParser_SimpleParseFile:int:start::
1069
1070PyParser_SimpleParseString:struct _node*:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001071PyParser_SimpleParseString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001072PyParser_SimpleParseString:int:start::
1073
1074PyRun_AnyFile:int:::
1075PyRun_AnyFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001076PyRun_AnyFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001077
1078PyRun_File:PyObject*::+1:??? -- same as eval_code2()
1079PyRun_File:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001080PyRun_File:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001081PyRun_File:int:start::
1082PyRun_File:PyObject*:globals:0:
1083PyRun_File:PyObject*:locals:0:
1084
1085PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1086PyRun_FileEx:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001087PyRun_FileEx:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001088PyRun_FileEx:int:start::
1089PyRun_FileEx:PyObject*:globals:0:
1090PyRun_FileEx:PyObject*:locals:0:
1091PyRun_FileEx:int:closeit::
1092
1093PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1094PyRun_FileFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001095PyRun_FileFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001096PyRun_FileFlags:int:start::
1097PyRun_FileFlags:PyObject*:globals:0:
1098PyRun_FileFlags:PyObject*:locals:0:
1099PyRun_FileFlags:PyCompilerFlags*:flags::
1100
1101PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1102PyRun_FileExFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001103PyRun_FileExFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001104PyRun_FileExFlags:int:start::
1105PyRun_FileExFlags:PyObject*:globals:0:
1106PyRun_FileExFlags:PyObject*:locals:0:
1107PyRun_FileExFlags:int:closeit::
1108PyRun_FileExFlags:PyCompilerFlags*:flags::
1109
1110PyRun_InteractiveLoop:int:::
1111PyRun_InteractiveLoop:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001112PyRun_InteractiveLoop:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001113
1114PyRun_InteractiveOne:int:::
1115PyRun_InteractiveOne:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001116PyRun_InteractiveOne:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001117
1118PyRun_SimpleFile:int:::
1119PyRun_SimpleFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001120PyRun_SimpleFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001121
1122PyRun_SimpleString:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001123PyRun_SimpleString:const char*:command::
Georg Brandl116aa622007-08-15 14:28:22 +00001124
1125PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001126PyRun_String:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001127PyRun_String:int:start::
1128PyRun_String:PyObject*:globals:0:
1129PyRun_String:PyObject*:locals:0:
1130
1131PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001132PyRun_StringFlags:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001133PyRun_StringFlags:int:start::
1134PyRun_StringFlags:PyObject*:globals:0:
1135PyRun_StringFlags:PyObject*:locals:0:
1136PyRun_StringFlags:PyCompilerFlags*:flags::
1137
1138PySeqIter_New:PyObject*::+1:
1139PySeqIter_New:PyObject*:seq::
1140
1141PySequence_Check:int:::
1142PySequence_Check:PyObject*:o:0:
1143
1144PySequence_Concat:PyObject*::+1:
1145PySequence_Concat:PyObject*:o1:0:
1146PySequence_Concat:PyObject*:o2:0:
1147
1148PySequence_Count:int:::
1149PySequence_Count:PyObject*:o:0:
1150PySequence_Count:PyObject*:value:0:
1151
1152PySequence_DelItem:int:::
1153PySequence_DelItem:PyObject*:o:0:
1154PySequence_DelItem:int:i::
1155
1156PySequence_DelSlice:int:::
1157PySequence_DelSlice:PyObject*:o:0:
1158PySequence_DelSlice:int:i1::
1159PySequence_DelSlice:int:i2::
1160
1161PySequence_Fast:PyObject*::+1:
1162PySequence_Fast:PyObject*:v:0:
1163PySequence_Fast:const char*:m::
1164
1165PySequence_Fast_GET_ITEM:PyObject*::0:
1166PySequence_Fast_GET_ITEM:PyObject*:o:0:
1167PySequence_Fast_GET_ITEM:int:i::
1168
1169PySequence_GetItem:PyObject*::+1:
1170PySequence_GetItem:PyObject*:o:0:
1171PySequence_GetItem:int:i::
1172
1173PySequence_GetSlice:PyObject*::+1:
1174PySequence_GetSlice:PyObject*:o:0:
1175PySequence_GetSlice:int:i1::
1176PySequence_GetSlice:int:i2::
1177
1178PySequence_In:int:::
1179PySequence_In:PyObject*:o:0:
1180PySequence_In:PyObject*:value:0:
1181
1182PySequence_Index:int:::
1183PySequence_Index:PyObject*:o:0:
1184PySequence_Index:PyObject*:value:0:
1185
1186PySequence_InPlaceConcat:PyObject*::+1:
1187PySequence_InPlaceConcat:PyObject*:s:0:
1188PySequence_InPlaceConcat:PyObject*:o:0:
1189
1190PySequence_InPlaceRepeat:PyObject*::+1:
1191PySequence_InPlaceRepeat:PyObject*:s:0:
1192PySequence_InPlaceRepeat:PyObject*:o:0:
1193
1194PySequence_ITEM:PyObject*::+1:
1195PySequence_ITEM:PyObject*:o:0:
1196PySequence_ITEM:int:i::
1197
1198PySequence_Repeat:PyObject*::+1:
1199PySequence_Repeat:PyObject*:o:0:
1200PySequence_Repeat:int:count::
1201
1202PySequence_SetItem:int:::
1203PySequence_SetItem:PyObject*:o:0:
1204PySequence_SetItem:int:i::
1205PySequence_SetItem:PyObject*:v:+1:
1206
1207PySequence_SetSlice:int:::
1208PySequence_SetSlice:PyObject*:o:0:
1209PySequence_SetSlice:int:i1::
1210PySequence_SetSlice:int:i2::
1211PySequence_SetSlice:PyObject*:v:+1:
1212
1213PySequence_List:PyObject*::+1:
1214PySequence_List:PyObject*:o:0:
1215
1216PySequence_Tuple:PyObject*::+1:
1217PySequence_Tuple:PyObject*:o:0:
1218
1219PySet_Append:int:::
1220PySet_Append:PyObject*:set:0:
1221PySet_Append:PyObject*:key:+1:
1222
1223PySet_Contains:int:::
1224PySet_Contains:PyObject*:anyset:0:
1225PySet_Contains:PyObject*:key:0:
1226
1227PySet_Discard:int:::
1228PySet_Discard:PyObject*:set:0:
1229PySet_Discard:PyObject*:key:-1:no effect if key not found
1230
1231PySet_New:PyObject*::+1:
1232PySet_New:PyObject*:iterable:0:
1233
1234PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
1235PySet_Pop:PyObject*:set:0:
1236
1237PySet_Size:int:::
1238PySet_Size:PyObject*:anyset:0:
1239
1240PySlice_Check:int:::
1241PySlice_Check:PyObject*:ob:0:
1242
1243PySlice_New:PyObject*::+1:
1244PySlice_New:PyObject*:start:0:
1245PySlice_New:PyObject*:stop:0:
1246PySlice_New:PyObject*:step:0:
1247
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001248PyString_AS_STRING:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001249PyString_AS_STRING:PyObject*:string:0:
1250
1251PyString_AsDecodedObject:PyObject*::+1:
1252PyString_AsDecodedObject:PyObject*:str:0:
1253PyString_AsDecodedObject:const char*:encoding::
1254PyString_AsDecodedObject:const char*:errors::
1255
1256PyString_AsEncodedObject:PyObject*::+1:
1257PyString_AsEncodedObject:PyObject*:str:0:
1258PyString_AsEncodedObject:const char*:encoding::
1259PyString_AsEncodedObject:const char*:errors::
1260
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001261PyString_AsString:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001262PyString_AsString:PyObject*:string:0:
1263
1264PyString_AsStringAndSize:int:::
1265PyString_AsStringAndSize:PyObject*:obj:0:
1266PyString_AsStringAndSize:char**:buffer::
1267PyString_AsStringAndSize:int*:length::
1268
1269PyString_Check:int:::
1270PyString_Check:PyObject*:o:0:
1271
1272PyString_Concat:void:::
1273PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
1274PyString_Concat:PyObject*:newpart:0:
1275
1276PyString_ConcatAndDel:void:::
1277PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
1278PyString_ConcatAndDel:PyObject*:newpart:-1:
1279
1280PyString_Format:PyObject*::+1:
1281PyString_Format:PyObject*:format:0:
1282PyString_Format:PyObject*:args:0:
1283
1284PyString_FromString:PyObject*::+1:
1285PyString_FromString:const char*:v::
1286
1287PyString_FromStringAndSize:PyObject*::+1:
1288PyString_FromStringAndSize:const char*:v::
1289PyString_FromStringAndSize:int:len::
1290
1291PyString_FromFormat:PyObject*::+1:
1292PyString_FromFormat:const char*:format::
1293PyString_FromFormat::...::
1294
1295PyString_FromFormatV:PyObject*::+1:
1296PyString_FromFormatV:const char*:format::
1297PyString_FromFormatV:va_list:vargs::
1298
1299PyString_GET_SIZE:int:::
1300PyString_GET_SIZE:PyObject*:string:0:
1301
1302PyString_InternFromString:PyObject*::+1:
1303PyString_InternFromString:const char*:v::
1304
1305PyString_InternInPlace:void:::
1306PyString_InternInPlace:PyObject**:string:+1:???
1307
1308PyString_Size:int:::
1309PyString_Size:PyObject*:string:0:
1310
1311PyString_Decode:PyObject*::+1:
1312PyString_Decode:const char*:s::
1313PyString_Decode:int:size::
1314PyString_Decode:const char*:encoding::
1315PyString_Decode:const char*:errors::
1316
1317PyString_Encode:PyObject*::+1:
1318PyString_Encode:const char*:s::
1319PyString_Encode:int:size::
1320PyString_Encode:const char*:encoding::
1321PyString_Encode:const char*:errors::
1322
1323PyString_AsEncodedString:PyObject*::+1:
1324PyString_AsEncodedString:PyObject*:str::
1325PyString_AsEncodedString:const char*:encoding::
1326PyString_AsEncodedString:const char*:errors::
1327
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001328PySys_AddWarnOption:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001329PySys_AddWarnOption:const char*:s::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001330
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001331PySys_AddXOption:void:::
1332PySys_AddXOption:const wchar_t*:s::
1333
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001334PySys_GetObject:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001335PySys_GetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001336
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001337PySys_GetXOptions:PyObject*::0:
1338
Georg Brandl116aa622007-08-15 14:28:22 +00001339PySys_SetArgv:int:::
1340PySys_SetArgv:int:argc::
1341PySys_SetArgv:char**:argv::
1342
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001343PySys_SetObject:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001344PySys_SetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001345PySys_SetObject:PyObject*:v:+1:
1346
1347PySys_ResetWarnOptions:void:::
1348
1349PySys_WriteStdout:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001350PySys_WriteStdout:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001351
1352PySys_WriteStderr:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001353PySys_WriteStderr:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001354
Georg Brandl116aa622007-08-15 14:28:22 +00001355PyThreadState_Clear:void:::
1356PyThreadState_Clear:PyThreadState*:tstate::
1357
1358PyThreadState_Delete:void:::
1359PyThreadState_Delete:PyThreadState*:tstate::
1360
1361PyThreadState_Get:PyThreadState*:::
1362
1363PyThreadState_GetDict:PyObject*::0:
1364
1365PyThreadState_New:PyThreadState*:::
1366PyThreadState_New:PyInterpreterState*:interp::
1367
1368PyThreadState_Swap:PyThreadState*:::
1369PyThreadState_Swap:PyThreadState*:tstate::
1370
1371PyTime_FromTime:PyObject*::+1:
1372PyTime_FromTime:int:hour::
1373PyTime_FromTime:int:minute::
1374PyTime_FromTime:int:second::
1375PyTime_FromTime:int:usecond::
1376
1377PyTuple_Check:int:::
1378PyTuple_Check:PyObject*:p:0:
1379
1380PyTuple_GET_ITEM:PyObject*::0:
1381PyTuple_GET_ITEM:PyTupleObject*:p:0:
1382PyTuple_GET_ITEM:int:pos::
1383
1384PyTuple_GetItem:PyObject*::0:
1385PyTuple_GetItem:PyTupleObject*:p:0:
1386PyTuple_GetItem:int:pos::
1387
1388PyTuple_GetSlice:PyObject*::+1:
1389PyTuple_GetSlice:PyTupleObject*:p:0:
1390PyTuple_GetSlice:int:low::
1391PyTuple_GetSlice:int:high::
1392
1393PyTuple_New:PyObject*::+1:
1394PyTuple_New:int:len::
1395
1396PyTuple_Pack:PyObject*::+1:
1397PyTuple_Pack:int:len::
1398PyTuple_Pack:PyObject*:...:0:
1399
1400PyTuple_SET_ITEM:void:::
1401PyTuple_SET_ITEM:PyTupleObject*:p:0:
1402PyTuple_SET_ITEM:int:pos::
1403PyTuple_SET_ITEM:PyObject*:o:0:
1404
1405PyTuple_SetItem:int:::
1406PyTuple_SetItem:PyTupleObject*:p:0:
1407PyTuple_SetItem:int:pos::
1408PyTuple_SetItem:PyObject*:o:0:
1409
1410PyTuple_Size:int:::
1411PyTuple_Size:PyTupleObject*:p:0:
1412
1413PyType_GenericAlloc:PyObject*::+1:
1414PyType_GenericAlloc:PyObject*:type:0:
1415PyType_GenericAlloc:int:nitems:0:
1416
1417PyType_GenericNew:PyObject*::+1:
1418PyType_GenericNew:PyObject*:type:0:
1419PyType_GenericNew:PyObject*:args:0:
1420PyType_GenericNew:PyObject*:kwds:0:
1421
1422PyUnicode_Check:int:::
1423PyUnicode_Check:PyObject*:o:0:
1424
1425PyUnicode_GET_SIZE:int:::
1426PyUnicode_GET_SIZE:PyObject*:o:0:
1427
1428PyUnicode_GET_DATA_SIZE:int:::
1429PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1430
1431PyUnicode_AS_UNICODE:Py_UNICODE*:::
1432PyUnicode_AS_UNICODE:PyObject*:o:0:
1433
1434PyUnicode_AS_DATA:const char*:::
1435PyUnicode_AS_DATA:PyObject*:o:0:
1436
1437Py_UNICODE_ISSPACE:int:::
1438Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1439
1440Py_UNICODE_ISLOWER:int:::
1441Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1442
1443Py_UNICODE_ISUPPER:int:::
1444Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1445
1446Py_UNICODE_ISTITLE:int:::
1447Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1448
1449Py_UNICODE_ISLINEBREAK:int:::
1450Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1451
1452Py_UNICODE_ISDECIMAL:int:::
1453Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1454
1455Py_UNICODE_ISDIGIT:int:::
1456Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1457
1458Py_UNICODE_ISNUMERIC:int:::
1459Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1460
1461Py_UNICODE_TOLOWER:Py_UNICODE:::
1462Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1463
1464Py_UNICODE_TOUPPER:Py_UNICODE:::
1465Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1466
1467Py_UNICODE_TOTITLE:Py_UNICODE:::
1468Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1469
1470Py_UNICODE_TODECIMAL:int:::
1471Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1472
1473Py_UNICODE_TODIGIT:int:::
1474Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1475
1476Py_UNICODE_TONUMERIC:double:::
1477Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1478
1479PyUnicode_FromUnicode:PyObject*::+1:
1480PyUnicode_FromUnicode:const Py_UNICODE*:u::
1481PyUnicode_FromUnicode:int:size::
1482
1483PyUnicode_AsUnicode:Py_UNICODE*:::
1484PyUnicode_AsUnicode:PyObject :*unicode:0:
1485
1486PyUnicode_GetSize:int:::
1487PyUnicode_GetSize:PyObject :*unicode:0:
1488
1489PyUnicode_FromObject:PyObject*::+1:
1490PyUnicode_FromObject:PyObject*:*obj:0:
1491
1492PyUnicode_FromEncodedObject:PyObject*::+1:
1493PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1494PyUnicode_FromEncodedObject:const char*:encoding::
1495PyUnicode_FromEncodedObject:const char*:errors::
1496
1497PyUnicode_FromWideChar:PyObject*::+1:
1498PyUnicode_FromWideChar:const wchar_t*:w::
1499PyUnicode_FromWideChar:int:size::
1500
1501PyUnicode_AsWideChar:int:::
1502PyUnicode_AsWideChar:PyObject*:*unicode:0:
1503PyUnicode_AsWideChar:wchar_t*:w::
1504PyUnicode_AsWideChar:int:size::
1505
1506PyUnicode_Decode:PyObject*::+1:
1507PyUnicode_Decode:const char*:s::
1508PyUnicode_Decode:int:size::
1509PyUnicode_Decode:const char*:encoding::
1510PyUnicode_Decode:const char*:errors::
1511
1512PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1513PyUnicode_DecodeUTF16Stateful:const char*:s::
1514PyUnicode_DecodeUTF16Stateful:int:size::
1515PyUnicode_DecodeUTF16Stateful:const char*:errors::
1516PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1517PyUnicode_DecodeUTF16Stateful:int*:consumed::
1518
1519PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1520PyUnicode_DecodeUTF8Stateful:const char*:s::
1521PyUnicode_DecodeUTF8Stateful:int:size::
1522PyUnicode_DecodeUTF8Stateful:const char*:errors::
1523PyUnicode_DecodeUTF8Stateful:int*:consumed::
1524
1525PyUnicode_Encode:PyObject*::+1:
1526PyUnicode_Encode:const Py_UNICODE*:s::
1527PyUnicode_Encode:int:size::
1528PyUnicode_Encode:const char*:encoding::
1529PyUnicode_Encode:const char*:errors::
1530
1531PyUnicode_AsEncodedString:PyObject*::+1:
1532PyUnicode_AsEncodedString:PyObject*:unicode::
1533PyUnicode_AsEncodedString:const char*:encoding::
1534PyUnicode_AsEncodedString:const char*:errors::
1535
1536PyUnicode_DecodeUTF8:PyObject*::+1:
1537PyUnicode_DecodeUTF8:const char*:s::
1538PyUnicode_DecodeUTF8:int:size::
1539PyUnicode_DecodeUTF8:const char*:errors::
1540
1541PyUnicode_EncodeUTF8:PyObject*::+1:
1542PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1543PyUnicode_EncodeUTF8:int:size::
1544PyUnicode_EncodeUTF8:const char*:errors::
1545
1546PyUnicode_AsUTF8String:PyObject*::+1:
1547PyUnicode_AsUTF8String:PyObject*:unicode::
1548
1549PyUnicode_DecodeUTF16:PyObject*::+1:
1550PyUnicode_DecodeUTF16:const char*:s::
1551PyUnicode_DecodeUTF16:int:size::
1552PyUnicode_DecodeUTF16:const char*:errors::
1553PyUnicode_DecodeUTF16:int*:byteorder::
1554
1555PyUnicode_EncodeUTF16:PyObject*::+1:
1556PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1557PyUnicode_EncodeUTF16:int:size::
1558PyUnicode_EncodeUTF16:const char*:errors::
1559PyUnicode_EncodeUTF16:int:byteorder::
1560
1561PyUnicode_AsUTF16String:PyObject*::+1:
1562PyUnicode_AsUTF16String:PyObject*:unicode::
1563
1564PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1565PyUnicode_DecodeUnicodeEscape:const char*:s::
1566PyUnicode_DecodeUnicodeEscape:int:size::
1567PyUnicode_DecodeUnicodeEscape:const char*:errors::
1568
1569PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1570PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1571PyUnicode_EncodeUnicodeEscape:int:size::
1572PyUnicode_EncodeUnicodeEscape:const char*:errors::
1573
1574PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1575PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1576
1577PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1578PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1579PyUnicode_DecodeRawUnicodeEscape:int:size::
1580PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1581
1582PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1583PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1584PyUnicode_EncodeRawUnicodeEscape:int:size::
1585PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1586
1587PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1588PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1589
1590PyUnicode_DecodeLatin1:PyObject*::+1:
1591PyUnicode_DecodeLatin1:const char*:s::
1592PyUnicode_DecodeLatin1:int:size::
1593PyUnicode_DecodeLatin1:const char*:errors::
1594
1595PyUnicode_EncodeLatin1:PyObject*::+1:
1596PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1597PyUnicode_EncodeLatin1:int:size::
1598PyUnicode_EncodeLatin1:const char*:errors::
1599
1600PyUnicode_AsLatin1String:PyObject*::+1:
1601PyUnicode_AsLatin1String:PyObject*:unicode::
1602
1603PyUnicode_DecodeASCII:PyObject*::+1:
1604PyUnicode_DecodeASCII:const char*:s::
1605PyUnicode_DecodeASCII:int:size::
1606PyUnicode_DecodeASCII:const char*:errors::
1607
1608PyUnicode_EncodeASCII:PyObject*::+1:
1609PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1610PyUnicode_EncodeASCII:int:size::
1611PyUnicode_EncodeASCII:const char*:errors::
1612
1613PyUnicode_AsASCIIString:PyObject*::+1:
1614PyUnicode_AsASCIIString:PyObject*:unicode::
1615
1616PyUnicode_DecodeCharmap:PyObject*::+1:
1617PyUnicode_DecodeCharmap:const char*:s::
1618PyUnicode_DecodeCharmap:int:size::
1619PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1620PyUnicode_DecodeCharmap:const char*:errors::
1621
1622PyUnicode_EncodeCharmap:PyObject*::+1:
1623PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1624PyUnicode_EncodeCharmap:int:size::
1625PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1626PyUnicode_EncodeCharmap:const char*:errors::
1627
1628PyUnicode_AsCharmapString:PyObject*::+1:
1629PyUnicode_AsCharmapString:PyObject*:unicode:0:
1630PyUnicode_AsCharmapString:PyObject*:mapping:0:
1631
1632PyUnicode_TranslateCharmap:PyObject*::+1:
1633PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1634PyUnicode_TranslateCharmap:int:size::
1635PyUnicode_TranslateCharmap:PyObject*:table:0:
1636PyUnicode_TranslateCharmap:const char*:errors::
1637
1638PyUnicode_DecodeMBCS:PyObject*::+1:
1639PyUnicode_DecodeMBCS:const char*:s::
1640PyUnicode_DecodeMBCS:int:size::
1641PyUnicode_DecodeMBCS:const char*:errors::
1642
1643PyUnicode_EncodeMBCS:PyObject*::+1:
1644PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1645PyUnicode_EncodeMBCS:int:size::
1646PyUnicode_EncodeMBCS:const char*:errors::
1647
1648PyUnicode_AsMBCSString:PyObject*::+1:
1649PyUnicode_AsMBCSString:PyObject*:unicode::
1650
1651PyUnicode_Concat:PyObject*::+1:
1652PyUnicode_Concat:PyObject*:left:0:
1653PyUnicode_Concat:PyObject*:right:0:
1654
1655PyUnicode_Split:PyObject*::+1:
1656PyUnicode_Split:PyObject*:left:0:
1657PyUnicode_Split:PyObject*:right:0:
1658PyUnicode_Split:int:maxsplit::
1659
1660PyUnicode_Splitlines:PyObject*::+1:
1661PyUnicode_Splitlines:PyObject*:s:0:
1662PyUnicode_Splitlines:int:maxsplit::
1663
1664PyUnicode_Translate:PyObject*::+1:
1665PyUnicode_Translate:PyObject*:str:0:
1666PyUnicode_Translate:PyObject*:table:0:
1667PyUnicode_Translate:const char*:errors::
1668
1669PyUnicode_Join:PyObject*::+1:
1670PyUnicode_Join:PyObject*:separator:0:
1671PyUnicode_Join:PyObject*:seq:0:
1672
Benjamin Peterson5e55b3e2010-02-03 02:35:45 +00001673PyUnicode_Tailmatch:int:::
Georg Brandl116aa622007-08-15 14:28:22 +00001674PyUnicode_Tailmatch:PyObject*:str:0:
1675PyUnicode_Tailmatch:PyObject*:substr:0:
1676PyUnicode_Tailmatch:int:start::
1677PyUnicode_Tailmatch:int:end::
1678PyUnicode_Tailmatch:int:direction::
1679
1680PyUnicode_Find:int:::
1681PyUnicode_Find:PyObject*:str:0:
1682PyUnicode_Find:PyObject*:substr:0:
1683PyUnicode_Find:int:start::
1684PyUnicode_Find:int:end::
1685PyUnicode_Find:int:direction::
1686
1687PyUnicode_Count:int:::
1688PyUnicode_Count:PyObject*:str:0:
1689PyUnicode_Count:PyObject*:substr:0:
1690PyUnicode_Count:int:start::
1691PyUnicode_Count:int:end::
1692
1693PyUnicode_Replace:PyObject*::+1:
1694PyUnicode_Replace:PyObject*:str:0:
1695PyUnicode_Replace:PyObject*:substr:0:
1696PyUnicode_Replace:PyObject*:replstr:0:
1697PyUnicode_Replace:int:maxcount::
1698
1699PyUnicode_Compare:int:::
1700PyUnicode_Compare:PyObject*:left:0:
1701PyUnicode_Compare:PyObject*:right:0:
1702
1703PyUnicode_Format:PyObject*::+1:
1704PyUnicode_Format:PyObject*:format:0:
1705PyUnicode_Format:PyObject*:args:0:
1706
1707PyUnicode_Contains:int:::
1708PyUnicode_Contains:PyObject*:container:0:
1709PyUnicode_Contains:PyObject*:element:0:
1710
1711PyWeakref_GET_OBJECT:PyObject*::0:
1712PyWeakref_GET_OBJECT:PyObject*:ref:0:
1713
1714PyWeakref_GetObject:PyObject*::0:
1715PyWeakref_GetObject:PyObject*:ref:0:
1716
1717PyWeakref_NewProxy:PyObject*::+1:
1718PyWeakref_NewProxy:PyObject*:ob:0:
1719PyWeakref_NewProxy:PyObject*:callback:0:
1720
1721PyWeakref_NewRef:PyObject*::+1:
1722PyWeakref_NewRef:PyObject*:ob:0:
1723PyWeakref_NewRef:PyObject*:callback:0:
1724
1725PyWrapper_New:PyObject*::+1:
1726PyWrapper_New:PyObject*:d:0:
1727PyWrapper_New:PyObject*:self:0:
1728
1729Py_AtExit:int:::
1730Py_AtExit:void (*)():func::
1731
1732Py_BuildValue:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001733Py_BuildValue:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +00001734
1735Py_CompileString:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001736Py_CompileString:const char*:str::
1737Py_CompileString:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001738Py_CompileString:int:start::
1739
1740Py_CompileStringFlags:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001741Py_CompileStringFlags:const char*:str::
1742Py_CompileStringFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001743Py_CompileStringFlags:int:start::
1744Py_CompileStringFlags:PyCompilerFlags*:flags::
1745
1746Py_DECREF:void:::
1747Py_DECREF:PyObject*:o:-1:
1748
1749Py_EndInterpreter:void:::
1750Py_EndInterpreter:PyThreadState*:tstate::
1751
1752Py_Exit:void:::
1753Py_Exit:int:status::
1754
1755Py_FatalError:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001756Py_FatalError:const char*:message::
Georg Brandl116aa622007-08-15 14:28:22 +00001757
1758Py_FdIsInteractive:int:::
1759Py_FdIsInteractive:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001760Py_FdIsInteractive:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001761
1762Py_Finalize:void:::
1763
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001764Py_GetBuildInfoconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001765
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001766Py_GetCompilerconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001767
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001768Py_GetCopyrightconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001769
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001770Py_GetExecPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001771
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001772Py_GetPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001773
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001774Py_GetPlatformconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001775
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001776Py_GetPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001777
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001778Py_GetProgramFullPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001779
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001780Py_GetProgramName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001781
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001782Py_GetVersionconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001783
1784Py_INCREF:void:::
1785Py_INCREF:PyObject*:o:+1:
1786
1787Py_Initialize:void:::
1788
1789Py_IsInitialized:int:::
1790
1791Py_NewInterpreter:PyThreadState*:::
1792
1793Py_SetProgramName:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001794Py_SetProgramName:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +00001795
1796Py_XDECREF:void:::
1797Py_XDECREF:PyObject*:o:-1:if o is not NULL
1798
1799Py_XINCREF:void:::
1800Py_XINCREF:PyObject*:o:+1:if o is not NULL
1801
1802_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001803_PyImport_FindExtension:const char*:::
1804_PyImport_FindExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001805
1806_PyImport_Fini:void:::
1807
1808_PyImport_FixupExtension:PyObject*:::???
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001809_PyImport_FixupExtension:const char*:::
1810_PyImport_FixupExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001811
1812_PyImport_Init:void:::
1813
Georg Brandl116aa622007-08-15 14:28:22 +00001814_PyObject_New:PyObject*::+1:
1815_PyObject_New:PyTypeObject*:type:0:
1816
1817_PyObject_NewVar:PyObject*::+1:
1818_PyObject_NewVar:PyTypeObject*:type:0:
1819_PyObject_NewVar:int:size::
1820
1821_PyString_Resize:int:::
1822_PyString_Resize:PyObject**:string:+1:
1823_PyString_Resize:int:newsize::
1824
1825_PyTuple_Resize:int:::
1826_PyTuple_Resize:PyTupleObject**:p:+1:
1827_PyTuple_Resize:int:new::
1828
1829_Py_c_diff:Py_complex:::
1830_Py_c_diff:Py_complex:left::
1831_Py_c_diff:Py_complex:right::
1832
1833_Py_c_neg:Py_complex:::
1834_Py_c_neg:Py_complex:complex::
1835
1836_Py_c_pow:Py_complex:::
1837_Py_c_pow:Py_complex:num::
1838_Py_c_pow:Py_complex:exp::
1839
1840_Py_c_prod:Py_complex:::
1841_Py_c_prod:Py_complex:left::
1842_Py_c_prod:Py_complex:right::
1843
1844_Py_c_quot:Py_complex:::
1845_Py_c_quot:Py_complex:dividend::
1846_Py_c_quot:Py_complex:divisor::
1847
1848_Py_c_sum:Py_complex:::
1849_Py_c_sum:Py_complex:left::
1850_Py_c_sum:Py_complex:right::