blob: 8b469f4aac9a489ff12a1fe9a9870f456057d723 [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
Brett Cannon746102b2016-06-09 16:58:38 -0700924PyOS_FSPath:PyObject*::+1:
925PyOS_FSPath:PyObject*:path:0:
926
Georg Brandl116aa622007-08-15 14:28:22 +0000927PyObject_Call:PyObject*::+1:
928PyObject_Call:PyObject*:callable_object:0:
929PyObject_Call:PyObject*:args:0:
930PyObject_Call:PyObject*:kw:0:
931
932PyObject_CallFunction:PyObject*::+1:
933PyObject_CallFunction:PyObject*:callable_object:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300934PyObject_CallFunction:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000935PyObject_CallFunction::...::
936
937PyObject_CallFunctionObjArgs:PyObject*::+1:
938PyObject_CallFunctionObjArgs:PyObject*:callable:0:
939PyObject_CallFunctionObjArgs::...::
940
941PyObject_CallMethod:PyObject*::+1:
942PyObject_CallMethod:PyObject*:o:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300943PyObject_CallMethod:const char*:m::
944PyObject_CallMethod:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000945PyObject_CallMethod::...::
946
947PyObject_CallMethodObjArgs:PyObject*::+1:
948PyObject_CallMethodObjArgs:PyObject*:o:0:
Serhiy Storchakadce05502013-05-28 22:46:15 +0300949PyObject_CallMethodObjArgs:PyObject*:name:0:
Georg Brandl116aa622007-08-15 14:28:22 +0000950PyObject_CallMethodObjArgs::...::
951
952PyObject_CallObject:PyObject*::+1:
953PyObject_CallObject:PyObject*:callable_object:0:
954PyObject_CallObject:PyObject*:args:0:
955
956PyObject_Cmp:int:::
957PyObject_Cmp:PyObject*:o1:0:
958PyObject_Cmp:PyObject*:o2:0:
959PyObject_Cmp:int*:result::
960
961PyObject_Compare:int:::
962PyObject_Compare:PyObject*:o1:0:
963PyObject_Compare:PyObject*:o2:0:
964
965PyObject_DelAttr:int:::
966PyObject_DelAttr:PyObject*:o:0:
967PyObject_DelAttr:PyObject*:attr_name:0:
968
969PyObject_DelAttrString:int:::
970PyObject_DelAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300971PyObject_DelAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +0000972
973PyObject_DelItem:int:::
974PyObject_DelItem:PyObject*:o:0:
975PyObject_DelItem:PyObject*:key:0:
976
977PyObject_Dir:PyObject*::+1:
978PyObject_Dir:PyObject*:o:0:
979
980PyObject_GetAttr:PyObject*::+1:
981PyObject_GetAttr:PyObject*:o:0:
982PyObject_GetAttr:PyObject*:attr_name:0:
983
984PyObject_GetAttrString:PyObject*::+1:
985PyObject_GetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300986PyObject_GetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +0000987
988PyObject_GetItem:PyObject*::+1:
989PyObject_GetItem:PyObject*:o:0:
990PyObject_GetItem:PyObject*:key:0:
991
992PyObject_GetIter:PyObject*::+1:
993PyObject_GetIter:PyObject*:o:0:
994
995PyObject_HasAttr:int:::
996PyObject_HasAttr:PyObject*:o:0:
997PyObject_HasAttr:PyObject*:attr_name:0:
998
999PyObject_HasAttrString:int:::
1000PyObject_HasAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001001PyObject_HasAttrString:const char*:attr_name:0:
Georg Brandl116aa622007-08-15 14:28:22 +00001002
1003PyObject_Hash:int:::
1004PyObject_Hash:PyObject*:o:0:
1005
1006PyObject_IsTrue:int:::
1007PyObject_IsTrue:PyObject*:o:0:
1008
1009PyObject_Init:PyObject*::0:
1010PyObject_Init:PyObject*:op:0:
1011
1012PyObject_InitVar:PyVarObject*::0:
1013PyObject_InitVar:PyVarObject*:op:0:
1014
1015PyObject_Length:int:::
1016PyObject_Length:PyObject*:o:0:
1017
1018PyObject_NEW:PyObject*::+1:
1019
1020PyObject_New:PyObject*::+1:
1021
1022PyObject_NEW_VAR:PyObject*::+1:
1023
1024PyObject_NewVar:PyObject*::+1:
1025
1026PyObject_Print:int:::
1027PyObject_Print:PyObject*:o:0:
1028PyObject_Print:FILE*:fp::
1029PyObject_Print:int:flags::
1030
1031PyObject_Repr:PyObject*::+1:
1032PyObject_Repr:PyObject*:o:0:
1033
1034PyObject_RichCompare:PyObject*::+1:
1035PyObject_RichCompare:PyObject*:o1:0:
1036PyObject_RichCompare:PyObject*:o2:0:
1037PyObject_RichCompare:int:opid::
1038
1039PyObject_RichCompareBool:int:::
1040PyObject_RichCompareBool:PyObject*:o1:0:
1041PyObject_RichCompareBool:PyObject*:o2:0:
1042PyObject_RichCompareBool:int:opid::
1043
1044PyObject_SetAttr:int:::
1045PyObject_SetAttr:PyObject*:o:0:
1046PyObject_SetAttr:PyObject*:attr_name:0:
1047PyObject_SetAttr:PyObject*:v:+1:
1048
1049PyObject_SetAttrString:int:::
1050PyObject_SetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001051PyObject_SetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +00001052PyObject_SetAttrString:PyObject*:v:+1:
1053
1054PyObject_SetItem:int:::
1055PyObject_SetItem:PyObject*:o:0:
1056PyObject_SetItem:PyObject*:key:0:
1057PyObject_SetItem:PyObject*:v:+1:
1058
1059PyObject_Str:PyObject*::+1:
1060PyObject_Str:PyObject*:o:0:
1061
1062PyObject_Type:PyObject*::+1:
1063PyObject_Type:PyObject*:o:0:
1064
1065PyObject_Unicode:PyObject*::+1:
1066PyObject_Unicode:PyObject*:o:0:
1067
1068PyParser_SimpleParseFile:struct _node*:::
1069PyParser_SimpleParseFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001070PyParser_SimpleParseFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001071PyParser_SimpleParseFile:int:start::
1072
1073PyParser_SimpleParseString:struct _node*:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001074PyParser_SimpleParseString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001075PyParser_SimpleParseString:int:start::
1076
1077PyRun_AnyFile:int:::
1078PyRun_AnyFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001079PyRun_AnyFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001080
1081PyRun_File:PyObject*::+1:??? -- same as eval_code2()
1082PyRun_File:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001083PyRun_File:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001084PyRun_File:int:start::
1085PyRun_File:PyObject*:globals:0:
1086PyRun_File:PyObject*:locals:0:
1087
1088PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1089PyRun_FileEx:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001090PyRun_FileEx:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001091PyRun_FileEx:int:start::
1092PyRun_FileEx:PyObject*:globals:0:
1093PyRun_FileEx:PyObject*:locals:0:
1094PyRun_FileEx:int:closeit::
1095
1096PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1097PyRun_FileFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001098PyRun_FileFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001099PyRun_FileFlags:int:start::
1100PyRun_FileFlags:PyObject*:globals:0:
1101PyRun_FileFlags:PyObject*:locals:0:
1102PyRun_FileFlags:PyCompilerFlags*:flags::
1103
1104PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1105PyRun_FileExFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001106PyRun_FileExFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001107PyRun_FileExFlags:int:start::
1108PyRun_FileExFlags:PyObject*:globals:0:
1109PyRun_FileExFlags:PyObject*:locals:0:
1110PyRun_FileExFlags:int:closeit::
1111PyRun_FileExFlags:PyCompilerFlags*:flags::
1112
1113PyRun_InteractiveLoop:int:::
1114PyRun_InteractiveLoop:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001115PyRun_InteractiveLoop:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001116
1117PyRun_InteractiveOne:int:::
1118PyRun_InteractiveOne:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001119PyRun_InteractiveOne:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001120
1121PyRun_SimpleFile:int:::
1122PyRun_SimpleFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001123PyRun_SimpleFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001124
1125PyRun_SimpleString:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001126PyRun_SimpleString:const char*:command::
Georg Brandl116aa622007-08-15 14:28:22 +00001127
1128PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001129PyRun_String:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001130PyRun_String:int:start::
1131PyRun_String:PyObject*:globals:0:
1132PyRun_String:PyObject*:locals:0:
1133
1134PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001135PyRun_StringFlags:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001136PyRun_StringFlags:int:start::
1137PyRun_StringFlags:PyObject*:globals:0:
1138PyRun_StringFlags:PyObject*:locals:0:
1139PyRun_StringFlags:PyCompilerFlags*:flags::
1140
1141PySeqIter_New:PyObject*::+1:
1142PySeqIter_New:PyObject*:seq::
1143
1144PySequence_Check:int:::
1145PySequence_Check:PyObject*:o:0:
1146
1147PySequence_Concat:PyObject*::+1:
1148PySequence_Concat:PyObject*:o1:0:
1149PySequence_Concat:PyObject*:o2:0:
1150
1151PySequence_Count:int:::
1152PySequence_Count:PyObject*:o:0:
1153PySequence_Count:PyObject*:value:0:
1154
1155PySequence_DelItem:int:::
1156PySequence_DelItem:PyObject*:o:0:
1157PySequence_DelItem:int:i::
1158
1159PySequence_DelSlice:int:::
1160PySequence_DelSlice:PyObject*:o:0:
1161PySequence_DelSlice:int:i1::
1162PySequence_DelSlice:int:i2::
1163
1164PySequence_Fast:PyObject*::+1:
1165PySequence_Fast:PyObject*:v:0:
1166PySequence_Fast:const char*:m::
1167
1168PySequence_Fast_GET_ITEM:PyObject*::0:
1169PySequence_Fast_GET_ITEM:PyObject*:o:0:
1170PySequence_Fast_GET_ITEM:int:i::
1171
1172PySequence_GetItem:PyObject*::+1:
1173PySequence_GetItem:PyObject*:o:0:
1174PySequence_GetItem:int:i::
1175
1176PySequence_GetSlice:PyObject*::+1:
1177PySequence_GetSlice:PyObject*:o:0:
1178PySequence_GetSlice:int:i1::
1179PySequence_GetSlice:int:i2::
1180
1181PySequence_In:int:::
1182PySequence_In:PyObject*:o:0:
1183PySequence_In:PyObject*:value:0:
1184
1185PySequence_Index:int:::
1186PySequence_Index:PyObject*:o:0:
1187PySequence_Index:PyObject*:value:0:
1188
1189PySequence_InPlaceConcat:PyObject*::+1:
1190PySequence_InPlaceConcat:PyObject*:s:0:
1191PySequence_InPlaceConcat:PyObject*:o:0:
1192
1193PySequence_InPlaceRepeat:PyObject*::+1:
1194PySequence_InPlaceRepeat:PyObject*:s:0:
1195PySequence_InPlaceRepeat:PyObject*:o:0:
1196
1197PySequence_ITEM:PyObject*::+1:
1198PySequence_ITEM:PyObject*:o:0:
1199PySequence_ITEM:int:i::
1200
1201PySequence_Repeat:PyObject*::+1:
1202PySequence_Repeat:PyObject*:o:0:
1203PySequence_Repeat:int:count::
1204
1205PySequence_SetItem:int:::
1206PySequence_SetItem:PyObject*:o:0:
1207PySequence_SetItem:int:i::
1208PySequence_SetItem:PyObject*:v:+1:
1209
1210PySequence_SetSlice:int:::
1211PySequence_SetSlice:PyObject*:o:0:
1212PySequence_SetSlice:int:i1::
1213PySequence_SetSlice:int:i2::
1214PySequence_SetSlice:PyObject*:v:+1:
1215
1216PySequence_List:PyObject*::+1:
1217PySequence_List:PyObject*:o:0:
1218
1219PySequence_Tuple:PyObject*::+1:
1220PySequence_Tuple:PyObject*:o:0:
1221
1222PySet_Append:int:::
1223PySet_Append:PyObject*:set:0:
1224PySet_Append:PyObject*:key:+1:
1225
1226PySet_Contains:int:::
1227PySet_Contains:PyObject*:anyset:0:
1228PySet_Contains:PyObject*:key:0:
1229
1230PySet_Discard:int:::
1231PySet_Discard:PyObject*:set:0:
1232PySet_Discard:PyObject*:key:-1:no effect if key not found
1233
1234PySet_New:PyObject*::+1:
1235PySet_New:PyObject*:iterable:0:
1236
1237PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
1238PySet_Pop:PyObject*:set:0:
1239
1240PySet_Size:int:::
1241PySet_Size:PyObject*:anyset:0:
1242
1243PySlice_Check:int:::
1244PySlice_Check:PyObject*:ob:0:
1245
1246PySlice_New:PyObject*::+1:
1247PySlice_New:PyObject*:start:0:
1248PySlice_New:PyObject*:stop:0:
1249PySlice_New:PyObject*:step:0:
1250
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001251PyString_AS_STRING:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001252PyString_AS_STRING:PyObject*:string:0:
1253
1254PyString_AsDecodedObject:PyObject*::+1:
1255PyString_AsDecodedObject:PyObject*:str:0:
1256PyString_AsDecodedObject:const char*:encoding::
1257PyString_AsDecodedObject:const char*:errors::
1258
1259PyString_AsEncodedObject:PyObject*::+1:
1260PyString_AsEncodedObject:PyObject*:str:0:
1261PyString_AsEncodedObject:const char*:encoding::
1262PyString_AsEncodedObject:const char*:errors::
1263
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001264PyString_AsString:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001265PyString_AsString:PyObject*:string:0:
1266
1267PyString_AsStringAndSize:int:::
1268PyString_AsStringAndSize:PyObject*:obj:0:
1269PyString_AsStringAndSize:char**:buffer::
1270PyString_AsStringAndSize:int*:length::
1271
1272PyString_Check:int:::
1273PyString_Check:PyObject*:o:0:
1274
1275PyString_Concat:void:::
1276PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
1277PyString_Concat:PyObject*:newpart:0:
1278
1279PyString_ConcatAndDel:void:::
1280PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
1281PyString_ConcatAndDel:PyObject*:newpart:-1:
1282
1283PyString_Format:PyObject*::+1:
1284PyString_Format:PyObject*:format:0:
1285PyString_Format:PyObject*:args:0:
1286
1287PyString_FromString:PyObject*::+1:
1288PyString_FromString:const char*:v::
1289
1290PyString_FromStringAndSize:PyObject*::+1:
1291PyString_FromStringAndSize:const char*:v::
1292PyString_FromStringAndSize:int:len::
1293
1294PyString_FromFormat:PyObject*::+1:
1295PyString_FromFormat:const char*:format::
1296PyString_FromFormat::...::
1297
1298PyString_FromFormatV:PyObject*::+1:
1299PyString_FromFormatV:const char*:format::
1300PyString_FromFormatV:va_list:vargs::
1301
1302PyString_GET_SIZE:int:::
1303PyString_GET_SIZE:PyObject*:string:0:
1304
1305PyString_InternFromString:PyObject*::+1:
1306PyString_InternFromString:const char*:v::
1307
1308PyString_InternInPlace:void:::
1309PyString_InternInPlace:PyObject**:string:+1:???
1310
1311PyString_Size:int:::
1312PyString_Size:PyObject*:string:0:
1313
1314PyString_Decode:PyObject*::+1:
1315PyString_Decode:const char*:s::
1316PyString_Decode:int:size::
1317PyString_Decode:const char*:encoding::
1318PyString_Decode:const char*:errors::
1319
1320PyString_Encode:PyObject*::+1:
1321PyString_Encode:const char*:s::
1322PyString_Encode:int:size::
1323PyString_Encode:const char*:encoding::
1324PyString_Encode:const char*:errors::
1325
1326PyString_AsEncodedString:PyObject*::+1:
1327PyString_AsEncodedString:PyObject*:str::
1328PyString_AsEncodedString:const char*:encoding::
1329PyString_AsEncodedString:const char*:errors::
1330
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001331PySys_AddWarnOption:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001332PySys_AddWarnOption:const char*:s::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001333
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001334PySys_AddXOption:void:::
1335PySys_AddXOption:const wchar_t*:s::
1336
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001337PySys_GetObject:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001338PySys_GetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001339
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001340PySys_GetXOptions:PyObject*::0:
1341
Georg Brandl116aa622007-08-15 14:28:22 +00001342PySys_SetArgv:int:::
1343PySys_SetArgv:int:argc::
1344PySys_SetArgv:char**:argv::
1345
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001346PySys_SetObject:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001347PySys_SetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001348PySys_SetObject:PyObject*:v:+1:
1349
1350PySys_ResetWarnOptions:void:::
1351
1352PySys_WriteStdout:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001353PySys_WriteStdout:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001354
1355PySys_WriteStderr:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001356PySys_WriteStderr:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001357
Georg Brandl116aa622007-08-15 14:28:22 +00001358PyThreadState_Clear:void:::
1359PyThreadState_Clear:PyThreadState*:tstate::
1360
1361PyThreadState_Delete:void:::
1362PyThreadState_Delete:PyThreadState*:tstate::
1363
1364PyThreadState_Get:PyThreadState*:::
1365
1366PyThreadState_GetDict:PyObject*::0:
1367
1368PyThreadState_New:PyThreadState*:::
1369PyThreadState_New:PyInterpreterState*:interp::
1370
1371PyThreadState_Swap:PyThreadState*:::
1372PyThreadState_Swap:PyThreadState*:tstate::
1373
1374PyTime_FromTime:PyObject*::+1:
1375PyTime_FromTime:int:hour::
1376PyTime_FromTime:int:minute::
1377PyTime_FromTime:int:second::
1378PyTime_FromTime:int:usecond::
1379
1380PyTuple_Check:int:::
1381PyTuple_Check:PyObject*:p:0:
1382
1383PyTuple_GET_ITEM:PyObject*::0:
1384PyTuple_GET_ITEM:PyTupleObject*:p:0:
1385PyTuple_GET_ITEM:int:pos::
1386
1387PyTuple_GetItem:PyObject*::0:
1388PyTuple_GetItem:PyTupleObject*:p:0:
1389PyTuple_GetItem:int:pos::
1390
1391PyTuple_GetSlice:PyObject*::+1:
1392PyTuple_GetSlice:PyTupleObject*:p:0:
1393PyTuple_GetSlice:int:low::
1394PyTuple_GetSlice:int:high::
1395
1396PyTuple_New:PyObject*::+1:
1397PyTuple_New:int:len::
1398
1399PyTuple_Pack:PyObject*::+1:
1400PyTuple_Pack:int:len::
1401PyTuple_Pack:PyObject*:...:0:
1402
1403PyTuple_SET_ITEM:void:::
1404PyTuple_SET_ITEM:PyTupleObject*:p:0:
1405PyTuple_SET_ITEM:int:pos::
1406PyTuple_SET_ITEM:PyObject*:o:0:
1407
1408PyTuple_SetItem:int:::
1409PyTuple_SetItem:PyTupleObject*:p:0:
1410PyTuple_SetItem:int:pos::
1411PyTuple_SetItem:PyObject*:o:0:
1412
1413PyTuple_Size:int:::
1414PyTuple_Size:PyTupleObject*:p:0:
1415
1416PyType_GenericAlloc:PyObject*::+1:
1417PyType_GenericAlloc:PyObject*:type:0:
1418PyType_GenericAlloc:int:nitems:0:
1419
1420PyType_GenericNew:PyObject*::+1:
1421PyType_GenericNew:PyObject*:type:0:
1422PyType_GenericNew:PyObject*:args:0:
1423PyType_GenericNew:PyObject*:kwds:0:
1424
1425PyUnicode_Check:int:::
1426PyUnicode_Check:PyObject*:o:0:
1427
1428PyUnicode_GET_SIZE:int:::
1429PyUnicode_GET_SIZE:PyObject*:o:0:
1430
1431PyUnicode_GET_DATA_SIZE:int:::
1432PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1433
1434PyUnicode_AS_UNICODE:Py_UNICODE*:::
1435PyUnicode_AS_UNICODE:PyObject*:o:0:
1436
1437PyUnicode_AS_DATA:const char*:::
1438PyUnicode_AS_DATA:PyObject*:o:0:
1439
1440Py_UNICODE_ISSPACE:int:::
1441Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1442
1443Py_UNICODE_ISLOWER:int:::
1444Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1445
1446Py_UNICODE_ISUPPER:int:::
1447Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1448
1449Py_UNICODE_ISTITLE:int:::
1450Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1451
1452Py_UNICODE_ISLINEBREAK:int:::
1453Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1454
1455Py_UNICODE_ISDECIMAL:int:::
1456Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1457
1458Py_UNICODE_ISDIGIT:int:::
1459Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1460
1461Py_UNICODE_ISNUMERIC:int:::
1462Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1463
1464Py_UNICODE_TOLOWER:Py_UNICODE:::
1465Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1466
1467Py_UNICODE_TOUPPER:Py_UNICODE:::
1468Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1469
1470Py_UNICODE_TOTITLE:Py_UNICODE:::
1471Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1472
1473Py_UNICODE_TODECIMAL:int:::
1474Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1475
1476Py_UNICODE_TODIGIT:int:::
1477Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1478
1479Py_UNICODE_TONUMERIC:double:::
1480Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1481
1482PyUnicode_FromUnicode:PyObject*::+1:
1483PyUnicode_FromUnicode:const Py_UNICODE*:u::
1484PyUnicode_FromUnicode:int:size::
1485
1486PyUnicode_AsUnicode:Py_UNICODE*:::
1487PyUnicode_AsUnicode:PyObject :*unicode:0:
1488
1489PyUnicode_GetSize:int:::
1490PyUnicode_GetSize:PyObject :*unicode:0:
1491
1492PyUnicode_FromObject:PyObject*::+1:
1493PyUnicode_FromObject:PyObject*:*obj:0:
1494
1495PyUnicode_FromEncodedObject:PyObject*::+1:
1496PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1497PyUnicode_FromEncodedObject:const char*:encoding::
1498PyUnicode_FromEncodedObject:const char*:errors::
1499
1500PyUnicode_FromWideChar:PyObject*::+1:
1501PyUnicode_FromWideChar:const wchar_t*:w::
1502PyUnicode_FromWideChar:int:size::
1503
1504PyUnicode_AsWideChar:int:::
1505PyUnicode_AsWideChar:PyObject*:*unicode:0:
1506PyUnicode_AsWideChar:wchar_t*:w::
1507PyUnicode_AsWideChar:int:size::
1508
1509PyUnicode_Decode:PyObject*::+1:
1510PyUnicode_Decode:const char*:s::
1511PyUnicode_Decode:int:size::
1512PyUnicode_Decode:const char*:encoding::
1513PyUnicode_Decode:const char*:errors::
1514
1515PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1516PyUnicode_DecodeUTF16Stateful:const char*:s::
1517PyUnicode_DecodeUTF16Stateful:int:size::
1518PyUnicode_DecodeUTF16Stateful:const char*:errors::
1519PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1520PyUnicode_DecodeUTF16Stateful:int*:consumed::
1521
1522PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1523PyUnicode_DecodeUTF8Stateful:const char*:s::
1524PyUnicode_DecodeUTF8Stateful:int:size::
1525PyUnicode_DecodeUTF8Stateful:const char*:errors::
1526PyUnicode_DecodeUTF8Stateful:int*:consumed::
1527
1528PyUnicode_Encode:PyObject*::+1:
1529PyUnicode_Encode:const Py_UNICODE*:s::
1530PyUnicode_Encode:int:size::
1531PyUnicode_Encode:const char*:encoding::
1532PyUnicode_Encode:const char*:errors::
1533
1534PyUnicode_AsEncodedString:PyObject*::+1:
1535PyUnicode_AsEncodedString:PyObject*:unicode::
1536PyUnicode_AsEncodedString:const char*:encoding::
1537PyUnicode_AsEncodedString:const char*:errors::
1538
1539PyUnicode_DecodeUTF8:PyObject*::+1:
1540PyUnicode_DecodeUTF8:const char*:s::
1541PyUnicode_DecodeUTF8:int:size::
1542PyUnicode_DecodeUTF8:const char*:errors::
1543
1544PyUnicode_EncodeUTF8:PyObject*::+1:
1545PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1546PyUnicode_EncodeUTF8:int:size::
1547PyUnicode_EncodeUTF8:const char*:errors::
1548
1549PyUnicode_AsUTF8String:PyObject*::+1:
1550PyUnicode_AsUTF8String:PyObject*:unicode::
1551
1552PyUnicode_DecodeUTF16:PyObject*::+1:
1553PyUnicode_DecodeUTF16:const char*:s::
1554PyUnicode_DecodeUTF16:int:size::
1555PyUnicode_DecodeUTF16:const char*:errors::
1556PyUnicode_DecodeUTF16:int*:byteorder::
1557
1558PyUnicode_EncodeUTF16:PyObject*::+1:
1559PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1560PyUnicode_EncodeUTF16:int:size::
1561PyUnicode_EncodeUTF16:const char*:errors::
1562PyUnicode_EncodeUTF16:int:byteorder::
1563
1564PyUnicode_AsUTF16String:PyObject*::+1:
1565PyUnicode_AsUTF16String:PyObject*:unicode::
1566
1567PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1568PyUnicode_DecodeUnicodeEscape:const char*:s::
1569PyUnicode_DecodeUnicodeEscape:int:size::
1570PyUnicode_DecodeUnicodeEscape:const char*:errors::
1571
1572PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1573PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1574PyUnicode_EncodeUnicodeEscape:int:size::
1575PyUnicode_EncodeUnicodeEscape:const char*:errors::
1576
1577PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1578PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1579
1580PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1581PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1582PyUnicode_DecodeRawUnicodeEscape:int:size::
1583PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1584
1585PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1586PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1587PyUnicode_EncodeRawUnicodeEscape:int:size::
1588PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1589
1590PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1591PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1592
1593PyUnicode_DecodeLatin1:PyObject*::+1:
1594PyUnicode_DecodeLatin1:const char*:s::
1595PyUnicode_DecodeLatin1:int:size::
1596PyUnicode_DecodeLatin1:const char*:errors::
1597
1598PyUnicode_EncodeLatin1:PyObject*::+1:
1599PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1600PyUnicode_EncodeLatin1:int:size::
1601PyUnicode_EncodeLatin1:const char*:errors::
1602
1603PyUnicode_AsLatin1String:PyObject*::+1:
1604PyUnicode_AsLatin1String:PyObject*:unicode::
1605
1606PyUnicode_DecodeASCII:PyObject*::+1:
1607PyUnicode_DecodeASCII:const char*:s::
1608PyUnicode_DecodeASCII:int:size::
1609PyUnicode_DecodeASCII:const char*:errors::
1610
1611PyUnicode_EncodeASCII:PyObject*::+1:
1612PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1613PyUnicode_EncodeASCII:int:size::
1614PyUnicode_EncodeASCII:const char*:errors::
1615
1616PyUnicode_AsASCIIString:PyObject*::+1:
1617PyUnicode_AsASCIIString:PyObject*:unicode::
1618
1619PyUnicode_DecodeCharmap:PyObject*::+1:
1620PyUnicode_DecodeCharmap:const char*:s::
1621PyUnicode_DecodeCharmap:int:size::
1622PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1623PyUnicode_DecodeCharmap:const char*:errors::
1624
1625PyUnicode_EncodeCharmap:PyObject*::+1:
1626PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1627PyUnicode_EncodeCharmap:int:size::
1628PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1629PyUnicode_EncodeCharmap:const char*:errors::
1630
1631PyUnicode_AsCharmapString:PyObject*::+1:
1632PyUnicode_AsCharmapString:PyObject*:unicode:0:
1633PyUnicode_AsCharmapString:PyObject*:mapping:0:
1634
1635PyUnicode_TranslateCharmap:PyObject*::+1:
1636PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1637PyUnicode_TranslateCharmap:int:size::
1638PyUnicode_TranslateCharmap:PyObject*:table:0:
1639PyUnicode_TranslateCharmap:const char*:errors::
1640
1641PyUnicode_DecodeMBCS:PyObject*::+1:
1642PyUnicode_DecodeMBCS:const char*:s::
1643PyUnicode_DecodeMBCS:int:size::
1644PyUnicode_DecodeMBCS:const char*:errors::
1645
1646PyUnicode_EncodeMBCS:PyObject*::+1:
1647PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1648PyUnicode_EncodeMBCS:int:size::
1649PyUnicode_EncodeMBCS:const char*:errors::
1650
1651PyUnicode_AsMBCSString:PyObject*::+1:
1652PyUnicode_AsMBCSString:PyObject*:unicode::
1653
1654PyUnicode_Concat:PyObject*::+1:
1655PyUnicode_Concat:PyObject*:left:0:
1656PyUnicode_Concat:PyObject*:right:0:
1657
1658PyUnicode_Split:PyObject*::+1:
1659PyUnicode_Split:PyObject*:left:0:
1660PyUnicode_Split:PyObject*:right:0:
1661PyUnicode_Split:int:maxsplit::
1662
1663PyUnicode_Splitlines:PyObject*::+1:
1664PyUnicode_Splitlines:PyObject*:s:0:
1665PyUnicode_Splitlines:int:maxsplit::
1666
1667PyUnicode_Translate:PyObject*::+1:
1668PyUnicode_Translate:PyObject*:str:0:
1669PyUnicode_Translate:PyObject*:table:0:
1670PyUnicode_Translate:const char*:errors::
1671
1672PyUnicode_Join:PyObject*::+1:
1673PyUnicode_Join:PyObject*:separator:0:
1674PyUnicode_Join:PyObject*:seq:0:
1675
Benjamin Peterson5e55b3e2010-02-03 02:35:45 +00001676PyUnicode_Tailmatch:int:::
Georg Brandl116aa622007-08-15 14:28:22 +00001677PyUnicode_Tailmatch:PyObject*:str:0:
1678PyUnicode_Tailmatch:PyObject*:substr:0:
1679PyUnicode_Tailmatch:int:start::
1680PyUnicode_Tailmatch:int:end::
1681PyUnicode_Tailmatch:int:direction::
1682
1683PyUnicode_Find:int:::
1684PyUnicode_Find:PyObject*:str:0:
1685PyUnicode_Find:PyObject*:substr:0:
1686PyUnicode_Find:int:start::
1687PyUnicode_Find:int:end::
1688PyUnicode_Find:int:direction::
1689
1690PyUnicode_Count:int:::
1691PyUnicode_Count:PyObject*:str:0:
1692PyUnicode_Count:PyObject*:substr:0:
1693PyUnicode_Count:int:start::
1694PyUnicode_Count:int:end::
1695
1696PyUnicode_Replace:PyObject*::+1:
1697PyUnicode_Replace:PyObject*:str:0:
1698PyUnicode_Replace:PyObject*:substr:0:
1699PyUnicode_Replace:PyObject*:replstr:0:
1700PyUnicode_Replace:int:maxcount::
1701
1702PyUnicode_Compare:int:::
1703PyUnicode_Compare:PyObject*:left:0:
1704PyUnicode_Compare:PyObject*:right:0:
1705
1706PyUnicode_Format:PyObject*::+1:
1707PyUnicode_Format:PyObject*:format:0:
1708PyUnicode_Format:PyObject*:args:0:
1709
1710PyUnicode_Contains:int:::
1711PyUnicode_Contains:PyObject*:container:0:
1712PyUnicode_Contains:PyObject*:element:0:
1713
1714PyWeakref_GET_OBJECT:PyObject*::0:
1715PyWeakref_GET_OBJECT:PyObject*:ref:0:
1716
1717PyWeakref_GetObject:PyObject*::0:
1718PyWeakref_GetObject:PyObject*:ref:0:
1719
1720PyWeakref_NewProxy:PyObject*::+1:
1721PyWeakref_NewProxy:PyObject*:ob:0:
1722PyWeakref_NewProxy:PyObject*:callback:0:
1723
1724PyWeakref_NewRef:PyObject*::+1:
1725PyWeakref_NewRef:PyObject*:ob:0:
1726PyWeakref_NewRef:PyObject*:callback:0:
1727
1728PyWrapper_New:PyObject*::+1:
1729PyWrapper_New:PyObject*:d:0:
1730PyWrapper_New:PyObject*:self:0:
1731
1732Py_AtExit:int:::
1733Py_AtExit:void (*)():func::
1734
1735Py_BuildValue:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001736Py_BuildValue:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +00001737
1738Py_CompileString:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001739Py_CompileString:const char*:str::
1740Py_CompileString:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001741Py_CompileString:int:start::
1742
1743Py_CompileStringFlags:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001744Py_CompileStringFlags:const char*:str::
1745Py_CompileStringFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001746Py_CompileStringFlags:int:start::
1747Py_CompileStringFlags:PyCompilerFlags*:flags::
1748
1749Py_DECREF:void:::
1750Py_DECREF:PyObject*:o:-1:
1751
1752Py_EndInterpreter:void:::
1753Py_EndInterpreter:PyThreadState*:tstate::
1754
1755Py_Exit:void:::
1756Py_Exit:int:status::
1757
1758Py_FatalError:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001759Py_FatalError:const char*:message::
Georg Brandl116aa622007-08-15 14:28:22 +00001760
1761Py_FdIsInteractive:int:::
1762Py_FdIsInteractive:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001763Py_FdIsInteractive:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001764
1765Py_Finalize:void:::
1766
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001767Py_GetBuildInfoconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001768
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001769Py_GetCompilerconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001770
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001771Py_GetCopyrightconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001772
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001773Py_GetExecPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001774
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001775Py_GetPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001776
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001777Py_GetPlatformconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001778
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001779Py_GetPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001780
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001781Py_GetProgramFullPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001782
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001783Py_GetProgramName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001784
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001785Py_GetVersionconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001786
1787Py_INCREF:void:::
1788Py_INCREF:PyObject*:o:+1:
1789
1790Py_Initialize:void:::
1791
1792Py_IsInitialized:int:::
1793
1794Py_NewInterpreter:PyThreadState*:::
1795
1796Py_SetProgramName:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001797Py_SetProgramName:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +00001798
1799Py_XDECREF:void:::
1800Py_XDECREF:PyObject*:o:-1:if o is not NULL
1801
1802Py_XINCREF:void:::
1803Py_XINCREF:PyObject*:o:+1:if o is not NULL
1804
1805_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001806_PyImport_FindExtension:const char*:::
1807_PyImport_FindExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001808
1809_PyImport_Fini:void:::
1810
1811_PyImport_FixupExtension:PyObject*:::???
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001812_PyImport_FixupExtension:const char*:::
1813_PyImport_FixupExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001814
1815_PyImport_Init:void:::
1816
Georg Brandl116aa622007-08-15 14:28:22 +00001817_PyObject_New:PyObject*::+1:
1818_PyObject_New:PyTypeObject*:type:0:
1819
1820_PyObject_NewVar:PyObject*::+1:
1821_PyObject_NewVar:PyTypeObject*:type:0:
1822_PyObject_NewVar:int:size::
1823
1824_PyString_Resize:int:::
1825_PyString_Resize:PyObject**:string:+1:
1826_PyString_Resize:int:newsize::
1827
1828_PyTuple_Resize:int:::
1829_PyTuple_Resize:PyTupleObject**:p:+1:
1830_PyTuple_Resize:int:new::
1831
1832_Py_c_diff:Py_complex:::
1833_Py_c_diff:Py_complex:left::
1834_Py_c_diff:Py_complex:right::
1835
1836_Py_c_neg:Py_complex:::
1837_Py_c_neg:Py_complex:complex::
1838
1839_Py_c_pow:Py_complex:::
1840_Py_c_pow:Py_complex:num::
1841_Py_c_pow:Py_complex:exp::
1842
1843_Py_c_prod:Py_complex:::
1844_Py_c_prod:Py_complex:left::
1845_Py_c_prod:Py_complex:right::
1846
1847_Py_c_quot:Py_complex:::
1848_Py_c_quot:Py_complex:dividend::
1849_Py_c_quot:Py_complex:divisor::
1850
1851_Py_c_sum:Py_complex:::
1852_Py_c_sum:Py_complex:left::
1853_Py_c_sum:Py_complex:right::