blob: 6025617a1bedb411108b238d9fd43cb18503dd29 [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
352PyErr_WarnEx:int:::
353PyErr_WarnEx:PyObject*:category:0:
354PyErr_WarnEx:const char*:message::
355PyErr_WarnEx:Py_ssize_t:stack_level::
356
357PyEval_AcquireLock:void:::
358
359PyEval_AcquireThread:void:::
360PyEval_AcquireThread:PyThreadState*:tstate::
361
Christian Heimesd8654cf2007-12-02 15:22:16 +0000362PyEval_GetBuiltins:PyObject*::0:
363PyEval_GetLocals:PyObject*::0:
364PyEval_GetGlobals:PyObject*::0:
365PyEval_GetFrame:PyObject*::0:
366
Georg Brandl116aa622007-08-15 14:28:22 +0000367PyEval_InitThreads:void:::
368
369PyEval_ReleaseLock:void:::
370
371PyEval_ReleaseThread:void:::
372PyEval_ReleaseThread:PyThreadState*:tstate::
373
374PyEval_RestoreThread:void:::
375PyEval_RestoreThread:PyThreadState*:tstate::
376
377PyEval_SaveThread:PyThreadState*:::
378
379PyEval_EvalCode:PyObject*::+1:
380PyEval_EvalCode:PyCodeObject*:co:0:
381PyEval_EvalCode:PyObject*:globals:0:
382PyEval_EvalCode:PyObject*:locals:0:
383
Petri Lehtinence770372011-10-23 21:03:33 +0300384PyException_GetTraceback:PyObject*::+1:
385
Georg Brandl116aa622007-08-15 14:28:22 +0000386PyFile_AsFile:FILE*:::
387PyFile_AsFile:PyFileObject*:p:0:
388
389PyFile_Check:int:::
390PyFile_Check:PyObject*:p:0:
391
392PyFile_FromFile:PyObject*::+1:
393PyFile_FromFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300394PyFile_FromFile:const char*:name::
395PyFile_FromFile:const char*:mode::
Georg Brandl116aa622007-08-15 14:28:22 +0000396PyFile_FromFile:int(*:close)::
397
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000398PyFile_FromFileEx:PyObject*::+1:
399PyFile_FromFileEx:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300400PyFile_FromFileEx:const char*:name::
401PyFile_FromFileEx:const char*:mode::
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000402PyFile_FromFileEx:int(*:close)::
403PyFile_FromFileEx:int:buffering::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300404PyFile_FromFileEx:const char*:encoding::
405PyFile_FromFileEx:const char*:newline::
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000406
Georg Brandl116aa622007-08-15 14:28:22 +0000407PyFile_FromString:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300408PyFile_FromString:const char*:name::
409PyFile_FromString:const char*:mode::
Georg Brandl116aa622007-08-15 14:28:22 +0000410
411PyFile_GetLine:PyObject*::+1:
412PyFile_GetLine:PyObject*:p::
413PyFile_GetLine:int:n::
414
415PyFile_Name:PyObject*::0:
416PyFile_Name:PyObject*:p:0:
417
418PyFile_SetBufSize:void:::
419PyFile_SetBufSize:PyFileObject*:p:0:
420PyFile_SetBufSize:int:n::
421
422PyFile_SoftSpace:int:::
423PyFile_SoftSpace:PyFileObject*:p:0:
424PyFile_SoftSpace:int:newflag::
425
426PyFile_WriteObject:int:::
427PyFile_WriteObject:PyObject*:obj:0:
428PyFile_WriteObject:PyFileObject*:p:0:
429PyFile_WriteObject:int:flags::
430
431PyFile_WriteString:int:::
432PyFile_WriteString:const char*:s::
433PyFile_WriteString:PyFileObject*:p:0:
434PyFile_WriteString:int:flags::
435
436PyFloat_AS_DOUBLE:double:::
437PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
438
439PyFloat_AsDouble:double:::
440PyFloat_AsDouble:PyObject*:pyfloat:0:
441
442PyFloat_Check:int:::
443PyFloat_Check:PyObject*:p:0:
444
445PyFloat_FromDouble:PyObject*::+1:
446PyFloat_FromDouble:double:v::
447
448PyFloat_FromString:PyObject*::+1:
449PyFloat_FromString:PyObject*:str:0:
450
451PyFrozenSet_New:PyObject*::+1:
452PyFrozenSet_New:PyObject*:iterable:0:
453
454PyFunction_GetClosure:PyObject*::0:
455PyFunction_GetClosure:PyObject*:op:0:
456
457PyFunction_GetCode:PyObject*::0:
458PyFunction_GetCode:PyObject*:op:0:
459
460PyFunction_GetDefaults:PyObject*::0:
461PyFunction_GetDefaults:PyObject*:op:0:
462
463PyFunction_GetGlobals:PyObject*::0:
464PyFunction_GetGlobals:PyObject*:op:0:
465
466PyFunction_GetModule:PyObject*::0:
467PyFunction_GetModule:PyObject*:op:0:
468
469PyFunction_New:PyObject*::+1:
470PyFunction_New:PyObject*:code:+1:
471PyFunction_New:PyObject*:globals:+1:
472
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100473PyFunction_NewWithQualName:PyObject*::+1:
474PyFunction_NewWithQualName:PyObject*:code:+1:
475PyFunction_NewWithQualName:PyObject*:globals:+1:
476PyFunction_NewWithQualName:PyObject*:qualname:+1:
477
Georg Brandl116aa622007-08-15 14:28:22 +0000478PyFunction_SetClosure:int:::
479PyFunction_SetClosure:PyObject*:op:0:
480PyFunction_SetClosure:PyObject*:closure:+1:
481
482PyFunction_SetDefaults:int:::
483PyFunction_SetDefaults:PyObject*:op:0:
484PyFunction_SetDefaults:PyObject*:defaults:+1:
485
486PyGen_New:PyObject*::+1:
487PyGen_New:PyFrameObject*:frame:0:
488
489Py_InitModule:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300490Py_InitModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000491Py_InitModule:PyMethodDef[]:methods::
492
493Py_InitModule3:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300494Py_InitModule3:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000495Py_InitModule3:PyMethodDef[]:methods::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300496Py_InitModule3:const char*:doc::
Georg Brandl116aa622007-08-15 14:28:22 +0000497
498Py_InitModule4:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300499Py_InitModule4:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000500Py_InitModule4:PyMethodDef[]:methods::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300501Py_InitModule4:const char*:doc::
Georg Brandl116aa622007-08-15 14:28:22 +0000502Py_InitModule4:PyObject*:self::
503Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
504
505PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300506PyImport_AddModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000507
508PyImport_Cleanup:void:::
509
510PyImport_ExecCodeModule:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300511PyImport_ExecCodeModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000512PyImport_ExecCodeModule:PyObject*:co:0:
513
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000514PyImport_ExecCodeModuleEx:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300515PyImport_ExecCodeModuleEx:const char*:name::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000516PyImport_ExecCodeModuleEx:PyObject*:co:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300517PyImport_ExecCodeModuleEx:const char*:pathname::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000518
Georg Brandl116aa622007-08-15 14:28:22 +0000519PyImport_GetMagicNumber:long:::
520
521PyImport_GetModuleDict:PyObject*::0:
522
523PyImport_Import:PyObject*::+1:
524PyImport_Import:PyObject*:name:0:
525
526PyImport_ImportFrozenModule:int:::
Serhiy Storchakac6792272013-10-19 21:03:34 +0300527PyImport_ImportFrozenModule:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000528
529PyImport_ImportModule:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300530PyImport_ImportModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000531
532PyImport_ImportModuleEx:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300533PyImport_ImportModuleEx:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000534PyImport_ImportModuleEx:PyObject*:globals:0:???
535PyImport_ImportModuleEx:PyObject*:locals:0:???
536PyImport_ImportModuleEx:PyObject*:fromlist:0:???
537
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000538PyImport_ImportModuleLevel:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300539PyImport_ImportModuleLevel:const char*:name::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000540PyImport_ImportModuleLevel:PyObject*:globals:0:???
541PyImport_ImportModuleLevel:PyObject*:locals:0:???
542PyImport_ImportModuleLevel:PyObject*:fromlist:0:???
543PyImport_ImportModuleLevel:int:level::
544
Georg Brandl116aa622007-08-15 14:28:22 +0000545PyImport_ReloadModule:PyObject*::+1:
546PyImport_ReloadModule:PyObject*:m:0:
547
548PyInstance_New:PyObject*::+1:
549PyInstance_New:PyObject*:klass:+1:
550PyInstance_New:PyObject*:arg:0:
551PyInstance_New:PyObject*:kw:0:
552
553PyInstance_NewRaw:PyObject*::+1:
554PyInstance_NewRaw:PyObject*:klass:+1:
555PyInstance_NewRaw:PyObject*:dict:+1:
556
557PyInt_AS_LONG:long:::
558PyInt_AS_LONG:PyIntObject*:io:0:
559
560PyInt_AsLong:long:::
561PyInt_AsLong:PyObject*:io:0:
562
563PyInt_Check:int:::
564PyInt_Check:PyObject*:op:0:
565
566PyInt_FromLong:PyObject*::+1:
567PyInt_FromLong:long:ival::
568
569PyInt_FromString:PyObject*::+1:
570PyInt_FromString:char*:str:0:
571PyInt_FromString:char**:pend:0:
572PyInt_FromString:int:base:0:
573
574PyInt_FromSsize_t:PyObject*::+1:
575PyInt_FromSsize_t:Py_ssize_t:ival::
576
577PyInt_GetMax:long:::
578
579PyInterpreterState_Clear:void:::
580PyInterpreterState_Clear:PyInterpreterState*:interp::
581
582PyInterpreterState_Delete:void:::
583PyInterpreterState_Delete:PyInterpreterState*:interp::
584
585PyInterpreterState_New:PyInterpreterState*:::
586
587PyIter_Check:int:o:0:
588
589PyIter_Next:PyObject*::+1:
590PyIter_Next:PyObject*:o:0:
591
592PyList_Append:int:::
593PyList_Append:PyObject*:list:0:
594PyList_Append:PyObject*:item:+1:
595
596PyList_AsTuple:PyObject*::+1:
597PyList_AsTuple:PyObject*:list:0:
598
599PyList_Check:int:::
600PyList_Check:PyObject*:p:0:
601
602PyList_GET_ITEM:PyObject*::0:
603PyList_GET_ITEM:PyObject*:list:0:
604PyList_GET_ITEM:int:i:0:
605
606PyList_GET_SIZE:int:::
607PyList_GET_SIZE:PyObject*:list:0:
608
609PyList_GetItem:PyObject*::0:
610PyList_GetItem:PyObject*:list:0:
611PyList_GetItem:int:index::
612
613PyList_GetSlice:PyObject*::+1:
614PyList_GetSlice:PyObject*:list:0:
615PyList_GetSlice:int:low::
616PyList_GetSlice:int:high::
617
618PyList_Insert:int:::
619PyList_Insert:PyObject*:list:0:
620PyList_Insert:int:index::
621PyList_Insert:PyObject*:item:+1:
622
623PyList_New:PyObject*::+1:
624PyList_New:int:len::
625
626PyList_Reverse:int:::
627PyList_Reverse:PyObject*:list:0:
628
629PyList_SET_ITEM:void:::
630PyList_SET_ITEM:PyObject*:list:0:
631PyList_SET_ITEM:int:i::
632PyList_SET_ITEM:PyObject*:o:0:
633
634PyList_SetItem:int:::
635PyList_SetItem:PyObject*:list:0:
636PyList_SetItem:int:index::
637PyList_SetItem:PyObject*:item:0:
638
639PyList_SetSlice:int:::
640PyList_SetSlice:PyObject*:list:0:
641PyList_SetSlice:int:low::
642PyList_SetSlice:int:high::
643PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
644
645PyList_Size:int:::
646PyList_Size:PyObject*:list:0:
647
648PyList_Sort:int:::
649PyList_Sort:PyObject*:list:0:
650
651PyLong_AsDouble:double:::
652PyLong_AsDouble:PyObject*:pylong:0:
653
654PyLong_AsLong:long:::
655PyLong_AsLong:PyObject*:pylong:0:
656
657PyLong_AsUnsignedLong:unsigned long:::
658PyLong_AsUnsignedLong:PyObject*:pylong:0:
659
660PyLong_Check:int:::
661PyLong_Check:PyObject*:p:0:
662
663PyLong_FromDouble:PyObject*::+1:
664PyLong_FromDouble:double:v::
665
666PyLong_FromLong:PyObject*::+1:
667PyLong_FromLong:long:v::
668
669PyLong_FromLongLong:PyObject*::+1:
670PyLong_FromLongLong:long long:v::
671
672PyLong_FromUnsignedLongLong:PyObject*::+1:
673PyLong_FromUnsignedLongLong:unsigned long long:v::
674
675PyLong_FromString:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300676PyLong_FromString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +0000677PyLong_FromString:char**:pend::
678PyLong_FromString:int:base::
679
680PyLong_FromUnicode:PyObject*::+1:
681PyLong_FromUnicode:Py_UNICODE:u::
682PyLong_FromUnicode:int:length::
683PyLong_FromUnicode:int:base::
684
685PyLong_FromUnsignedLong:PyObject*::+1:
686PyLong_FromUnsignedLong:unsignedlong:v::
687
688PyLong_FromVoidPtr:PyObject*::+1:
689PyLong_FromVoidPtr:void*:p::
690
691PyMapping_Check:int:::
692PyMapping_Check:PyObject*:o:0:
693
694PyMapping_DelItem:int:::
695PyMapping_DelItem:PyObject*:o:0:
696PyMapping_DelItem:PyObject*:key:0:
697
698PyMapping_DelItemString:int:::
699PyMapping_DelItemString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300700PyMapping_DelItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000701
702PyMapping_GetItemString:PyObject*::+1:
703PyMapping_GetItemString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300704PyMapping_GetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000705
706PyMapping_HasKey:int:::
707PyMapping_HasKey:PyObject*:o:0:
708PyMapping_HasKey:PyObject*:key::
709
710PyMapping_HasKeyString:int:::
711PyMapping_HasKeyString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300712PyMapping_HasKeyString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000713
714PyMapping_Items:PyObject*::+1:
715PyMapping_Items:PyObject*:o:0:
716
717PyMapping_Keys:PyObject*::+1:
718PyMapping_Keys:PyObject*:o:0:
719
720PyMapping_Length:int:::
721PyMapping_Length:PyObject*:o:0:
722
723PyMapping_SetItemString:int:::
724PyMapping_SetItemString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300725PyMapping_SetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000726PyMapping_SetItemString:PyObject*:v:+1:
727
728PyMapping_Values:PyObject*::+1:
729PyMapping_Values:PyObject*:o:0:
730
731PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
732PyMarshal_ReadLastObjectFromFile:FILE*:file::
733
734PyMarshal_ReadObjectFromFile:PyObject*::+1:
735PyMarshal_ReadObjectFromFile:FILE*:file::
736
737PyMarshal_ReadObjectFromString:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300738PyMarshal_ReadObjectFromString:const char*:string::
Georg Brandl116aa622007-08-15 14:28:22 +0000739PyMarshal_ReadObjectFromString:int:len::
740
741PyMarshal_WriteObjectToString:PyObject*::+1:
742PyMarshal_WriteObjectToString:PyObject*:value:0:
743
744PyMethod_Class:PyObject*::0:
745PyMethod_Class:PyObject*:im:0:
746
747PyMethod_Function:PyObject*::0:
748PyMethod_Function:PyObject*:im:0:
749
750PyMethod_GET_CLASS:PyObject*::0:
751PyMethod_GET_CLASS:PyObject*:im:0:
752
753PyMethod_GET_FUNCTION:PyObject*::0:
754PyMethod_GET_FUNCTION:PyObject*:im:0:
755
756PyMethod_GET_SELF:PyObject*::0:
757PyMethod_GET_SELF:PyObject*:im:0:
758
759PyMethod_New:PyObject*::+1:
760PyMethod_New:PyObject*:func:0:
761PyMethod_New:PyObject*:self:0:
762PyMethod_New:PyObject*:class:0:
763
764PyMethod_Self:PyObject*::0:
765PyMethod_Self:PyObject*:im:0:
766
767PyModule_GetDict:PyObject*::0:
768PyModule_GetDict::PyObject* module:0:
769
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300770PyModule_GetFilename:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000771PyModule_GetFilename:PyObject*:module:0:
772
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300773PyModule_GetName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000774PyModule_GetName:PyObject*:module:0:
775
776PyModule_New:PyObject*::+1:
777PyModule_New::char* name::
778
779PyNumber_Absolute:PyObject*::+1:
780PyNumber_Absolute:PyObject*:o:0:
781
782PyNumber_Add:PyObject*::+1:
783PyNumber_Add:PyObject*:o1:0:
784PyNumber_Add:PyObject*:o2:0:
785
786PyNumber_And:PyObject*::+1:
787PyNumber_And:PyObject*:o1:0:
788PyNumber_And:PyObject*:o2:0:
789
790PyNumber_Check:PyObject*:o:0:
791PyNumber_Check:int:::
792
793PyNumber_Divide:PyObject*::+1:
794PyNumber_Divide:PyObject*:o1:0:
795PyNumber_Divide:PyObject*:o2:0:
796
797PyNumber_Divmod:PyObject*::+1:
798PyNumber_Divmod:PyObject*:o1:0:
799PyNumber_Divmod:PyObject*:o2:0:
800
801PyNumber_Float:PyObject*::+1:
802PyNumber_Float:PyObject*:o:0:
803
804PyNumber_FloorDivide:PyObject*::+1:
805PyNumber_FloorDivide:PyObject*:v:0:
806PyNumber_FloorDivide:PyObject*:w:0:
807
808PyNumber_InPlaceAdd:PyObject*::+1:
809PyNumber_InPlaceAdd:PyObject*:v:0:
810PyNumber_InPlaceAdd:PyObject*:w:0:
811
812PyNumber_InPlaceAnd:PyObject*::+1:
813PyNumber_InPlaceAnd:PyObject*:v:0:
814PyNumber_InPlaceAnd:PyObject*:w:0:
815
816PyNumber_InPlaceDivide:PyObject*::+1:
817PyNumber_InPlaceDivide:PyObject*:v:0:
818PyNumber_InPlaceDivide:PyObject*:w:0:
819
820PyNumber_InPlaceFloorDivide:PyObject*::+1:
821PyNumber_InPlaceFloorDivide:PyObject*:v:0:
822PyNumber_InPlaceFloorDivide:PyObject*:w:0:
823
824PyNumber_InPlaceLshift:PyObject*::+1:
825PyNumber_InPlaceLshift:PyObject*:v:0:
826PyNumber_InPlaceLshift:PyObject*:w:0:
827
828PyNumber_InPlaceMultiply:PyObject*::+1:
829PyNumber_InPlaceMultiply:PyObject*:v:0:
830PyNumber_InPlaceMultiply:PyObject*:w:0:
831
832PyNumber_InPlaceOr:PyObject*::+1:
833PyNumber_InPlaceOr:PyObject*:v:0:
834PyNumber_InPlaceOr:PyObject*:w:0:
835
836PyNumber_InPlacePower:PyObject*::+1:
837PyNumber_InPlacePower:PyObject*:v:0:
838PyNumber_InPlacePower:PyObject*:w:0:
839PyNumber_InPlacePower:PyObject*:z:0:
840
841PyNumber_InPlaceRemainder:PyObject*::+1:
842PyNumber_InPlaceRemainder:PyObject*:v:0:
843PyNumber_InPlaceRemainder:PyObject*:w:0:
844
845PyNumber_InPlaceRshift:PyObject*::+1:
846PyNumber_InPlaceRshift:PyObject*:v:0:
847PyNumber_InPlaceRshift:PyObject*:w:0:
848
849PyNumber_InPlaceSubtract:PyObject*::+1:
850PyNumber_InPlaceSubtract:PyObject*:v:0:
851PyNumber_InPlaceSubtract:PyObject*:w:0:
852
853PyNumber_InPlaceTrueDivide:PyObject*::+1:
854PyNumber_InPlaceTrueDivide:PyObject*:v:0:
855PyNumber_InPlaceTrueDivide:PyObject*:w:0:
856
857PyNumber_InPlaceXor:PyObject*::+1:
858PyNumber_InPlaceXor:PyObject*:v:0:
859PyNumber_InPlaceXor:PyObject*:w:0:
860
Georg Brandl116aa622007-08-15 14:28:22 +0000861PyNumber_Invert:PyObject*::+1:
862PyNumber_Invert:PyObject*:o:0:
863
864PyNumber_Long:PyObject*::+1:
865PyNumber_Long:PyObject*:o:0:
866
867PyNumber_Lshift:PyObject*::+1:
868PyNumber_Lshift:PyObject*:o1:0:
869PyNumber_Lshift:PyObject*:o2:0:
870
871PyNumber_Multiply:PyObject*::+1:
872PyNumber_Multiply:PyObject*:o1:0:
873PyNumber_Multiply:PyObject*:o2:0:
874
875PyNumber_Negative:PyObject*::+1:
876PyNumber_Negative:PyObject*:o:0:
877
878PyNumber_Or:PyObject*::+1:
879PyNumber_Or:PyObject*:o1:0:
880PyNumber_Or:PyObject*:o2:0:
881
882PyNumber_Positive:PyObject*::+1:
883PyNumber_Positive:PyObject*:o:0:
884
885PyNumber_Power:PyObject*::+1:
886PyNumber_Power:PyObject*:o1:0:
887PyNumber_Power:PyObject*:o2:0:
888PyNumber_Power:PyObject*:o3:0:
889
890PyNumber_Remainder:PyObject*::+1:
891PyNumber_Remainder:PyObject*:o1:0:
892PyNumber_Remainder:PyObject*:o2:0:
893
894PyNumber_Rshift:PyObject*::+1:
895PyNumber_Rshift:PyObject*:o1:0:
896PyNumber_Rshift:PyObject*:o2:0:
897
898PyNumber_Subtract:PyObject*::+1:
899PyNumber_Subtract:PyObject*:o1:0:
900PyNumber_Subtract:PyObject*:o2:0:
901
902PyNumber_TrueDivide:PyObject*::+1:
903PyNumber_TrueDivide:PyObject*:v:0:
904PyNumber_TrueDivide:PyObject*:w:0:
905
906PyNumber_Xor:PyObject*::+1:
907PyNumber_Xor:PyObject*:o1:0:
908PyNumber_Xor:PyObject*:o2:0:
909
Larry Hastingsb0827312014-02-09 22:05:19 -0800910PyObject_AsFileDescriptor:int:::
Georg Brandl116aa622007-08-15 14:28:22 +0000911PyObject_AsFileDescriptor:PyObject*:o:0:
912
913PyObject_Call:PyObject*::+1:
914PyObject_Call:PyObject*:callable_object:0:
915PyObject_Call:PyObject*:args:0:
916PyObject_Call:PyObject*:kw:0:
917
918PyObject_CallFunction:PyObject*::+1:
919PyObject_CallFunction:PyObject*:callable_object:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300920PyObject_CallFunction:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000921PyObject_CallFunction::...::
922
923PyObject_CallFunctionObjArgs:PyObject*::+1:
924PyObject_CallFunctionObjArgs:PyObject*:callable:0:
925PyObject_CallFunctionObjArgs::...::
926
927PyObject_CallMethod:PyObject*::+1:
928PyObject_CallMethod:PyObject*:o:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300929PyObject_CallMethod:const char*:m::
930PyObject_CallMethod:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000931PyObject_CallMethod::...::
932
933PyObject_CallMethodObjArgs:PyObject*::+1:
934PyObject_CallMethodObjArgs:PyObject*:o:0:
Serhiy Storchakadce05502013-05-28 22:46:15 +0300935PyObject_CallMethodObjArgs:PyObject*:name:0:
Georg Brandl116aa622007-08-15 14:28:22 +0000936PyObject_CallMethodObjArgs::...::
937
938PyObject_CallObject:PyObject*::+1:
939PyObject_CallObject:PyObject*:callable_object:0:
940PyObject_CallObject:PyObject*:args:0:
941
942PyObject_Cmp:int:::
943PyObject_Cmp:PyObject*:o1:0:
944PyObject_Cmp:PyObject*:o2:0:
945PyObject_Cmp:int*:result::
946
947PyObject_Compare:int:::
948PyObject_Compare:PyObject*:o1:0:
949PyObject_Compare:PyObject*:o2:0:
950
951PyObject_DelAttr:int:::
952PyObject_DelAttr:PyObject*:o:0:
953PyObject_DelAttr:PyObject*:attr_name:0:
954
955PyObject_DelAttrString:int:::
956PyObject_DelAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300957PyObject_DelAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +0000958
959PyObject_DelItem:int:::
960PyObject_DelItem:PyObject*:o:0:
961PyObject_DelItem:PyObject*:key:0:
962
963PyObject_Dir:PyObject*::+1:
964PyObject_Dir:PyObject*:o:0:
965
966PyObject_GetAttr:PyObject*::+1:
967PyObject_GetAttr:PyObject*:o:0:
968PyObject_GetAttr:PyObject*:attr_name:0:
969
970PyObject_GetAttrString:PyObject*::+1:
971PyObject_GetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300972PyObject_GetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +0000973
974PyObject_GetItem:PyObject*::+1:
975PyObject_GetItem:PyObject*:o:0:
976PyObject_GetItem:PyObject*:key:0:
977
978PyObject_GetIter:PyObject*::+1:
979PyObject_GetIter:PyObject*:o:0:
980
981PyObject_HasAttr:int:::
982PyObject_HasAttr:PyObject*:o:0:
983PyObject_HasAttr:PyObject*:attr_name:0:
984
985PyObject_HasAttrString:int:::
986PyObject_HasAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300987PyObject_HasAttrString:const char*:attr_name:0:
Georg Brandl116aa622007-08-15 14:28:22 +0000988
989PyObject_Hash:int:::
990PyObject_Hash:PyObject*:o:0:
991
992PyObject_IsTrue:int:::
993PyObject_IsTrue:PyObject*:o:0:
994
995PyObject_Init:PyObject*::0:
996PyObject_Init:PyObject*:op:0:
997
998PyObject_InitVar:PyVarObject*::0:
999PyObject_InitVar:PyVarObject*:op:0:
1000
1001PyObject_Length:int:::
1002PyObject_Length:PyObject*:o:0:
1003
1004PyObject_NEW:PyObject*::+1:
1005
1006PyObject_New:PyObject*::+1:
1007
1008PyObject_NEW_VAR:PyObject*::+1:
1009
1010PyObject_NewVar:PyObject*::+1:
1011
1012PyObject_Print:int:::
1013PyObject_Print:PyObject*:o:0:
1014PyObject_Print:FILE*:fp::
1015PyObject_Print:int:flags::
1016
1017PyObject_Repr:PyObject*::+1:
1018PyObject_Repr:PyObject*:o:0:
1019
1020PyObject_RichCompare:PyObject*::+1:
1021PyObject_RichCompare:PyObject*:o1:0:
1022PyObject_RichCompare:PyObject*:o2:0:
1023PyObject_RichCompare:int:opid::
1024
1025PyObject_RichCompareBool:int:::
1026PyObject_RichCompareBool:PyObject*:o1:0:
1027PyObject_RichCompareBool:PyObject*:o2:0:
1028PyObject_RichCompareBool:int:opid::
1029
1030PyObject_SetAttr:int:::
1031PyObject_SetAttr:PyObject*:o:0:
1032PyObject_SetAttr:PyObject*:attr_name:0:
1033PyObject_SetAttr:PyObject*:v:+1:
1034
1035PyObject_SetAttrString:int:::
1036PyObject_SetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001037PyObject_SetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +00001038PyObject_SetAttrString:PyObject*:v:+1:
1039
1040PyObject_SetItem:int:::
1041PyObject_SetItem:PyObject*:o:0:
1042PyObject_SetItem:PyObject*:key:0:
1043PyObject_SetItem:PyObject*:v:+1:
1044
1045PyObject_Str:PyObject*::+1:
1046PyObject_Str:PyObject*:o:0:
1047
1048PyObject_Type:PyObject*::+1:
1049PyObject_Type:PyObject*:o:0:
1050
1051PyObject_Unicode:PyObject*::+1:
1052PyObject_Unicode:PyObject*:o:0:
1053
1054PyParser_SimpleParseFile:struct _node*:::
1055PyParser_SimpleParseFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001056PyParser_SimpleParseFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001057PyParser_SimpleParseFile:int:start::
1058
1059PyParser_SimpleParseString:struct _node*:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001060PyParser_SimpleParseString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001061PyParser_SimpleParseString:int:start::
1062
1063PyRun_AnyFile:int:::
1064PyRun_AnyFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001065PyRun_AnyFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001066
1067PyRun_File:PyObject*::+1:??? -- same as eval_code2()
1068PyRun_File:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001069PyRun_File:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001070PyRun_File:int:start::
1071PyRun_File:PyObject*:globals:0:
1072PyRun_File:PyObject*:locals:0:
1073
1074PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1075PyRun_FileEx:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001076PyRun_FileEx:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001077PyRun_FileEx:int:start::
1078PyRun_FileEx:PyObject*:globals:0:
1079PyRun_FileEx:PyObject*:locals:0:
1080PyRun_FileEx:int:closeit::
1081
1082PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1083PyRun_FileFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001084PyRun_FileFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001085PyRun_FileFlags:int:start::
1086PyRun_FileFlags:PyObject*:globals:0:
1087PyRun_FileFlags:PyObject*:locals:0:
1088PyRun_FileFlags:PyCompilerFlags*:flags::
1089
1090PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1091PyRun_FileExFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001092PyRun_FileExFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001093PyRun_FileExFlags:int:start::
1094PyRun_FileExFlags:PyObject*:globals:0:
1095PyRun_FileExFlags:PyObject*:locals:0:
1096PyRun_FileExFlags:int:closeit::
1097PyRun_FileExFlags:PyCompilerFlags*:flags::
1098
1099PyRun_InteractiveLoop:int:::
1100PyRun_InteractiveLoop:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001101PyRun_InteractiveLoop:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001102
1103PyRun_InteractiveOne:int:::
1104PyRun_InteractiveOne:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001105PyRun_InteractiveOne:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001106
1107PyRun_SimpleFile:int:::
1108PyRun_SimpleFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001109PyRun_SimpleFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001110
1111PyRun_SimpleString:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001112PyRun_SimpleString:const char*:command::
Georg Brandl116aa622007-08-15 14:28:22 +00001113
1114PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001115PyRun_String:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001116PyRun_String:int:start::
1117PyRun_String:PyObject*:globals:0:
1118PyRun_String:PyObject*:locals:0:
1119
1120PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001121PyRun_StringFlags:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001122PyRun_StringFlags:int:start::
1123PyRun_StringFlags:PyObject*:globals:0:
1124PyRun_StringFlags:PyObject*:locals:0:
1125PyRun_StringFlags:PyCompilerFlags*:flags::
1126
1127PySeqIter_New:PyObject*::+1:
1128PySeqIter_New:PyObject*:seq::
1129
1130PySequence_Check:int:::
1131PySequence_Check:PyObject*:o:0:
1132
1133PySequence_Concat:PyObject*::+1:
1134PySequence_Concat:PyObject*:o1:0:
1135PySequence_Concat:PyObject*:o2:0:
1136
1137PySequence_Count:int:::
1138PySequence_Count:PyObject*:o:0:
1139PySequence_Count:PyObject*:value:0:
1140
1141PySequence_DelItem:int:::
1142PySequence_DelItem:PyObject*:o:0:
1143PySequence_DelItem:int:i::
1144
1145PySequence_DelSlice:int:::
1146PySequence_DelSlice:PyObject*:o:0:
1147PySequence_DelSlice:int:i1::
1148PySequence_DelSlice:int:i2::
1149
1150PySequence_Fast:PyObject*::+1:
1151PySequence_Fast:PyObject*:v:0:
1152PySequence_Fast:const char*:m::
1153
1154PySequence_Fast_GET_ITEM:PyObject*::0:
1155PySequence_Fast_GET_ITEM:PyObject*:o:0:
1156PySequence_Fast_GET_ITEM:int:i::
1157
1158PySequence_GetItem:PyObject*::+1:
1159PySequence_GetItem:PyObject*:o:0:
1160PySequence_GetItem:int:i::
1161
1162PySequence_GetSlice:PyObject*::+1:
1163PySequence_GetSlice:PyObject*:o:0:
1164PySequence_GetSlice:int:i1::
1165PySequence_GetSlice:int:i2::
1166
1167PySequence_In:int:::
1168PySequence_In:PyObject*:o:0:
1169PySequence_In:PyObject*:value:0:
1170
1171PySequence_Index:int:::
1172PySequence_Index:PyObject*:o:0:
1173PySequence_Index:PyObject*:value:0:
1174
1175PySequence_InPlaceConcat:PyObject*::+1:
1176PySequence_InPlaceConcat:PyObject*:s:0:
1177PySequence_InPlaceConcat:PyObject*:o:0:
1178
1179PySequence_InPlaceRepeat:PyObject*::+1:
1180PySequence_InPlaceRepeat:PyObject*:s:0:
1181PySequence_InPlaceRepeat:PyObject*:o:0:
1182
1183PySequence_ITEM:PyObject*::+1:
1184PySequence_ITEM:PyObject*:o:0:
1185PySequence_ITEM:int:i::
1186
1187PySequence_Repeat:PyObject*::+1:
1188PySequence_Repeat:PyObject*:o:0:
1189PySequence_Repeat:int:count::
1190
1191PySequence_SetItem:int:::
1192PySequence_SetItem:PyObject*:o:0:
1193PySequence_SetItem:int:i::
1194PySequence_SetItem:PyObject*:v:+1:
1195
1196PySequence_SetSlice:int:::
1197PySequence_SetSlice:PyObject*:o:0:
1198PySequence_SetSlice:int:i1::
1199PySequence_SetSlice:int:i2::
1200PySequence_SetSlice:PyObject*:v:+1:
1201
1202PySequence_List:PyObject*::+1:
1203PySequence_List:PyObject*:o:0:
1204
1205PySequence_Tuple:PyObject*::+1:
1206PySequence_Tuple:PyObject*:o:0:
1207
1208PySet_Append:int:::
1209PySet_Append:PyObject*:set:0:
1210PySet_Append:PyObject*:key:+1:
1211
1212PySet_Contains:int:::
1213PySet_Contains:PyObject*:anyset:0:
1214PySet_Contains:PyObject*:key:0:
1215
1216PySet_Discard:int:::
1217PySet_Discard:PyObject*:set:0:
1218PySet_Discard:PyObject*:key:-1:no effect if key not found
1219
1220PySet_New:PyObject*::+1:
1221PySet_New:PyObject*:iterable:0:
1222
1223PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
1224PySet_Pop:PyObject*:set:0:
1225
1226PySet_Size:int:::
1227PySet_Size:PyObject*:anyset:0:
1228
1229PySlice_Check:int:::
1230PySlice_Check:PyObject*:ob:0:
1231
1232PySlice_New:PyObject*::+1:
1233PySlice_New:PyObject*:start:0:
1234PySlice_New:PyObject*:stop:0:
1235PySlice_New:PyObject*:step:0:
1236
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001237PyString_AS_STRING:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001238PyString_AS_STRING:PyObject*:string:0:
1239
1240PyString_AsDecodedObject:PyObject*::+1:
1241PyString_AsDecodedObject:PyObject*:str:0:
1242PyString_AsDecodedObject:const char*:encoding::
1243PyString_AsDecodedObject:const char*:errors::
1244
1245PyString_AsEncodedObject:PyObject*::+1:
1246PyString_AsEncodedObject:PyObject*:str:0:
1247PyString_AsEncodedObject:const char*:encoding::
1248PyString_AsEncodedObject:const char*:errors::
1249
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001250PyString_AsString:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001251PyString_AsString:PyObject*:string:0:
1252
1253PyString_AsStringAndSize:int:::
1254PyString_AsStringAndSize:PyObject*:obj:0:
1255PyString_AsStringAndSize:char**:buffer::
1256PyString_AsStringAndSize:int*:length::
1257
1258PyString_Check:int:::
1259PyString_Check:PyObject*:o:0:
1260
1261PyString_Concat:void:::
1262PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
1263PyString_Concat:PyObject*:newpart:0:
1264
1265PyString_ConcatAndDel:void:::
1266PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
1267PyString_ConcatAndDel:PyObject*:newpart:-1:
1268
1269PyString_Format:PyObject*::+1:
1270PyString_Format:PyObject*:format:0:
1271PyString_Format:PyObject*:args:0:
1272
1273PyString_FromString:PyObject*::+1:
1274PyString_FromString:const char*:v::
1275
1276PyString_FromStringAndSize:PyObject*::+1:
1277PyString_FromStringAndSize:const char*:v::
1278PyString_FromStringAndSize:int:len::
1279
1280PyString_FromFormat:PyObject*::+1:
1281PyString_FromFormat:const char*:format::
1282PyString_FromFormat::...::
1283
1284PyString_FromFormatV:PyObject*::+1:
1285PyString_FromFormatV:const char*:format::
1286PyString_FromFormatV:va_list:vargs::
1287
1288PyString_GET_SIZE:int:::
1289PyString_GET_SIZE:PyObject*:string:0:
1290
1291PyString_InternFromString:PyObject*::+1:
1292PyString_InternFromString:const char*:v::
1293
1294PyString_InternInPlace:void:::
1295PyString_InternInPlace:PyObject**:string:+1:???
1296
1297PyString_Size:int:::
1298PyString_Size:PyObject*:string:0:
1299
1300PyString_Decode:PyObject*::+1:
1301PyString_Decode:const char*:s::
1302PyString_Decode:int:size::
1303PyString_Decode:const char*:encoding::
1304PyString_Decode:const char*:errors::
1305
1306PyString_Encode:PyObject*::+1:
1307PyString_Encode:const char*:s::
1308PyString_Encode:int:size::
1309PyString_Encode:const char*:encoding::
1310PyString_Encode:const char*:errors::
1311
1312PyString_AsEncodedString:PyObject*::+1:
1313PyString_AsEncodedString:PyObject*:str::
1314PyString_AsEncodedString:const char*:encoding::
1315PyString_AsEncodedString:const char*:errors::
1316
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001317PySys_AddWarnOption:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001318PySys_AddWarnOption:const char*:s::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001319
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001320PySys_AddXOption:void:::
1321PySys_AddXOption:const wchar_t*:s::
1322
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001323PySys_GetObject:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001324PySys_GetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001325
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001326PySys_GetXOptions:PyObject*::0:
1327
Georg Brandl116aa622007-08-15 14:28:22 +00001328PySys_SetArgv:int:::
1329PySys_SetArgv:int:argc::
1330PySys_SetArgv:char**:argv::
1331
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001332PySys_SetObject:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001333PySys_SetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001334PySys_SetObject:PyObject*:v:+1:
1335
1336PySys_ResetWarnOptions:void:::
1337
1338PySys_WriteStdout:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001339PySys_WriteStdout:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001340
1341PySys_WriteStderr:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001342PySys_WriteStderr:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001343
Georg Brandl116aa622007-08-15 14:28:22 +00001344PyThreadState_Clear:void:::
1345PyThreadState_Clear:PyThreadState*:tstate::
1346
1347PyThreadState_Delete:void:::
1348PyThreadState_Delete:PyThreadState*:tstate::
1349
1350PyThreadState_Get:PyThreadState*:::
1351
1352PyThreadState_GetDict:PyObject*::0:
1353
1354PyThreadState_New:PyThreadState*:::
1355PyThreadState_New:PyInterpreterState*:interp::
1356
1357PyThreadState_Swap:PyThreadState*:::
1358PyThreadState_Swap:PyThreadState*:tstate::
1359
1360PyTime_FromTime:PyObject*::+1:
1361PyTime_FromTime:int:hour::
1362PyTime_FromTime:int:minute::
1363PyTime_FromTime:int:second::
1364PyTime_FromTime:int:usecond::
1365
1366PyTuple_Check:int:::
1367PyTuple_Check:PyObject*:p:0:
1368
1369PyTuple_GET_ITEM:PyObject*::0:
1370PyTuple_GET_ITEM:PyTupleObject*:p:0:
1371PyTuple_GET_ITEM:int:pos::
1372
1373PyTuple_GetItem:PyObject*::0:
1374PyTuple_GetItem:PyTupleObject*:p:0:
1375PyTuple_GetItem:int:pos::
1376
1377PyTuple_GetSlice:PyObject*::+1:
1378PyTuple_GetSlice:PyTupleObject*:p:0:
1379PyTuple_GetSlice:int:low::
1380PyTuple_GetSlice:int:high::
1381
1382PyTuple_New:PyObject*::+1:
1383PyTuple_New:int:len::
1384
1385PyTuple_Pack:PyObject*::+1:
1386PyTuple_Pack:int:len::
1387PyTuple_Pack:PyObject*:...:0:
1388
1389PyTuple_SET_ITEM:void:::
1390PyTuple_SET_ITEM:PyTupleObject*:p:0:
1391PyTuple_SET_ITEM:int:pos::
1392PyTuple_SET_ITEM:PyObject*:o:0:
1393
1394PyTuple_SetItem:int:::
1395PyTuple_SetItem:PyTupleObject*:p:0:
1396PyTuple_SetItem:int:pos::
1397PyTuple_SetItem:PyObject*:o:0:
1398
1399PyTuple_Size:int:::
1400PyTuple_Size:PyTupleObject*:p:0:
1401
1402PyType_GenericAlloc:PyObject*::+1:
1403PyType_GenericAlloc:PyObject*:type:0:
1404PyType_GenericAlloc:int:nitems:0:
1405
1406PyType_GenericNew:PyObject*::+1:
1407PyType_GenericNew:PyObject*:type:0:
1408PyType_GenericNew:PyObject*:args:0:
1409PyType_GenericNew:PyObject*:kwds:0:
1410
1411PyUnicode_Check:int:::
1412PyUnicode_Check:PyObject*:o:0:
1413
1414PyUnicode_GET_SIZE:int:::
1415PyUnicode_GET_SIZE:PyObject*:o:0:
1416
1417PyUnicode_GET_DATA_SIZE:int:::
1418PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1419
1420PyUnicode_AS_UNICODE:Py_UNICODE*:::
1421PyUnicode_AS_UNICODE:PyObject*:o:0:
1422
1423PyUnicode_AS_DATA:const char*:::
1424PyUnicode_AS_DATA:PyObject*:o:0:
1425
1426Py_UNICODE_ISSPACE:int:::
1427Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1428
1429Py_UNICODE_ISLOWER:int:::
1430Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1431
1432Py_UNICODE_ISUPPER:int:::
1433Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1434
1435Py_UNICODE_ISTITLE:int:::
1436Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1437
1438Py_UNICODE_ISLINEBREAK:int:::
1439Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1440
1441Py_UNICODE_ISDECIMAL:int:::
1442Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1443
1444Py_UNICODE_ISDIGIT:int:::
1445Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1446
1447Py_UNICODE_ISNUMERIC:int:::
1448Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1449
1450Py_UNICODE_TOLOWER:Py_UNICODE:::
1451Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1452
1453Py_UNICODE_TOUPPER:Py_UNICODE:::
1454Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1455
1456Py_UNICODE_TOTITLE:Py_UNICODE:::
1457Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1458
1459Py_UNICODE_TODECIMAL:int:::
1460Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1461
1462Py_UNICODE_TODIGIT:int:::
1463Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1464
1465Py_UNICODE_TONUMERIC:double:::
1466Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1467
1468PyUnicode_FromUnicode:PyObject*::+1:
1469PyUnicode_FromUnicode:const Py_UNICODE*:u::
1470PyUnicode_FromUnicode:int:size::
1471
1472PyUnicode_AsUnicode:Py_UNICODE*:::
1473PyUnicode_AsUnicode:PyObject :*unicode:0:
1474
1475PyUnicode_GetSize:int:::
1476PyUnicode_GetSize:PyObject :*unicode:0:
1477
1478PyUnicode_FromObject:PyObject*::+1:
1479PyUnicode_FromObject:PyObject*:*obj:0:
1480
1481PyUnicode_FromEncodedObject:PyObject*::+1:
1482PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1483PyUnicode_FromEncodedObject:const char*:encoding::
1484PyUnicode_FromEncodedObject:const char*:errors::
1485
1486PyUnicode_FromWideChar:PyObject*::+1:
1487PyUnicode_FromWideChar:const wchar_t*:w::
1488PyUnicode_FromWideChar:int:size::
1489
1490PyUnicode_AsWideChar:int:::
1491PyUnicode_AsWideChar:PyObject*:*unicode:0:
1492PyUnicode_AsWideChar:wchar_t*:w::
1493PyUnicode_AsWideChar:int:size::
1494
1495PyUnicode_Decode:PyObject*::+1:
1496PyUnicode_Decode:const char*:s::
1497PyUnicode_Decode:int:size::
1498PyUnicode_Decode:const char*:encoding::
1499PyUnicode_Decode:const char*:errors::
1500
1501PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1502PyUnicode_DecodeUTF16Stateful:const char*:s::
1503PyUnicode_DecodeUTF16Stateful:int:size::
1504PyUnicode_DecodeUTF16Stateful:const char*:errors::
1505PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1506PyUnicode_DecodeUTF16Stateful:int*:consumed::
1507
1508PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1509PyUnicode_DecodeUTF8Stateful:const char*:s::
1510PyUnicode_DecodeUTF8Stateful:int:size::
1511PyUnicode_DecodeUTF8Stateful:const char*:errors::
1512PyUnicode_DecodeUTF8Stateful:int*:consumed::
1513
1514PyUnicode_Encode:PyObject*::+1:
1515PyUnicode_Encode:const Py_UNICODE*:s::
1516PyUnicode_Encode:int:size::
1517PyUnicode_Encode:const char*:encoding::
1518PyUnicode_Encode:const char*:errors::
1519
1520PyUnicode_AsEncodedString:PyObject*::+1:
1521PyUnicode_AsEncodedString:PyObject*:unicode::
1522PyUnicode_AsEncodedString:const char*:encoding::
1523PyUnicode_AsEncodedString:const char*:errors::
1524
1525PyUnicode_DecodeUTF8:PyObject*::+1:
1526PyUnicode_DecodeUTF8:const char*:s::
1527PyUnicode_DecodeUTF8:int:size::
1528PyUnicode_DecodeUTF8:const char*:errors::
1529
1530PyUnicode_EncodeUTF8:PyObject*::+1:
1531PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1532PyUnicode_EncodeUTF8:int:size::
1533PyUnicode_EncodeUTF8:const char*:errors::
1534
1535PyUnicode_AsUTF8String:PyObject*::+1:
1536PyUnicode_AsUTF8String:PyObject*:unicode::
1537
1538PyUnicode_DecodeUTF16:PyObject*::+1:
1539PyUnicode_DecodeUTF16:const char*:s::
1540PyUnicode_DecodeUTF16:int:size::
1541PyUnicode_DecodeUTF16:const char*:errors::
1542PyUnicode_DecodeUTF16:int*:byteorder::
1543
1544PyUnicode_EncodeUTF16:PyObject*::+1:
1545PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1546PyUnicode_EncodeUTF16:int:size::
1547PyUnicode_EncodeUTF16:const char*:errors::
1548PyUnicode_EncodeUTF16:int:byteorder::
1549
1550PyUnicode_AsUTF16String:PyObject*::+1:
1551PyUnicode_AsUTF16String:PyObject*:unicode::
1552
1553PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1554PyUnicode_DecodeUnicodeEscape:const char*:s::
1555PyUnicode_DecodeUnicodeEscape:int:size::
1556PyUnicode_DecodeUnicodeEscape:const char*:errors::
1557
1558PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1559PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1560PyUnicode_EncodeUnicodeEscape:int:size::
1561PyUnicode_EncodeUnicodeEscape:const char*:errors::
1562
1563PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1564PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1565
1566PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1567PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1568PyUnicode_DecodeRawUnicodeEscape:int:size::
1569PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1570
1571PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1572PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1573PyUnicode_EncodeRawUnicodeEscape:int:size::
1574PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1575
1576PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1577PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1578
1579PyUnicode_DecodeLatin1:PyObject*::+1:
1580PyUnicode_DecodeLatin1:const char*:s::
1581PyUnicode_DecodeLatin1:int:size::
1582PyUnicode_DecodeLatin1:const char*:errors::
1583
1584PyUnicode_EncodeLatin1:PyObject*::+1:
1585PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1586PyUnicode_EncodeLatin1:int:size::
1587PyUnicode_EncodeLatin1:const char*:errors::
1588
1589PyUnicode_AsLatin1String:PyObject*::+1:
1590PyUnicode_AsLatin1String:PyObject*:unicode::
1591
1592PyUnicode_DecodeASCII:PyObject*::+1:
1593PyUnicode_DecodeASCII:const char*:s::
1594PyUnicode_DecodeASCII:int:size::
1595PyUnicode_DecodeASCII:const char*:errors::
1596
1597PyUnicode_EncodeASCII:PyObject*::+1:
1598PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1599PyUnicode_EncodeASCII:int:size::
1600PyUnicode_EncodeASCII:const char*:errors::
1601
1602PyUnicode_AsASCIIString:PyObject*::+1:
1603PyUnicode_AsASCIIString:PyObject*:unicode::
1604
1605PyUnicode_DecodeCharmap:PyObject*::+1:
1606PyUnicode_DecodeCharmap:const char*:s::
1607PyUnicode_DecodeCharmap:int:size::
1608PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1609PyUnicode_DecodeCharmap:const char*:errors::
1610
1611PyUnicode_EncodeCharmap:PyObject*::+1:
1612PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1613PyUnicode_EncodeCharmap:int:size::
1614PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1615PyUnicode_EncodeCharmap:const char*:errors::
1616
1617PyUnicode_AsCharmapString:PyObject*::+1:
1618PyUnicode_AsCharmapString:PyObject*:unicode:0:
1619PyUnicode_AsCharmapString:PyObject*:mapping:0:
1620
1621PyUnicode_TranslateCharmap:PyObject*::+1:
1622PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1623PyUnicode_TranslateCharmap:int:size::
1624PyUnicode_TranslateCharmap:PyObject*:table:0:
1625PyUnicode_TranslateCharmap:const char*:errors::
1626
1627PyUnicode_DecodeMBCS:PyObject*::+1:
1628PyUnicode_DecodeMBCS:const char*:s::
1629PyUnicode_DecodeMBCS:int:size::
1630PyUnicode_DecodeMBCS:const char*:errors::
1631
1632PyUnicode_EncodeMBCS:PyObject*::+1:
1633PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1634PyUnicode_EncodeMBCS:int:size::
1635PyUnicode_EncodeMBCS:const char*:errors::
1636
1637PyUnicode_AsMBCSString:PyObject*::+1:
1638PyUnicode_AsMBCSString:PyObject*:unicode::
1639
1640PyUnicode_Concat:PyObject*::+1:
1641PyUnicode_Concat:PyObject*:left:0:
1642PyUnicode_Concat:PyObject*:right:0:
1643
1644PyUnicode_Split:PyObject*::+1:
1645PyUnicode_Split:PyObject*:left:0:
1646PyUnicode_Split:PyObject*:right:0:
1647PyUnicode_Split:int:maxsplit::
1648
1649PyUnicode_Splitlines:PyObject*::+1:
1650PyUnicode_Splitlines:PyObject*:s:0:
1651PyUnicode_Splitlines:int:maxsplit::
1652
1653PyUnicode_Translate:PyObject*::+1:
1654PyUnicode_Translate:PyObject*:str:0:
1655PyUnicode_Translate:PyObject*:table:0:
1656PyUnicode_Translate:const char*:errors::
1657
1658PyUnicode_Join:PyObject*::+1:
1659PyUnicode_Join:PyObject*:separator:0:
1660PyUnicode_Join:PyObject*:seq:0:
1661
Benjamin Peterson5e55b3e2010-02-03 02:35:45 +00001662PyUnicode_Tailmatch:int:::
Georg Brandl116aa622007-08-15 14:28:22 +00001663PyUnicode_Tailmatch:PyObject*:str:0:
1664PyUnicode_Tailmatch:PyObject*:substr:0:
1665PyUnicode_Tailmatch:int:start::
1666PyUnicode_Tailmatch:int:end::
1667PyUnicode_Tailmatch:int:direction::
1668
1669PyUnicode_Find:int:::
1670PyUnicode_Find:PyObject*:str:0:
1671PyUnicode_Find:PyObject*:substr:0:
1672PyUnicode_Find:int:start::
1673PyUnicode_Find:int:end::
1674PyUnicode_Find:int:direction::
1675
1676PyUnicode_Count:int:::
1677PyUnicode_Count:PyObject*:str:0:
1678PyUnicode_Count:PyObject*:substr:0:
1679PyUnicode_Count:int:start::
1680PyUnicode_Count:int:end::
1681
1682PyUnicode_Replace:PyObject*::+1:
1683PyUnicode_Replace:PyObject*:str:0:
1684PyUnicode_Replace:PyObject*:substr:0:
1685PyUnicode_Replace:PyObject*:replstr:0:
1686PyUnicode_Replace:int:maxcount::
1687
1688PyUnicode_Compare:int:::
1689PyUnicode_Compare:PyObject*:left:0:
1690PyUnicode_Compare:PyObject*:right:0:
1691
1692PyUnicode_Format:PyObject*::+1:
1693PyUnicode_Format:PyObject*:format:0:
1694PyUnicode_Format:PyObject*:args:0:
1695
1696PyUnicode_Contains:int:::
1697PyUnicode_Contains:PyObject*:container:0:
1698PyUnicode_Contains:PyObject*:element:0:
1699
1700PyWeakref_GET_OBJECT:PyObject*::0:
1701PyWeakref_GET_OBJECT:PyObject*:ref:0:
1702
1703PyWeakref_GetObject:PyObject*::0:
1704PyWeakref_GetObject:PyObject*:ref:0:
1705
1706PyWeakref_NewProxy:PyObject*::+1:
1707PyWeakref_NewProxy:PyObject*:ob:0:
1708PyWeakref_NewProxy:PyObject*:callback:0:
1709
1710PyWeakref_NewRef:PyObject*::+1:
1711PyWeakref_NewRef:PyObject*:ob:0:
1712PyWeakref_NewRef:PyObject*:callback:0:
1713
1714PyWrapper_New:PyObject*::+1:
1715PyWrapper_New:PyObject*:d:0:
1716PyWrapper_New:PyObject*:self:0:
1717
1718Py_AtExit:int:::
1719Py_AtExit:void (*)():func::
1720
1721Py_BuildValue:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001722Py_BuildValue:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +00001723
1724Py_CompileString:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001725Py_CompileString:const char*:str::
1726Py_CompileString:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001727Py_CompileString:int:start::
1728
1729Py_CompileStringFlags:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001730Py_CompileStringFlags:const char*:str::
1731Py_CompileStringFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001732Py_CompileStringFlags:int:start::
1733Py_CompileStringFlags:PyCompilerFlags*:flags::
1734
1735Py_DECREF:void:::
1736Py_DECREF:PyObject*:o:-1:
1737
1738Py_EndInterpreter:void:::
1739Py_EndInterpreter:PyThreadState*:tstate::
1740
1741Py_Exit:void:::
1742Py_Exit:int:status::
1743
1744Py_FatalError:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001745Py_FatalError:const char*:message::
Georg Brandl116aa622007-08-15 14:28:22 +00001746
1747Py_FdIsInteractive:int:::
1748Py_FdIsInteractive:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001749Py_FdIsInteractive:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001750
1751Py_Finalize:void:::
1752
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001753Py_GetBuildInfoconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001754
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001755Py_GetCompilerconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001756
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001757Py_GetCopyrightconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001758
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001759Py_GetExecPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001760
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001761Py_GetPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001762
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001763Py_GetPlatformconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001764
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001765Py_GetPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001766
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001767Py_GetProgramFullPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001768
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001769Py_GetProgramName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001770
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001771Py_GetVersionconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001772
1773Py_INCREF:void:::
1774Py_INCREF:PyObject*:o:+1:
1775
1776Py_Initialize:void:::
1777
1778Py_IsInitialized:int:::
1779
1780Py_NewInterpreter:PyThreadState*:::
1781
1782Py_SetProgramName:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001783Py_SetProgramName:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +00001784
1785Py_XDECREF:void:::
1786Py_XDECREF:PyObject*:o:-1:if o is not NULL
1787
1788Py_XINCREF:void:::
1789Py_XINCREF:PyObject*:o:+1:if o is not NULL
1790
1791_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001792_PyImport_FindExtension:const char*:::
1793_PyImport_FindExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001794
1795_PyImport_Fini:void:::
1796
1797_PyImport_FixupExtension:PyObject*:::???
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001798_PyImport_FixupExtension:const char*:::
1799_PyImport_FixupExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001800
1801_PyImport_Init:void:::
1802
Georg Brandl116aa622007-08-15 14:28:22 +00001803_PyObject_New:PyObject*::+1:
1804_PyObject_New:PyTypeObject*:type:0:
1805
1806_PyObject_NewVar:PyObject*::+1:
1807_PyObject_NewVar:PyTypeObject*:type:0:
1808_PyObject_NewVar:int:size::
1809
1810_PyString_Resize:int:::
1811_PyString_Resize:PyObject**:string:+1:
1812_PyString_Resize:int:newsize::
1813
1814_PyTuple_Resize:int:::
1815_PyTuple_Resize:PyTupleObject**:p:+1:
1816_PyTuple_Resize:int:new::
1817
1818_Py_c_diff:Py_complex:::
1819_Py_c_diff:Py_complex:left::
1820_Py_c_diff:Py_complex:right::
1821
1822_Py_c_neg:Py_complex:::
1823_Py_c_neg:Py_complex:complex::
1824
1825_Py_c_pow:Py_complex:::
1826_Py_c_pow:Py_complex:num::
1827_Py_c_pow:Py_complex:exp::
1828
1829_Py_c_prod:Py_complex:::
1830_Py_c_prod:Py_complex:left::
1831_Py_c_prod:Py_complex:right::
1832
1833_Py_c_quot:Py_complex:::
1834_Py_c_quot:Py_complex:dividend::
1835_Py_c_quot:Py_complex:divisor::
1836
1837_Py_c_sum:Py_complex:::
1838_Py_c_sum:Py_complex:left::
1839_Py_c_sum:Py_complex:right::