blob: d1c24e5fcacaac25227c8f722a46535ac929fef1 [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
494Py_InitModule:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300495Py_InitModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000496Py_InitModule:PyMethodDef[]:methods::
497
498Py_InitModule3:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300499Py_InitModule3:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000500Py_InitModule3:PyMethodDef[]:methods::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300501Py_InitModule3:const char*:doc::
Georg Brandl116aa622007-08-15 14:28:22 +0000502
503Py_InitModule4:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300504Py_InitModule4:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000505Py_InitModule4:PyMethodDef[]:methods::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300506Py_InitModule4:const char*:doc::
Georg Brandl116aa622007-08-15 14:28:22 +0000507Py_InitModule4:PyObject*:self::
508Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
509
510PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300511PyImport_AddModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000512
513PyImport_Cleanup:void:::
514
515PyImport_ExecCodeModule:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300516PyImport_ExecCodeModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000517PyImport_ExecCodeModule:PyObject*:co:0:
518
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000519PyImport_ExecCodeModuleEx:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300520PyImport_ExecCodeModuleEx:const char*:name::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000521PyImport_ExecCodeModuleEx:PyObject*:co:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300522PyImport_ExecCodeModuleEx:const char*:pathname::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000523
Georg Brandl116aa622007-08-15 14:28:22 +0000524PyImport_GetMagicNumber:long:::
525
526PyImport_GetModuleDict:PyObject*::0:
527
528PyImport_Import:PyObject*::+1:
529PyImport_Import:PyObject*:name:0:
530
531PyImport_ImportFrozenModule:int:::
Serhiy Storchakac6792272013-10-19 21:03:34 +0300532PyImport_ImportFrozenModule:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000533
534PyImport_ImportModule:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300535PyImport_ImportModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000536
537PyImport_ImportModuleEx:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300538PyImport_ImportModuleEx:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000539PyImport_ImportModuleEx:PyObject*:globals:0:???
540PyImport_ImportModuleEx:PyObject*:locals:0:???
541PyImport_ImportModuleEx:PyObject*:fromlist:0:???
542
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000543PyImport_ImportModuleLevel:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300544PyImport_ImportModuleLevel:const char*:name::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000545PyImport_ImportModuleLevel:PyObject*:globals:0:???
546PyImport_ImportModuleLevel:PyObject*:locals:0:???
547PyImport_ImportModuleLevel:PyObject*:fromlist:0:???
548PyImport_ImportModuleLevel:int:level::
549
Georg Brandl116aa622007-08-15 14:28:22 +0000550PyImport_ReloadModule:PyObject*::+1:
551PyImport_ReloadModule:PyObject*:m:0:
552
553PyInstance_New:PyObject*::+1:
554PyInstance_New:PyObject*:klass:+1:
555PyInstance_New:PyObject*:arg:0:
556PyInstance_New:PyObject*:kw:0:
557
558PyInstance_NewRaw:PyObject*::+1:
559PyInstance_NewRaw:PyObject*:klass:+1:
560PyInstance_NewRaw:PyObject*:dict:+1:
561
562PyInt_AS_LONG:long:::
563PyInt_AS_LONG:PyIntObject*:io:0:
564
565PyInt_AsLong:long:::
566PyInt_AsLong:PyObject*:io:0:
567
568PyInt_Check:int:::
569PyInt_Check:PyObject*:op:0:
570
571PyInt_FromLong:PyObject*::+1:
572PyInt_FromLong:long:ival::
573
574PyInt_FromString:PyObject*::+1:
575PyInt_FromString:char*:str:0:
576PyInt_FromString:char**:pend:0:
577PyInt_FromString:int:base:0:
578
579PyInt_FromSsize_t:PyObject*::+1:
580PyInt_FromSsize_t:Py_ssize_t:ival::
581
582PyInt_GetMax:long:::
583
584PyInterpreterState_Clear:void:::
585PyInterpreterState_Clear:PyInterpreterState*:interp::
586
587PyInterpreterState_Delete:void:::
588PyInterpreterState_Delete:PyInterpreterState*:interp::
589
590PyInterpreterState_New:PyInterpreterState*:::
591
592PyIter_Check:int:o:0:
593
594PyIter_Next:PyObject*::+1:
595PyIter_Next:PyObject*:o:0:
596
597PyList_Append:int:::
598PyList_Append:PyObject*:list:0:
599PyList_Append:PyObject*:item:+1:
600
601PyList_AsTuple:PyObject*::+1:
602PyList_AsTuple:PyObject*:list:0:
603
604PyList_Check:int:::
605PyList_Check:PyObject*:p:0:
606
607PyList_GET_ITEM:PyObject*::0:
608PyList_GET_ITEM:PyObject*:list:0:
609PyList_GET_ITEM:int:i:0:
610
611PyList_GET_SIZE:int:::
612PyList_GET_SIZE:PyObject*:list:0:
613
614PyList_GetItem:PyObject*::0:
615PyList_GetItem:PyObject*:list:0:
616PyList_GetItem:int:index::
617
618PyList_GetSlice:PyObject*::+1:
619PyList_GetSlice:PyObject*:list:0:
620PyList_GetSlice:int:low::
621PyList_GetSlice:int:high::
622
623PyList_Insert:int:::
624PyList_Insert:PyObject*:list:0:
625PyList_Insert:int:index::
626PyList_Insert:PyObject*:item:+1:
627
628PyList_New:PyObject*::+1:
629PyList_New:int:len::
630
631PyList_Reverse:int:::
632PyList_Reverse:PyObject*:list:0:
633
634PyList_SET_ITEM:void:::
635PyList_SET_ITEM:PyObject*:list:0:
636PyList_SET_ITEM:int:i::
637PyList_SET_ITEM:PyObject*:o:0:
638
639PyList_SetItem:int:::
640PyList_SetItem:PyObject*:list:0:
641PyList_SetItem:int:index::
642PyList_SetItem:PyObject*:item:0:
643
644PyList_SetSlice:int:::
645PyList_SetSlice:PyObject*:list:0:
646PyList_SetSlice:int:low::
647PyList_SetSlice:int:high::
648PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
649
650PyList_Size:int:::
651PyList_Size:PyObject*:list:0:
652
653PyList_Sort:int:::
654PyList_Sort:PyObject*:list:0:
655
656PyLong_AsDouble:double:::
657PyLong_AsDouble:PyObject*:pylong:0:
658
659PyLong_AsLong:long:::
660PyLong_AsLong:PyObject*:pylong:0:
661
662PyLong_AsUnsignedLong:unsigned long:::
663PyLong_AsUnsignedLong:PyObject*:pylong:0:
664
665PyLong_Check:int:::
666PyLong_Check:PyObject*:p:0:
667
668PyLong_FromDouble:PyObject*::+1:
669PyLong_FromDouble:double:v::
670
671PyLong_FromLong:PyObject*::+1:
672PyLong_FromLong:long:v::
673
674PyLong_FromLongLong:PyObject*::+1:
675PyLong_FromLongLong:long long:v::
676
677PyLong_FromUnsignedLongLong:PyObject*::+1:
678PyLong_FromUnsignedLongLong:unsigned long long:v::
679
680PyLong_FromString:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300681PyLong_FromString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +0000682PyLong_FromString:char**:pend::
683PyLong_FromString:int:base::
684
685PyLong_FromUnicode:PyObject*::+1:
686PyLong_FromUnicode:Py_UNICODE:u::
687PyLong_FromUnicode:int:length::
688PyLong_FromUnicode:int:base::
689
690PyLong_FromUnsignedLong:PyObject*::+1:
691PyLong_FromUnsignedLong:unsignedlong:v::
692
693PyLong_FromVoidPtr:PyObject*::+1:
694PyLong_FromVoidPtr:void*:p::
695
696PyMapping_Check:int:::
697PyMapping_Check:PyObject*:o:0:
698
699PyMapping_DelItem:int:::
700PyMapping_DelItem:PyObject*:o:0:
701PyMapping_DelItem:PyObject*:key:0:
702
703PyMapping_DelItemString:int:::
704PyMapping_DelItemString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300705PyMapping_DelItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000706
707PyMapping_GetItemString:PyObject*::+1:
708PyMapping_GetItemString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300709PyMapping_GetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000710
711PyMapping_HasKey:int:::
712PyMapping_HasKey:PyObject*:o:0:
713PyMapping_HasKey:PyObject*:key::
714
715PyMapping_HasKeyString:int:::
716PyMapping_HasKeyString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300717PyMapping_HasKeyString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000718
719PyMapping_Items:PyObject*::+1:
720PyMapping_Items:PyObject*:o:0:
721
722PyMapping_Keys:PyObject*::+1:
723PyMapping_Keys:PyObject*:o:0:
724
725PyMapping_Length:int:::
726PyMapping_Length:PyObject*:o:0:
727
728PyMapping_SetItemString:int:::
729PyMapping_SetItemString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300730PyMapping_SetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000731PyMapping_SetItemString:PyObject*:v:+1:
732
733PyMapping_Values:PyObject*::+1:
734PyMapping_Values:PyObject*:o:0:
735
736PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
737PyMarshal_ReadLastObjectFromFile:FILE*:file::
738
739PyMarshal_ReadObjectFromFile:PyObject*::+1:
740PyMarshal_ReadObjectFromFile:FILE*:file::
741
742PyMarshal_ReadObjectFromString:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300743PyMarshal_ReadObjectFromString:const char*:string::
Georg Brandl116aa622007-08-15 14:28:22 +0000744PyMarshal_ReadObjectFromString:int:len::
745
746PyMarshal_WriteObjectToString:PyObject*::+1:
747PyMarshal_WriteObjectToString:PyObject*:value:0:
748
749PyMethod_Class:PyObject*::0:
750PyMethod_Class:PyObject*:im:0:
751
752PyMethod_Function:PyObject*::0:
753PyMethod_Function:PyObject*:im:0:
754
755PyMethod_GET_CLASS:PyObject*::0:
756PyMethod_GET_CLASS:PyObject*:im:0:
757
758PyMethod_GET_FUNCTION:PyObject*::0:
759PyMethod_GET_FUNCTION:PyObject*:im:0:
760
761PyMethod_GET_SELF:PyObject*::0:
762PyMethod_GET_SELF:PyObject*:im:0:
763
764PyMethod_New:PyObject*::+1:
765PyMethod_New:PyObject*:func:0:
766PyMethod_New:PyObject*:self:0:
767PyMethod_New:PyObject*:class:0:
768
769PyMethod_Self:PyObject*::0:
770PyMethod_Self:PyObject*:im:0:
771
772PyModule_GetDict:PyObject*::0:
773PyModule_GetDict::PyObject* module:0:
774
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300775PyModule_GetFilename:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000776PyModule_GetFilename:PyObject*:module:0:
777
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300778PyModule_GetName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000779PyModule_GetName:PyObject*:module:0:
780
781PyModule_New:PyObject*::+1:
782PyModule_New::char* name::
783
784PyNumber_Absolute:PyObject*::+1:
785PyNumber_Absolute:PyObject*:o:0:
786
787PyNumber_Add:PyObject*::+1:
788PyNumber_Add:PyObject*:o1:0:
789PyNumber_Add:PyObject*:o2:0:
790
791PyNumber_And:PyObject*::+1:
792PyNumber_And:PyObject*:o1:0:
793PyNumber_And:PyObject*:o2:0:
794
795PyNumber_Check:PyObject*:o:0:
796PyNumber_Check:int:::
797
798PyNumber_Divide:PyObject*::+1:
799PyNumber_Divide:PyObject*:o1:0:
800PyNumber_Divide:PyObject*:o2:0:
801
802PyNumber_Divmod:PyObject*::+1:
803PyNumber_Divmod:PyObject*:o1:0:
804PyNumber_Divmod:PyObject*:o2:0:
805
806PyNumber_Float:PyObject*::+1:
807PyNumber_Float:PyObject*:o:0:
808
809PyNumber_FloorDivide:PyObject*::+1:
810PyNumber_FloorDivide:PyObject*:v:0:
811PyNumber_FloorDivide:PyObject*:w:0:
812
813PyNumber_InPlaceAdd:PyObject*::+1:
814PyNumber_InPlaceAdd:PyObject*:v:0:
815PyNumber_InPlaceAdd:PyObject*:w:0:
816
817PyNumber_InPlaceAnd:PyObject*::+1:
818PyNumber_InPlaceAnd:PyObject*:v:0:
819PyNumber_InPlaceAnd:PyObject*:w:0:
820
821PyNumber_InPlaceDivide:PyObject*::+1:
822PyNumber_InPlaceDivide:PyObject*:v:0:
823PyNumber_InPlaceDivide:PyObject*:w:0:
824
825PyNumber_InPlaceFloorDivide:PyObject*::+1:
826PyNumber_InPlaceFloorDivide:PyObject*:v:0:
827PyNumber_InPlaceFloorDivide:PyObject*:w:0:
828
829PyNumber_InPlaceLshift:PyObject*::+1:
830PyNumber_InPlaceLshift:PyObject*:v:0:
831PyNumber_InPlaceLshift:PyObject*:w:0:
832
833PyNumber_InPlaceMultiply:PyObject*::+1:
834PyNumber_InPlaceMultiply:PyObject*:v:0:
835PyNumber_InPlaceMultiply:PyObject*:w:0:
836
837PyNumber_InPlaceOr:PyObject*::+1:
838PyNumber_InPlaceOr:PyObject*:v:0:
839PyNumber_InPlaceOr:PyObject*:w:0:
840
841PyNumber_InPlacePower:PyObject*::+1:
842PyNumber_InPlacePower:PyObject*:v:0:
843PyNumber_InPlacePower:PyObject*:w:0:
844PyNumber_InPlacePower:PyObject*:z:0:
845
846PyNumber_InPlaceRemainder:PyObject*::+1:
847PyNumber_InPlaceRemainder:PyObject*:v:0:
848PyNumber_InPlaceRemainder:PyObject*:w:0:
849
850PyNumber_InPlaceRshift:PyObject*::+1:
851PyNumber_InPlaceRshift:PyObject*:v:0:
852PyNumber_InPlaceRshift:PyObject*:w:0:
853
854PyNumber_InPlaceSubtract:PyObject*::+1:
855PyNumber_InPlaceSubtract:PyObject*:v:0:
856PyNumber_InPlaceSubtract:PyObject*:w:0:
857
858PyNumber_InPlaceTrueDivide:PyObject*::+1:
859PyNumber_InPlaceTrueDivide:PyObject*:v:0:
860PyNumber_InPlaceTrueDivide:PyObject*:w:0:
861
862PyNumber_InPlaceXor:PyObject*::+1:
863PyNumber_InPlaceXor:PyObject*:v:0:
864PyNumber_InPlaceXor:PyObject*:w:0:
865
Georg Brandl116aa622007-08-15 14:28:22 +0000866PyNumber_Invert:PyObject*::+1:
867PyNumber_Invert:PyObject*:o:0:
868
869PyNumber_Long:PyObject*::+1:
870PyNumber_Long:PyObject*:o:0:
871
872PyNumber_Lshift:PyObject*::+1:
873PyNumber_Lshift:PyObject*:o1:0:
874PyNumber_Lshift:PyObject*:o2:0:
875
876PyNumber_Multiply:PyObject*::+1:
877PyNumber_Multiply:PyObject*:o1:0:
878PyNumber_Multiply:PyObject*:o2:0:
879
880PyNumber_Negative:PyObject*::+1:
881PyNumber_Negative:PyObject*:o:0:
882
883PyNumber_Or:PyObject*::+1:
884PyNumber_Or:PyObject*:o1:0:
885PyNumber_Or:PyObject*:o2:0:
886
887PyNumber_Positive:PyObject*::+1:
888PyNumber_Positive:PyObject*:o:0:
889
890PyNumber_Power:PyObject*::+1:
891PyNumber_Power:PyObject*:o1:0:
892PyNumber_Power:PyObject*:o2:0:
893PyNumber_Power:PyObject*:o3:0:
894
895PyNumber_Remainder:PyObject*::+1:
896PyNumber_Remainder:PyObject*:o1:0:
897PyNumber_Remainder:PyObject*:o2:0:
898
899PyNumber_Rshift:PyObject*::+1:
900PyNumber_Rshift:PyObject*:o1:0:
901PyNumber_Rshift:PyObject*:o2:0:
902
903PyNumber_Subtract:PyObject*::+1:
904PyNumber_Subtract:PyObject*:o1:0:
905PyNumber_Subtract:PyObject*:o2:0:
906
907PyNumber_TrueDivide:PyObject*::+1:
908PyNumber_TrueDivide:PyObject*:v:0:
909PyNumber_TrueDivide:PyObject*:w:0:
910
911PyNumber_Xor:PyObject*::+1:
912PyNumber_Xor:PyObject*:o1:0:
913PyNumber_Xor:PyObject*:o2:0:
914
Larry Hastingsb0827312014-02-09 22:05:19 -0800915PyObject_AsFileDescriptor:int:::
Georg Brandl116aa622007-08-15 14:28:22 +0000916PyObject_AsFileDescriptor:PyObject*:o:0:
917
918PyObject_Call:PyObject*::+1:
919PyObject_Call:PyObject*:callable_object:0:
920PyObject_Call:PyObject*:args:0:
921PyObject_Call:PyObject*:kw:0:
922
923PyObject_CallFunction:PyObject*::+1:
924PyObject_CallFunction:PyObject*:callable_object:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300925PyObject_CallFunction:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000926PyObject_CallFunction::...::
927
928PyObject_CallFunctionObjArgs:PyObject*::+1:
929PyObject_CallFunctionObjArgs:PyObject*:callable:0:
930PyObject_CallFunctionObjArgs::...::
931
932PyObject_CallMethod:PyObject*::+1:
933PyObject_CallMethod:PyObject*:o:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300934PyObject_CallMethod:const char*:m::
935PyObject_CallMethod:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000936PyObject_CallMethod::...::
937
938PyObject_CallMethodObjArgs:PyObject*::+1:
939PyObject_CallMethodObjArgs:PyObject*:o:0:
Serhiy Storchakadce05502013-05-28 22:46:15 +0300940PyObject_CallMethodObjArgs:PyObject*:name:0:
Georg Brandl116aa622007-08-15 14:28:22 +0000941PyObject_CallMethodObjArgs::...::
942
943PyObject_CallObject:PyObject*::+1:
944PyObject_CallObject:PyObject*:callable_object:0:
945PyObject_CallObject:PyObject*:args:0:
946
947PyObject_Cmp:int:::
948PyObject_Cmp:PyObject*:o1:0:
949PyObject_Cmp:PyObject*:o2:0:
950PyObject_Cmp:int*:result::
951
952PyObject_Compare:int:::
953PyObject_Compare:PyObject*:o1:0:
954PyObject_Compare:PyObject*:o2:0:
955
956PyObject_DelAttr:int:::
957PyObject_DelAttr:PyObject*:o:0:
958PyObject_DelAttr:PyObject*:attr_name:0:
959
960PyObject_DelAttrString:int:::
961PyObject_DelAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300962PyObject_DelAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +0000963
964PyObject_DelItem:int:::
965PyObject_DelItem:PyObject*:o:0:
966PyObject_DelItem:PyObject*:key:0:
967
968PyObject_Dir:PyObject*::+1:
969PyObject_Dir:PyObject*:o:0:
970
971PyObject_GetAttr:PyObject*::+1:
972PyObject_GetAttr:PyObject*:o:0:
973PyObject_GetAttr:PyObject*:attr_name:0:
974
975PyObject_GetAttrString:PyObject*::+1:
976PyObject_GetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300977PyObject_GetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +0000978
979PyObject_GetItem:PyObject*::+1:
980PyObject_GetItem:PyObject*:o:0:
981PyObject_GetItem:PyObject*:key:0:
982
983PyObject_GetIter:PyObject*::+1:
984PyObject_GetIter:PyObject*:o:0:
985
986PyObject_HasAttr:int:::
987PyObject_HasAttr:PyObject*:o:0:
988PyObject_HasAttr:PyObject*:attr_name:0:
989
990PyObject_HasAttrString:int:::
991PyObject_HasAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300992PyObject_HasAttrString:const char*:attr_name:0:
Georg Brandl116aa622007-08-15 14:28:22 +0000993
994PyObject_Hash:int:::
995PyObject_Hash:PyObject*:o:0:
996
997PyObject_IsTrue:int:::
998PyObject_IsTrue:PyObject*:o:0:
999
1000PyObject_Init:PyObject*::0:
1001PyObject_Init:PyObject*:op:0:
1002
1003PyObject_InitVar:PyVarObject*::0:
1004PyObject_InitVar:PyVarObject*:op:0:
1005
1006PyObject_Length:int:::
1007PyObject_Length:PyObject*:o:0:
1008
1009PyObject_NEW:PyObject*::+1:
1010
1011PyObject_New:PyObject*::+1:
1012
1013PyObject_NEW_VAR:PyObject*::+1:
1014
1015PyObject_NewVar:PyObject*::+1:
1016
1017PyObject_Print:int:::
1018PyObject_Print:PyObject*:o:0:
1019PyObject_Print:FILE*:fp::
1020PyObject_Print:int:flags::
1021
1022PyObject_Repr:PyObject*::+1:
1023PyObject_Repr:PyObject*:o:0:
1024
1025PyObject_RichCompare:PyObject*::+1:
1026PyObject_RichCompare:PyObject*:o1:0:
1027PyObject_RichCompare:PyObject*:o2:0:
1028PyObject_RichCompare:int:opid::
1029
1030PyObject_RichCompareBool:int:::
1031PyObject_RichCompareBool:PyObject*:o1:0:
1032PyObject_RichCompareBool:PyObject*:o2:0:
1033PyObject_RichCompareBool:int:opid::
1034
1035PyObject_SetAttr:int:::
1036PyObject_SetAttr:PyObject*:o:0:
1037PyObject_SetAttr:PyObject*:attr_name:0:
1038PyObject_SetAttr:PyObject*:v:+1:
1039
1040PyObject_SetAttrString:int:::
1041PyObject_SetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001042PyObject_SetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +00001043PyObject_SetAttrString:PyObject*:v:+1:
1044
1045PyObject_SetItem:int:::
1046PyObject_SetItem:PyObject*:o:0:
1047PyObject_SetItem:PyObject*:key:0:
1048PyObject_SetItem:PyObject*:v:+1:
1049
1050PyObject_Str:PyObject*::+1:
1051PyObject_Str:PyObject*:o:0:
1052
1053PyObject_Type:PyObject*::+1:
1054PyObject_Type:PyObject*:o:0:
1055
1056PyObject_Unicode:PyObject*::+1:
1057PyObject_Unicode:PyObject*:o:0:
1058
1059PyParser_SimpleParseFile:struct _node*:::
1060PyParser_SimpleParseFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001061PyParser_SimpleParseFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001062PyParser_SimpleParseFile:int:start::
1063
1064PyParser_SimpleParseString:struct _node*:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001065PyParser_SimpleParseString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001066PyParser_SimpleParseString:int:start::
1067
1068PyRun_AnyFile:int:::
1069PyRun_AnyFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001070PyRun_AnyFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001071
1072PyRun_File:PyObject*::+1:??? -- same as eval_code2()
1073PyRun_File:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001074PyRun_File:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001075PyRun_File:int:start::
1076PyRun_File:PyObject*:globals:0:
1077PyRun_File:PyObject*:locals:0:
1078
1079PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1080PyRun_FileEx:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001081PyRun_FileEx:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001082PyRun_FileEx:int:start::
1083PyRun_FileEx:PyObject*:globals:0:
1084PyRun_FileEx:PyObject*:locals:0:
1085PyRun_FileEx:int:closeit::
1086
1087PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1088PyRun_FileFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001089PyRun_FileFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001090PyRun_FileFlags:int:start::
1091PyRun_FileFlags:PyObject*:globals:0:
1092PyRun_FileFlags:PyObject*:locals:0:
1093PyRun_FileFlags:PyCompilerFlags*:flags::
1094
1095PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1096PyRun_FileExFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001097PyRun_FileExFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001098PyRun_FileExFlags:int:start::
1099PyRun_FileExFlags:PyObject*:globals:0:
1100PyRun_FileExFlags:PyObject*:locals:0:
1101PyRun_FileExFlags:int:closeit::
1102PyRun_FileExFlags:PyCompilerFlags*:flags::
1103
1104PyRun_InteractiveLoop:int:::
1105PyRun_InteractiveLoop:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001106PyRun_InteractiveLoop:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001107
1108PyRun_InteractiveOne:int:::
1109PyRun_InteractiveOne:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001110PyRun_InteractiveOne:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001111
1112PyRun_SimpleFile:int:::
1113PyRun_SimpleFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001114PyRun_SimpleFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001115
1116PyRun_SimpleString:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001117PyRun_SimpleString:const char*:command::
Georg Brandl116aa622007-08-15 14:28:22 +00001118
1119PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001120PyRun_String:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001121PyRun_String:int:start::
1122PyRun_String:PyObject*:globals:0:
1123PyRun_String:PyObject*:locals:0:
1124
1125PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001126PyRun_StringFlags:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001127PyRun_StringFlags:int:start::
1128PyRun_StringFlags:PyObject*:globals:0:
1129PyRun_StringFlags:PyObject*:locals:0:
1130PyRun_StringFlags:PyCompilerFlags*:flags::
1131
1132PySeqIter_New:PyObject*::+1:
1133PySeqIter_New:PyObject*:seq::
1134
1135PySequence_Check:int:::
1136PySequence_Check:PyObject*:o:0:
1137
1138PySequence_Concat:PyObject*::+1:
1139PySequence_Concat:PyObject*:o1:0:
1140PySequence_Concat:PyObject*:o2:0:
1141
1142PySequence_Count:int:::
1143PySequence_Count:PyObject*:o:0:
1144PySequence_Count:PyObject*:value:0:
1145
1146PySequence_DelItem:int:::
1147PySequence_DelItem:PyObject*:o:0:
1148PySequence_DelItem:int:i::
1149
1150PySequence_DelSlice:int:::
1151PySequence_DelSlice:PyObject*:o:0:
1152PySequence_DelSlice:int:i1::
1153PySequence_DelSlice:int:i2::
1154
1155PySequence_Fast:PyObject*::+1:
1156PySequence_Fast:PyObject*:v:0:
1157PySequence_Fast:const char*:m::
1158
1159PySequence_Fast_GET_ITEM:PyObject*::0:
1160PySequence_Fast_GET_ITEM:PyObject*:o:0:
1161PySequence_Fast_GET_ITEM:int:i::
1162
1163PySequence_GetItem:PyObject*::+1:
1164PySequence_GetItem:PyObject*:o:0:
1165PySequence_GetItem:int:i::
1166
1167PySequence_GetSlice:PyObject*::+1:
1168PySequence_GetSlice:PyObject*:o:0:
1169PySequence_GetSlice:int:i1::
1170PySequence_GetSlice:int:i2::
1171
1172PySequence_In:int:::
1173PySequence_In:PyObject*:o:0:
1174PySequence_In:PyObject*:value:0:
1175
1176PySequence_Index:int:::
1177PySequence_Index:PyObject*:o:0:
1178PySequence_Index:PyObject*:value:0:
1179
1180PySequence_InPlaceConcat:PyObject*::+1:
1181PySequence_InPlaceConcat:PyObject*:s:0:
1182PySequence_InPlaceConcat:PyObject*:o:0:
1183
1184PySequence_InPlaceRepeat:PyObject*::+1:
1185PySequence_InPlaceRepeat:PyObject*:s:0:
1186PySequence_InPlaceRepeat:PyObject*:o:0:
1187
1188PySequence_ITEM:PyObject*::+1:
1189PySequence_ITEM:PyObject*:o:0:
1190PySequence_ITEM:int:i::
1191
1192PySequence_Repeat:PyObject*::+1:
1193PySequence_Repeat:PyObject*:o:0:
1194PySequence_Repeat:int:count::
1195
1196PySequence_SetItem:int:::
1197PySequence_SetItem:PyObject*:o:0:
1198PySequence_SetItem:int:i::
1199PySequence_SetItem:PyObject*:v:+1:
1200
1201PySequence_SetSlice:int:::
1202PySequence_SetSlice:PyObject*:o:0:
1203PySequence_SetSlice:int:i1::
1204PySequence_SetSlice:int:i2::
1205PySequence_SetSlice:PyObject*:v:+1:
1206
1207PySequence_List:PyObject*::+1:
1208PySequence_List:PyObject*:o:0:
1209
1210PySequence_Tuple:PyObject*::+1:
1211PySequence_Tuple:PyObject*:o:0:
1212
1213PySet_Append:int:::
1214PySet_Append:PyObject*:set:0:
1215PySet_Append:PyObject*:key:+1:
1216
1217PySet_Contains:int:::
1218PySet_Contains:PyObject*:anyset:0:
1219PySet_Contains:PyObject*:key:0:
1220
1221PySet_Discard:int:::
1222PySet_Discard:PyObject*:set:0:
1223PySet_Discard:PyObject*:key:-1:no effect if key not found
1224
1225PySet_New:PyObject*::+1:
1226PySet_New:PyObject*:iterable:0:
1227
1228PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
1229PySet_Pop:PyObject*:set:0:
1230
1231PySet_Size:int:::
1232PySet_Size:PyObject*:anyset:0:
1233
1234PySlice_Check:int:::
1235PySlice_Check:PyObject*:ob:0:
1236
1237PySlice_New:PyObject*::+1:
1238PySlice_New:PyObject*:start:0:
1239PySlice_New:PyObject*:stop:0:
1240PySlice_New:PyObject*:step:0:
1241
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001242PyString_AS_STRING:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001243PyString_AS_STRING:PyObject*:string:0:
1244
1245PyString_AsDecodedObject:PyObject*::+1:
1246PyString_AsDecodedObject:PyObject*:str:0:
1247PyString_AsDecodedObject:const char*:encoding::
1248PyString_AsDecodedObject:const char*:errors::
1249
1250PyString_AsEncodedObject:PyObject*::+1:
1251PyString_AsEncodedObject:PyObject*:str:0:
1252PyString_AsEncodedObject:const char*:encoding::
1253PyString_AsEncodedObject:const char*:errors::
1254
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001255PyString_AsString:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001256PyString_AsString:PyObject*:string:0:
1257
1258PyString_AsStringAndSize:int:::
1259PyString_AsStringAndSize:PyObject*:obj:0:
1260PyString_AsStringAndSize:char**:buffer::
1261PyString_AsStringAndSize:int*:length::
1262
1263PyString_Check:int:::
1264PyString_Check:PyObject*:o:0:
1265
1266PyString_Concat:void:::
1267PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
1268PyString_Concat:PyObject*:newpart:0:
1269
1270PyString_ConcatAndDel:void:::
1271PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
1272PyString_ConcatAndDel:PyObject*:newpart:-1:
1273
1274PyString_Format:PyObject*::+1:
1275PyString_Format:PyObject*:format:0:
1276PyString_Format:PyObject*:args:0:
1277
1278PyString_FromString:PyObject*::+1:
1279PyString_FromString:const char*:v::
1280
1281PyString_FromStringAndSize:PyObject*::+1:
1282PyString_FromStringAndSize:const char*:v::
1283PyString_FromStringAndSize:int:len::
1284
1285PyString_FromFormat:PyObject*::+1:
1286PyString_FromFormat:const char*:format::
1287PyString_FromFormat::...::
1288
1289PyString_FromFormatV:PyObject*::+1:
1290PyString_FromFormatV:const char*:format::
1291PyString_FromFormatV:va_list:vargs::
1292
1293PyString_GET_SIZE:int:::
1294PyString_GET_SIZE:PyObject*:string:0:
1295
1296PyString_InternFromString:PyObject*::+1:
1297PyString_InternFromString:const char*:v::
1298
1299PyString_InternInPlace:void:::
1300PyString_InternInPlace:PyObject**:string:+1:???
1301
1302PyString_Size:int:::
1303PyString_Size:PyObject*:string:0:
1304
1305PyString_Decode:PyObject*::+1:
1306PyString_Decode:const char*:s::
1307PyString_Decode:int:size::
1308PyString_Decode:const char*:encoding::
1309PyString_Decode:const char*:errors::
1310
1311PyString_Encode:PyObject*::+1:
1312PyString_Encode:const char*:s::
1313PyString_Encode:int:size::
1314PyString_Encode:const char*:encoding::
1315PyString_Encode:const char*:errors::
1316
1317PyString_AsEncodedString:PyObject*::+1:
1318PyString_AsEncodedString:PyObject*:str::
1319PyString_AsEncodedString:const char*:encoding::
1320PyString_AsEncodedString:const char*:errors::
1321
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001322PySys_AddWarnOption:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001323PySys_AddWarnOption:const char*:s::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001324
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001325PySys_AddXOption:void:::
1326PySys_AddXOption:const wchar_t*:s::
1327
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001328PySys_GetObject:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001329PySys_GetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001330
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001331PySys_GetXOptions:PyObject*::0:
1332
Georg Brandl116aa622007-08-15 14:28:22 +00001333PySys_SetArgv:int:::
1334PySys_SetArgv:int:argc::
1335PySys_SetArgv:char**:argv::
1336
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001337PySys_SetObject:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001338PySys_SetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001339PySys_SetObject:PyObject*:v:+1:
1340
1341PySys_ResetWarnOptions:void:::
1342
1343PySys_WriteStdout:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001344PySys_WriteStdout:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001345
1346PySys_WriteStderr:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001347PySys_WriteStderr:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001348
Georg Brandl116aa622007-08-15 14:28:22 +00001349PyThreadState_Clear:void:::
1350PyThreadState_Clear:PyThreadState*:tstate::
1351
1352PyThreadState_Delete:void:::
1353PyThreadState_Delete:PyThreadState*:tstate::
1354
1355PyThreadState_Get:PyThreadState*:::
1356
1357PyThreadState_GetDict:PyObject*::0:
1358
1359PyThreadState_New:PyThreadState*:::
1360PyThreadState_New:PyInterpreterState*:interp::
1361
1362PyThreadState_Swap:PyThreadState*:::
1363PyThreadState_Swap:PyThreadState*:tstate::
1364
1365PyTime_FromTime:PyObject*::+1:
1366PyTime_FromTime:int:hour::
1367PyTime_FromTime:int:minute::
1368PyTime_FromTime:int:second::
1369PyTime_FromTime:int:usecond::
1370
1371PyTuple_Check:int:::
1372PyTuple_Check:PyObject*:p:0:
1373
1374PyTuple_GET_ITEM:PyObject*::0:
1375PyTuple_GET_ITEM:PyTupleObject*:p:0:
1376PyTuple_GET_ITEM:int:pos::
1377
1378PyTuple_GetItem:PyObject*::0:
1379PyTuple_GetItem:PyTupleObject*:p:0:
1380PyTuple_GetItem:int:pos::
1381
1382PyTuple_GetSlice:PyObject*::+1:
1383PyTuple_GetSlice:PyTupleObject*:p:0:
1384PyTuple_GetSlice:int:low::
1385PyTuple_GetSlice:int:high::
1386
1387PyTuple_New:PyObject*::+1:
1388PyTuple_New:int:len::
1389
1390PyTuple_Pack:PyObject*::+1:
1391PyTuple_Pack:int:len::
1392PyTuple_Pack:PyObject*:...:0:
1393
1394PyTuple_SET_ITEM:void:::
1395PyTuple_SET_ITEM:PyTupleObject*:p:0:
1396PyTuple_SET_ITEM:int:pos::
1397PyTuple_SET_ITEM:PyObject*:o:0:
1398
1399PyTuple_SetItem:int:::
1400PyTuple_SetItem:PyTupleObject*:p:0:
1401PyTuple_SetItem:int:pos::
1402PyTuple_SetItem:PyObject*:o:0:
1403
1404PyTuple_Size:int:::
1405PyTuple_Size:PyTupleObject*:p:0:
1406
1407PyType_GenericAlloc:PyObject*::+1:
1408PyType_GenericAlloc:PyObject*:type:0:
1409PyType_GenericAlloc:int:nitems:0:
1410
1411PyType_GenericNew:PyObject*::+1:
1412PyType_GenericNew:PyObject*:type:0:
1413PyType_GenericNew:PyObject*:args:0:
1414PyType_GenericNew:PyObject*:kwds:0:
1415
1416PyUnicode_Check:int:::
1417PyUnicode_Check:PyObject*:o:0:
1418
1419PyUnicode_GET_SIZE:int:::
1420PyUnicode_GET_SIZE:PyObject*:o:0:
1421
1422PyUnicode_GET_DATA_SIZE:int:::
1423PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1424
1425PyUnicode_AS_UNICODE:Py_UNICODE*:::
1426PyUnicode_AS_UNICODE:PyObject*:o:0:
1427
1428PyUnicode_AS_DATA:const char*:::
1429PyUnicode_AS_DATA:PyObject*:o:0:
1430
1431Py_UNICODE_ISSPACE:int:::
1432Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1433
1434Py_UNICODE_ISLOWER:int:::
1435Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1436
1437Py_UNICODE_ISUPPER:int:::
1438Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1439
1440Py_UNICODE_ISTITLE:int:::
1441Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1442
1443Py_UNICODE_ISLINEBREAK:int:::
1444Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1445
1446Py_UNICODE_ISDECIMAL:int:::
1447Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1448
1449Py_UNICODE_ISDIGIT:int:::
1450Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1451
1452Py_UNICODE_ISNUMERIC:int:::
1453Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1454
1455Py_UNICODE_TOLOWER:Py_UNICODE:::
1456Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1457
1458Py_UNICODE_TOUPPER:Py_UNICODE:::
1459Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1460
1461Py_UNICODE_TOTITLE:Py_UNICODE:::
1462Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1463
1464Py_UNICODE_TODECIMAL:int:::
1465Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1466
1467Py_UNICODE_TODIGIT:int:::
1468Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1469
1470Py_UNICODE_TONUMERIC:double:::
1471Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1472
1473PyUnicode_FromUnicode:PyObject*::+1:
1474PyUnicode_FromUnicode:const Py_UNICODE*:u::
1475PyUnicode_FromUnicode:int:size::
1476
1477PyUnicode_AsUnicode:Py_UNICODE*:::
1478PyUnicode_AsUnicode:PyObject :*unicode:0:
1479
1480PyUnicode_GetSize:int:::
1481PyUnicode_GetSize:PyObject :*unicode:0:
1482
1483PyUnicode_FromObject:PyObject*::+1:
1484PyUnicode_FromObject:PyObject*:*obj:0:
1485
1486PyUnicode_FromEncodedObject:PyObject*::+1:
1487PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1488PyUnicode_FromEncodedObject:const char*:encoding::
1489PyUnicode_FromEncodedObject:const char*:errors::
1490
1491PyUnicode_FromWideChar:PyObject*::+1:
1492PyUnicode_FromWideChar:const wchar_t*:w::
1493PyUnicode_FromWideChar:int:size::
1494
1495PyUnicode_AsWideChar:int:::
1496PyUnicode_AsWideChar:PyObject*:*unicode:0:
1497PyUnicode_AsWideChar:wchar_t*:w::
1498PyUnicode_AsWideChar:int:size::
1499
1500PyUnicode_Decode:PyObject*::+1:
1501PyUnicode_Decode:const char*:s::
1502PyUnicode_Decode:int:size::
1503PyUnicode_Decode:const char*:encoding::
1504PyUnicode_Decode:const char*:errors::
1505
1506PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1507PyUnicode_DecodeUTF16Stateful:const char*:s::
1508PyUnicode_DecodeUTF16Stateful:int:size::
1509PyUnicode_DecodeUTF16Stateful:const char*:errors::
1510PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1511PyUnicode_DecodeUTF16Stateful:int*:consumed::
1512
1513PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1514PyUnicode_DecodeUTF8Stateful:const char*:s::
1515PyUnicode_DecodeUTF8Stateful:int:size::
1516PyUnicode_DecodeUTF8Stateful:const char*:errors::
1517PyUnicode_DecodeUTF8Stateful:int*:consumed::
1518
1519PyUnicode_Encode:PyObject*::+1:
1520PyUnicode_Encode:const Py_UNICODE*:s::
1521PyUnicode_Encode:int:size::
1522PyUnicode_Encode:const char*:encoding::
1523PyUnicode_Encode:const char*:errors::
1524
1525PyUnicode_AsEncodedString:PyObject*::+1:
1526PyUnicode_AsEncodedString:PyObject*:unicode::
1527PyUnicode_AsEncodedString:const char*:encoding::
1528PyUnicode_AsEncodedString:const char*:errors::
1529
1530PyUnicode_DecodeUTF8:PyObject*::+1:
1531PyUnicode_DecodeUTF8:const char*:s::
1532PyUnicode_DecodeUTF8:int:size::
1533PyUnicode_DecodeUTF8:const char*:errors::
1534
1535PyUnicode_EncodeUTF8:PyObject*::+1:
1536PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1537PyUnicode_EncodeUTF8:int:size::
1538PyUnicode_EncodeUTF8:const char*:errors::
1539
1540PyUnicode_AsUTF8String:PyObject*::+1:
1541PyUnicode_AsUTF8String:PyObject*:unicode::
1542
1543PyUnicode_DecodeUTF16:PyObject*::+1:
1544PyUnicode_DecodeUTF16:const char*:s::
1545PyUnicode_DecodeUTF16:int:size::
1546PyUnicode_DecodeUTF16:const char*:errors::
1547PyUnicode_DecodeUTF16:int*:byteorder::
1548
1549PyUnicode_EncodeUTF16:PyObject*::+1:
1550PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1551PyUnicode_EncodeUTF16:int:size::
1552PyUnicode_EncodeUTF16:const char*:errors::
1553PyUnicode_EncodeUTF16:int:byteorder::
1554
1555PyUnicode_AsUTF16String:PyObject*::+1:
1556PyUnicode_AsUTF16String:PyObject*:unicode::
1557
1558PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1559PyUnicode_DecodeUnicodeEscape:const char*:s::
1560PyUnicode_DecodeUnicodeEscape:int:size::
1561PyUnicode_DecodeUnicodeEscape:const char*:errors::
1562
1563PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1564PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1565PyUnicode_EncodeUnicodeEscape:int:size::
1566PyUnicode_EncodeUnicodeEscape:const char*:errors::
1567
1568PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1569PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1570
1571PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1572PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1573PyUnicode_DecodeRawUnicodeEscape:int:size::
1574PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1575
1576PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1577PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1578PyUnicode_EncodeRawUnicodeEscape:int:size::
1579PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1580
1581PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1582PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1583
1584PyUnicode_DecodeLatin1:PyObject*::+1:
1585PyUnicode_DecodeLatin1:const char*:s::
1586PyUnicode_DecodeLatin1:int:size::
1587PyUnicode_DecodeLatin1:const char*:errors::
1588
1589PyUnicode_EncodeLatin1:PyObject*::+1:
1590PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1591PyUnicode_EncodeLatin1:int:size::
1592PyUnicode_EncodeLatin1:const char*:errors::
1593
1594PyUnicode_AsLatin1String:PyObject*::+1:
1595PyUnicode_AsLatin1String:PyObject*:unicode::
1596
1597PyUnicode_DecodeASCII:PyObject*::+1:
1598PyUnicode_DecodeASCII:const char*:s::
1599PyUnicode_DecodeASCII:int:size::
1600PyUnicode_DecodeASCII:const char*:errors::
1601
1602PyUnicode_EncodeASCII:PyObject*::+1:
1603PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1604PyUnicode_EncodeASCII:int:size::
1605PyUnicode_EncodeASCII:const char*:errors::
1606
1607PyUnicode_AsASCIIString:PyObject*::+1:
1608PyUnicode_AsASCIIString:PyObject*:unicode::
1609
1610PyUnicode_DecodeCharmap:PyObject*::+1:
1611PyUnicode_DecodeCharmap:const char*:s::
1612PyUnicode_DecodeCharmap:int:size::
1613PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1614PyUnicode_DecodeCharmap:const char*:errors::
1615
1616PyUnicode_EncodeCharmap:PyObject*::+1:
1617PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1618PyUnicode_EncodeCharmap:int:size::
1619PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1620PyUnicode_EncodeCharmap:const char*:errors::
1621
1622PyUnicode_AsCharmapString:PyObject*::+1:
1623PyUnicode_AsCharmapString:PyObject*:unicode:0:
1624PyUnicode_AsCharmapString:PyObject*:mapping:0:
1625
1626PyUnicode_TranslateCharmap:PyObject*::+1:
1627PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1628PyUnicode_TranslateCharmap:int:size::
1629PyUnicode_TranslateCharmap:PyObject*:table:0:
1630PyUnicode_TranslateCharmap:const char*:errors::
1631
1632PyUnicode_DecodeMBCS:PyObject*::+1:
1633PyUnicode_DecodeMBCS:const char*:s::
1634PyUnicode_DecodeMBCS:int:size::
1635PyUnicode_DecodeMBCS:const char*:errors::
1636
1637PyUnicode_EncodeMBCS:PyObject*::+1:
1638PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1639PyUnicode_EncodeMBCS:int:size::
1640PyUnicode_EncodeMBCS:const char*:errors::
1641
1642PyUnicode_AsMBCSString:PyObject*::+1:
1643PyUnicode_AsMBCSString:PyObject*:unicode::
1644
1645PyUnicode_Concat:PyObject*::+1:
1646PyUnicode_Concat:PyObject*:left:0:
1647PyUnicode_Concat:PyObject*:right:0:
1648
1649PyUnicode_Split:PyObject*::+1:
1650PyUnicode_Split:PyObject*:left:0:
1651PyUnicode_Split:PyObject*:right:0:
1652PyUnicode_Split:int:maxsplit::
1653
1654PyUnicode_Splitlines:PyObject*::+1:
1655PyUnicode_Splitlines:PyObject*:s:0:
1656PyUnicode_Splitlines:int:maxsplit::
1657
1658PyUnicode_Translate:PyObject*::+1:
1659PyUnicode_Translate:PyObject*:str:0:
1660PyUnicode_Translate:PyObject*:table:0:
1661PyUnicode_Translate:const char*:errors::
1662
1663PyUnicode_Join:PyObject*::+1:
1664PyUnicode_Join:PyObject*:separator:0:
1665PyUnicode_Join:PyObject*:seq:0:
1666
Benjamin Peterson5e55b3e2010-02-03 02:35:45 +00001667PyUnicode_Tailmatch:int:::
Georg Brandl116aa622007-08-15 14:28:22 +00001668PyUnicode_Tailmatch:PyObject*:str:0:
1669PyUnicode_Tailmatch:PyObject*:substr:0:
1670PyUnicode_Tailmatch:int:start::
1671PyUnicode_Tailmatch:int:end::
1672PyUnicode_Tailmatch:int:direction::
1673
1674PyUnicode_Find:int:::
1675PyUnicode_Find:PyObject*:str:0:
1676PyUnicode_Find:PyObject*:substr:0:
1677PyUnicode_Find:int:start::
1678PyUnicode_Find:int:end::
1679PyUnicode_Find:int:direction::
1680
1681PyUnicode_Count:int:::
1682PyUnicode_Count:PyObject*:str:0:
1683PyUnicode_Count:PyObject*:substr:0:
1684PyUnicode_Count:int:start::
1685PyUnicode_Count:int:end::
1686
1687PyUnicode_Replace:PyObject*::+1:
1688PyUnicode_Replace:PyObject*:str:0:
1689PyUnicode_Replace:PyObject*:substr:0:
1690PyUnicode_Replace:PyObject*:replstr:0:
1691PyUnicode_Replace:int:maxcount::
1692
1693PyUnicode_Compare:int:::
1694PyUnicode_Compare:PyObject*:left:0:
1695PyUnicode_Compare:PyObject*:right:0:
1696
1697PyUnicode_Format:PyObject*::+1:
1698PyUnicode_Format:PyObject*:format:0:
1699PyUnicode_Format:PyObject*:args:0:
1700
1701PyUnicode_Contains:int:::
1702PyUnicode_Contains:PyObject*:container:0:
1703PyUnicode_Contains:PyObject*:element:0:
1704
1705PyWeakref_GET_OBJECT:PyObject*::0:
1706PyWeakref_GET_OBJECT:PyObject*:ref:0:
1707
1708PyWeakref_GetObject:PyObject*::0:
1709PyWeakref_GetObject:PyObject*:ref:0:
1710
1711PyWeakref_NewProxy:PyObject*::+1:
1712PyWeakref_NewProxy:PyObject*:ob:0:
1713PyWeakref_NewProxy:PyObject*:callback:0:
1714
1715PyWeakref_NewRef:PyObject*::+1:
1716PyWeakref_NewRef:PyObject*:ob:0:
1717PyWeakref_NewRef:PyObject*:callback:0:
1718
1719PyWrapper_New:PyObject*::+1:
1720PyWrapper_New:PyObject*:d:0:
1721PyWrapper_New:PyObject*:self:0:
1722
1723Py_AtExit:int:::
1724Py_AtExit:void (*)():func::
1725
1726Py_BuildValue:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001727Py_BuildValue:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +00001728
1729Py_CompileString:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001730Py_CompileString:const char*:str::
1731Py_CompileString:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001732Py_CompileString:int:start::
1733
1734Py_CompileStringFlags:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001735Py_CompileStringFlags:const char*:str::
1736Py_CompileStringFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001737Py_CompileStringFlags:int:start::
1738Py_CompileStringFlags:PyCompilerFlags*:flags::
1739
1740Py_DECREF:void:::
1741Py_DECREF:PyObject*:o:-1:
1742
1743Py_EndInterpreter:void:::
1744Py_EndInterpreter:PyThreadState*:tstate::
1745
1746Py_Exit:void:::
1747Py_Exit:int:status::
1748
1749Py_FatalError:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001750Py_FatalError:const char*:message::
Georg Brandl116aa622007-08-15 14:28:22 +00001751
1752Py_FdIsInteractive:int:::
1753Py_FdIsInteractive:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001754Py_FdIsInteractive:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001755
1756Py_Finalize:void:::
1757
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001758Py_GetBuildInfoconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001759
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001760Py_GetCompilerconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001761
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001762Py_GetCopyrightconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001763
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001764Py_GetExecPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001765
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001766Py_GetPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001767
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001768Py_GetPlatformconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001769
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001770Py_GetPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001771
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001772Py_GetProgramFullPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001773
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001774Py_GetProgramName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001775
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001776Py_GetVersionconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001777
1778Py_INCREF:void:::
1779Py_INCREF:PyObject*:o:+1:
1780
1781Py_Initialize:void:::
1782
1783Py_IsInitialized:int:::
1784
1785Py_NewInterpreter:PyThreadState*:::
1786
1787Py_SetProgramName:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001788Py_SetProgramName:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +00001789
1790Py_XDECREF:void:::
1791Py_XDECREF:PyObject*:o:-1:if o is not NULL
1792
1793Py_XINCREF:void:::
1794Py_XINCREF:PyObject*:o:+1:if o is not NULL
1795
1796_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001797_PyImport_FindExtension:const char*:::
1798_PyImport_FindExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001799
1800_PyImport_Fini:void:::
1801
1802_PyImport_FixupExtension:PyObject*:::???
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001803_PyImport_FixupExtension:const char*:::
1804_PyImport_FixupExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001805
1806_PyImport_Init:void:::
1807
Georg Brandl116aa622007-08-15 14:28:22 +00001808_PyObject_New:PyObject*::+1:
1809_PyObject_New:PyTypeObject*:type:0:
1810
1811_PyObject_NewVar:PyObject*::+1:
1812_PyObject_NewVar:PyTypeObject*:type:0:
1813_PyObject_NewVar:int:size::
1814
1815_PyString_Resize:int:::
1816_PyString_Resize:PyObject**:string:+1:
1817_PyString_Resize:int:newsize::
1818
1819_PyTuple_Resize:int:::
1820_PyTuple_Resize:PyTupleObject**:p:+1:
1821_PyTuple_Resize:int:new::
1822
1823_Py_c_diff:Py_complex:::
1824_Py_c_diff:Py_complex:left::
1825_Py_c_diff:Py_complex:right::
1826
1827_Py_c_neg:Py_complex:::
1828_Py_c_neg:Py_complex:complex::
1829
1830_Py_c_pow:Py_complex:::
1831_Py_c_pow:Py_complex:num::
1832_Py_c_pow:Py_complex:exp::
1833
1834_Py_c_prod:Py_complex:::
1835_Py_c_prod:Py_complex:left::
1836_Py_c_prod:Py_complex:right::
1837
1838_Py_c_quot:Py_complex:::
1839_Py_c_quot:Py_complex:dividend::
1840_Py_c_quot:Py_complex:divisor::
1841
1842_Py_c_sum:Py_complex:::
1843_Py_c_sum:Py_complex:left::
1844_Py_c_sum:Py_complex:right::