blob: 2585a48620f816529ea851069625088b14628789 [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
Larry Hastingsb0827312014-02-09 22:05:19 -0800320PyErr_SetExcFromWindowsErrWithFilenames:PyObject*::null:
321PyErr_SetExcFromWindowsErrWithFilenames:PyObject*:type:0:
322PyErr_SetExcFromWindowsErrWithFilenames:int:ierr::
323PyErr_SetExcFromWindowsErrWithFilenames:const char*:filename::
324PyErr_SetExcFromWindowsErrWithFilenames:const char*:filename2::
325
Georg Brandl116aa622007-08-15 14:28:22 +0000326PyErr_SetFromErrno:PyObject*::null:
327PyErr_SetFromErrno:PyObject*:type:0:
328
329PyErr_SetFromErrnoWithFilename:PyObject*::null:
330PyErr_SetFromErrnoWithFilename:PyObject*:type:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300331PyErr_SetFromErrnoWithFilename:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +0000332
Larry Hastingsb0827312014-02-09 22:05:19 -0800333PyErr_SetFromErrnoWithFilenames:PyObject*::null:
334PyErr_SetFromErrnoWithFilenames:PyObject*:type:0:
335PyErr_SetFromErrnoWithFilenames:const char*:filename::
336PyErr_SetFromErrnoWithFilenames:const char*:filename2::
337
Georg Brandl116aa622007-08-15 14:28:22 +0000338PyErr_SetFromWindowsErr:PyObject*::null:
339PyErr_SetFromWindowsErr:int:ierr::
340
341PyErr_SetFromWindowsErrWithFilename:PyObject*::null:
342PyErr_SetFromWindowsErrWithFilename:int:ierr::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300343PyErr_SetFromWindowsErrWithFilename:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +0000344
Larry Hastingsb0827312014-02-09 22:05:19 -0800345PyErr_SetFromWindowsErrWithFilenames:PyObject*::null:
346PyErr_SetFromWindowsErrWithFilenames:int:ierr::
347PyErr_SetFromWindowsErrWithFilenames:const char*:filename::
348PyErr_SetFromWindowsErrWithFilenames:const char*:filename2::
349
Georg Brandl116aa622007-08-15 14:28:22 +0000350PyErr_SetInterrupt:void:::
351
352PyErr_SetNone:void:::
353PyErr_SetNone:PyObject*:type:+1:
354
355PyErr_SetObject:void:::
356PyErr_SetObject:PyObject*:type:+1:
357PyErr_SetObject:PyObject*:value:+1:
358
359PyErr_SetString:void:::
360PyErr_SetString:PyObject*:type:+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300361PyErr_SetString:const char*:message::
Georg Brandl116aa622007-08-15 14:28:22 +0000362
363PyErr_Format:PyObject*::null:
364PyErr_Format:PyObject*:exception:+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300365PyErr_Format:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000366PyErr_Format::...::
367
368PyErr_WarnEx:int:::
369PyErr_WarnEx:PyObject*:category:0:
370PyErr_WarnEx:const char*:message::
371PyErr_WarnEx:Py_ssize_t:stack_level::
372
373PyEval_AcquireLock:void:::
374
375PyEval_AcquireThread:void:::
376PyEval_AcquireThread:PyThreadState*:tstate::
377
Christian Heimesd8654cf2007-12-02 15:22:16 +0000378PyEval_GetBuiltins:PyObject*::0:
379PyEval_GetLocals:PyObject*::0:
380PyEval_GetGlobals:PyObject*::0:
381PyEval_GetFrame:PyObject*::0:
382
Georg Brandl116aa622007-08-15 14:28:22 +0000383PyEval_InitThreads:void:::
384
385PyEval_ReleaseLock:void:::
386
387PyEval_ReleaseThread:void:::
388PyEval_ReleaseThread:PyThreadState*:tstate::
389
390PyEval_RestoreThread:void:::
391PyEval_RestoreThread:PyThreadState*:tstate::
392
393PyEval_SaveThread:PyThreadState*:::
394
395PyEval_EvalCode:PyObject*::+1:
396PyEval_EvalCode:PyCodeObject*:co:0:
397PyEval_EvalCode:PyObject*:globals:0:
398PyEval_EvalCode:PyObject*:locals:0:
399
Petri Lehtinence770372011-10-23 21:03:33 +0300400PyException_GetTraceback:PyObject*::+1:
401
Georg Brandl116aa622007-08-15 14:28:22 +0000402PyFile_AsFile:FILE*:::
403PyFile_AsFile:PyFileObject*:p:0:
404
405PyFile_Check:int:::
406PyFile_Check:PyObject*:p:0:
407
408PyFile_FromFile:PyObject*::+1:
409PyFile_FromFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300410PyFile_FromFile:const char*:name::
411PyFile_FromFile:const char*:mode::
Georg Brandl116aa622007-08-15 14:28:22 +0000412PyFile_FromFile:int(*:close)::
413
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000414PyFile_FromFileEx:PyObject*::+1:
415PyFile_FromFileEx:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300416PyFile_FromFileEx:const char*:name::
417PyFile_FromFileEx:const char*:mode::
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000418PyFile_FromFileEx:int(*:close)::
419PyFile_FromFileEx:int:buffering::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300420PyFile_FromFileEx:const char*:encoding::
421PyFile_FromFileEx:const char*:newline::
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000422
Georg Brandl116aa622007-08-15 14:28:22 +0000423PyFile_FromString:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300424PyFile_FromString:const char*:name::
425PyFile_FromString:const char*:mode::
Georg Brandl116aa622007-08-15 14:28:22 +0000426
427PyFile_GetLine:PyObject*::+1:
428PyFile_GetLine:PyObject*:p::
429PyFile_GetLine:int:n::
430
431PyFile_Name:PyObject*::0:
432PyFile_Name:PyObject*:p:0:
433
434PyFile_SetBufSize:void:::
435PyFile_SetBufSize:PyFileObject*:p:0:
436PyFile_SetBufSize:int:n::
437
438PyFile_SoftSpace:int:::
439PyFile_SoftSpace:PyFileObject*:p:0:
440PyFile_SoftSpace:int:newflag::
441
442PyFile_WriteObject:int:::
443PyFile_WriteObject:PyObject*:obj:0:
444PyFile_WriteObject:PyFileObject*:p:0:
445PyFile_WriteObject:int:flags::
446
447PyFile_WriteString:int:::
448PyFile_WriteString:const char*:s::
449PyFile_WriteString:PyFileObject*:p:0:
450PyFile_WriteString:int:flags::
451
452PyFloat_AS_DOUBLE:double:::
453PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
454
455PyFloat_AsDouble:double:::
456PyFloat_AsDouble:PyObject*:pyfloat:0:
457
458PyFloat_Check:int:::
459PyFloat_Check:PyObject*:p:0:
460
461PyFloat_FromDouble:PyObject*::+1:
462PyFloat_FromDouble:double:v::
463
464PyFloat_FromString:PyObject*::+1:
465PyFloat_FromString:PyObject*:str:0:
466
467PyFrozenSet_New:PyObject*::+1:
468PyFrozenSet_New:PyObject*:iterable:0:
469
470PyFunction_GetClosure:PyObject*::0:
471PyFunction_GetClosure:PyObject*:op:0:
472
473PyFunction_GetCode:PyObject*::0:
474PyFunction_GetCode:PyObject*:op:0:
475
476PyFunction_GetDefaults:PyObject*::0:
477PyFunction_GetDefaults:PyObject*:op:0:
478
479PyFunction_GetGlobals:PyObject*::0:
480PyFunction_GetGlobals:PyObject*:op:0:
481
482PyFunction_GetModule:PyObject*::0:
483PyFunction_GetModule:PyObject*:op:0:
484
485PyFunction_New:PyObject*::+1:
486PyFunction_New:PyObject*:code:+1:
487PyFunction_New:PyObject*:globals:+1:
488
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100489PyFunction_NewWithQualName:PyObject*::+1:
490PyFunction_NewWithQualName:PyObject*:code:+1:
491PyFunction_NewWithQualName:PyObject*:globals:+1:
492PyFunction_NewWithQualName:PyObject*:qualname:+1:
493
Georg Brandl116aa622007-08-15 14:28:22 +0000494PyFunction_SetClosure:int:::
495PyFunction_SetClosure:PyObject*:op:0:
496PyFunction_SetClosure:PyObject*:closure:+1:
497
498PyFunction_SetDefaults:int:::
499PyFunction_SetDefaults:PyObject*:op:0:
500PyFunction_SetDefaults:PyObject*:defaults:+1:
501
502PyGen_New:PyObject*::+1:
503PyGen_New:PyFrameObject*:frame:0:
504
505Py_InitModule:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300506Py_InitModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000507Py_InitModule:PyMethodDef[]:methods::
508
509Py_InitModule3:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300510Py_InitModule3:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000511Py_InitModule3:PyMethodDef[]:methods::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300512Py_InitModule3:const char*:doc::
Georg Brandl116aa622007-08-15 14:28:22 +0000513
514Py_InitModule4:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300515Py_InitModule4:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000516Py_InitModule4:PyMethodDef[]:methods::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300517Py_InitModule4:const char*:doc::
Georg Brandl116aa622007-08-15 14:28:22 +0000518Py_InitModule4:PyObject*:self::
519Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
520
521PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300522PyImport_AddModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000523
524PyImport_Cleanup:void:::
525
526PyImport_ExecCodeModule:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300527PyImport_ExecCodeModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000528PyImport_ExecCodeModule:PyObject*:co:0:
529
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000530PyImport_ExecCodeModuleEx:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300531PyImport_ExecCodeModuleEx:const char*:name::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000532PyImport_ExecCodeModuleEx:PyObject*:co:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300533PyImport_ExecCodeModuleEx:const char*:pathname::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000534
Georg Brandl116aa622007-08-15 14:28:22 +0000535PyImport_GetMagicNumber:long:::
536
537PyImport_GetModuleDict:PyObject*::0:
538
539PyImport_Import:PyObject*::+1:
540PyImport_Import:PyObject*:name:0:
541
542PyImport_ImportFrozenModule:int:::
Serhiy Storchakac6792272013-10-19 21:03:34 +0300543PyImport_ImportFrozenModule:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000544
545PyImport_ImportModule:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300546PyImport_ImportModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000547
548PyImport_ImportModuleEx:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300549PyImport_ImportModuleEx:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000550PyImport_ImportModuleEx:PyObject*:globals:0:???
551PyImport_ImportModuleEx:PyObject*:locals:0:???
552PyImport_ImportModuleEx:PyObject*:fromlist:0:???
553
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000554PyImport_ImportModuleLevel:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300555PyImport_ImportModuleLevel:const char*:name::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000556PyImport_ImportModuleLevel:PyObject*:globals:0:???
557PyImport_ImportModuleLevel:PyObject*:locals:0:???
558PyImport_ImportModuleLevel:PyObject*:fromlist:0:???
559PyImport_ImportModuleLevel:int:level::
560
Georg Brandl116aa622007-08-15 14:28:22 +0000561PyImport_ReloadModule:PyObject*::+1:
562PyImport_ReloadModule:PyObject*:m:0:
563
564PyInstance_New:PyObject*::+1:
565PyInstance_New:PyObject*:klass:+1:
566PyInstance_New:PyObject*:arg:0:
567PyInstance_New:PyObject*:kw:0:
568
569PyInstance_NewRaw:PyObject*::+1:
570PyInstance_NewRaw:PyObject*:klass:+1:
571PyInstance_NewRaw:PyObject*:dict:+1:
572
573PyInt_AS_LONG:long:::
574PyInt_AS_LONG:PyIntObject*:io:0:
575
576PyInt_AsLong:long:::
577PyInt_AsLong:PyObject*:io:0:
578
579PyInt_Check:int:::
580PyInt_Check:PyObject*:op:0:
581
582PyInt_FromLong:PyObject*::+1:
583PyInt_FromLong:long:ival::
584
585PyInt_FromString:PyObject*::+1:
586PyInt_FromString:char*:str:0:
587PyInt_FromString:char**:pend:0:
588PyInt_FromString:int:base:0:
589
590PyInt_FromSsize_t:PyObject*::+1:
591PyInt_FromSsize_t:Py_ssize_t:ival::
592
593PyInt_GetMax:long:::
594
595PyInterpreterState_Clear:void:::
596PyInterpreterState_Clear:PyInterpreterState*:interp::
597
598PyInterpreterState_Delete:void:::
599PyInterpreterState_Delete:PyInterpreterState*:interp::
600
601PyInterpreterState_New:PyInterpreterState*:::
602
603PyIter_Check:int:o:0:
604
605PyIter_Next:PyObject*::+1:
606PyIter_Next:PyObject*:o:0:
607
608PyList_Append:int:::
609PyList_Append:PyObject*:list:0:
610PyList_Append:PyObject*:item:+1:
611
612PyList_AsTuple:PyObject*::+1:
613PyList_AsTuple:PyObject*:list:0:
614
615PyList_Check:int:::
616PyList_Check:PyObject*:p:0:
617
618PyList_GET_ITEM:PyObject*::0:
619PyList_GET_ITEM:PyObject*:list:0:
620PyList_GET_ITEM:int:i:0:
621
622PyList_GET_SIZE:int:::
623PyList_GET_SIZE:PyObject*:list:0:
624
625PyList_GetItem:PyObject*::0:
626PyList_GetItem:PyObject*:list:0:
627PyList_GetItem:int:index::
628
629PyList_GetSlice:PyObject*::+1:
630PyList_GetSlice:PyObject*:list:0:
631PyList_GetSlice:int:low::
632PyList_GetSlice:int:high::
633
634PyList_Insert:int:::
635PyList_Insert:PyObject*:list:0:
636PyList_Insert:int:index::
637PyList_Insert:PyObject*:item:+1:
638
639PyList_New:PyObject*::+1:
640PyList_New:int:len::
641
642PyList_Reverse:int:::
643PyList_Reverse:PyObject*:list:0:
644
645PyList_SET_ITEM:void:::
646PyList_SET_ITEM:PyObject*:list:0:
647PyList_SET_ITEM:int:i::
648PyList_SET_ITEM:PyObject*:o:0:
649
650PyList_SetItem:int:::
651PyList_SetItem:PyObject*:list:0:
652PyList_SetItem:int:index::
653PyList_SetItem:PyObject*:item:0:
654
655PyList_SetSlice:int:::
656PyList_SetSlice:PyObject*:list:0:
657PyList_SetSlice:int:low::
658PyList_SetSlice:int:high::
659PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
660
661PyList_Size:int:::
662PyList_Size:PyObject*:list:0:
663
664PyList_Sort:int:::
665PyList_Sort:PyObject*:list:0:
666
667PyLong_AsDouble:double:::
668PyLong_AsDouble:PyObject*:pylong:0:
669
670PyLong_AsLong:long:::
671PyLong_AsLong:PyObject*:pylong:0:
672
673PyLong_AsUnsignedLong:unsigned long:::
674PyLong_AsUnsignedLong:PyObject*:pylong:0:
675
676PyLong_Check:int:::
677PyLong_Check:PyObject*:p:0:
678
679PyLong_FromDouble:PyObject*::+1:
680PyLong_FromDouble:double:v::
681
682PyLong_FromLong:PyObject*::+1:
683PyLong_FromLong:long:v::
684
685PyLong_FromLongLong:PyObject*::+1:
686PyLong_FromLongLong:long long:v::
687
688PyLong_FromUnsignedLongLong:PyObject*::+1:
689PyLong_FromUnsignedLongLong:unsigned long long:v::
690
691PyLong_FromString:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300692PyLong_FromString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +0000693PyLong_FromString:char**:pend::
694PyLong_FromString:int:base::
695
696PyLong_FromUnicode:PyObject*::+1:
697PyLong_FromUnicode:Py_UNICODE:u::
698PyLong_FromUnicode:int:length::
699PyLong_FromUnicode:int:base::
700
701PyLong_FromUnsignedLong:PyObject*::+1:
702PyLong_FromUnsignedLong:unsignedlong:v::
703
704PyLong_FromVoidPtr:PyObject*::+1:
705PyLong_FromVoidPtr:void*:p::
706
707PyMapping_Check:int:::
708PyMapping_Check:PyObject*:o:0:
709
710PyMapping_DelItem:int:::
711PyMapping_DelItem:PyObject*:o:0:
712PyMapping_DelItem:PyObject*:key:0:
713
714PyMapping_DelItemString:int:::
715PyMapping_DelItemString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300716PyMapping_DelItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000717
718PyMapping_GetItemString:PyObject*::+1:
719PyMapping_GetItemString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300720PyMapping_GetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000721
722PyMapping_HasKey:int:::
723PyMapping_HasKey:PyObject*:o:0:
724PyMapping_HasKey:PyObject*:key::
725
726PyMapping_HasKeyString:int:::
727PyMapping_HasKeyString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300728PyMapping_HasKeyString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000729
730PyMapping_Items:PyObject*::+1:
731PyMapping_Items:PyObject*:o:0:
732
733PyMapping_Keys:PyObject*::+1:
734PyMapping_Keys:PyObject*:o:0:
735
736PyMapping_Length:int:::
737PyMapping_Length:PyObject*:o:0:
738
739PyMapping_SetItemString:int:::
740PyMapping_SetItemString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300741PyMapping_SetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000742PyMapping_SetItemString:PyObject*:v:+1:
743
744PyMapping_Values:PyObject*::+1:
745PyMapping_Values:PyObject*:o:0:
746
747PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
748PyMarshal_ReadLastObjectFromFile:FILE*:file::
749
750PyMarshal_ReadObjectFromFile:PyObject*::+1:
751PyMarshal_ReadObjectFromFile:FILE*:file::
752
753PyMarshal_ReadObjectFromString:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300754PyMarshal_ReadObjectFromString:const char*:string::
Georg Brandl116aa622007-08-15 14:28:22 +0000755PyMarshal_ReadObjectFromString:int:len::
756
757PyMarshal_WriteObjectToString:PyObject*::+1:
758PyMarshal_WriteObjectToString:PyObject*:value:0:
759
760PyMethod_Class:PyObject*::0:
761PyMethod_Class:PyObject*:im:0:
762
763PyMethod_Function:PyObject*::0:
764PyMethod_Function:PyObject*:im:0:
765
766PyMethod_GET_CLASS:PyObject*::0:
767PyMethod_GET_CLASS:PyObject*:im:0:
768
769PyMethod_GET_FUNCTION:PyObject*::0:
770PyMethod_GET_FUNCTION:PyObject*:im:0:
771
772PyMethod_GET_SELF:PyObject*::0:
773PyMethod_GET_SELF:PyObject*:im:0:
774
775PyMethod_New:PyObject*::+1:
776PyMethod_New:PyObject*:func:0:
777PyMethod_New:PyObject*:self:0:
778PyMethod_New:PyObject*:class:0:
779
780PyMethod_Self:PyObject*::0:
781PyMethod_Self:PyObject*:im:0:
782
783PyModule_GetDict:PyObject*::0:
784PyModule_GetDict::PyObject* module:0:
785
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300786PyModule_GetFilename:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000787PyModule_GetFilename:PyObject*:module:0:
788
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300789PyModule_GetName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000790PyModule_GetName:PyObject*:module:0:
791
792PyModule_New:PyObject*::+1:
793PyModule_New::char* name::
794
795PyNumber_Absolute:PyObject*::+1:
796PyNumber_Absolute:PyObject*:o:0:
797
798PyNumber_Add:PyObject*::+1:
799PyNumber_Add:PyObject*:o1:0:
800PyNumber_Add:PyObject*:o2:0:
801
802PyNumber_And:PyObject*::+1:
803PyNumber_And:PyObject*:o1:0:
804PyNumber_And:PyObject*:o2:0:
805
806PyNumber_Check:PyObject*:o:0:
807PyNumber_Check:int:::
808
809PyNumber_Divide:PyObject*::+1:
810PyNumber_Divide:PyObject*:o1:0:
811PyNumber_Divide:PyObject*:o2:0:
812
813PyNumber_Divmod:PyObject*::+1:
814PyNumber_Divmod:PyObject*:o1:0:
815PyNumber_Divmod:PyObject*:o2:0:
816
817PyNumber_Float:PyObject*::+1:
818PyNumber_Float:PyObject*:o:0:
819
820PyNumber_FloorDivide:PyObject*::+1:
821PyNumber_FloorDivide:PyObject*:v:0:
822PyNumber_FloorDivide:PyObject*:w:0:
823
824PyNumber_InPlaceAdd:PyObject*::+1:
825PyNumber_InPlaceAdd:PyObject*:v:0:
826PyNumber_InPlaceAdd:PyObject*:w:0:
827
828PyNumber_InPlaceAnd:PyObject*::+1:
829PyNumber_InPlaceAnd:PyObject*:v:0:
830PyNumber_InPlaceAnd:PyObject*:w:0:
831
832PyNumber_InPlaceDivide:PyObject*::+1:
833PyNumber_InPlaceDivide:PyObject*:v:0:
834PyNumber_InPlaceDivide:PyObject*:w:0:
835
836PyNumber_InPlaceFloorDivide:PyObject*::+1:
837PyNumber_InPlaceFloorDivide:PyObject*:v:0:
838PyNumber_InPlaceFloorDivide:PyObject*:w:0:
839
840PyNumber_InPlaceLshift:PyObject*::+1:
841PyNumber_InPlaceLshift:PyObject*:v:0:
842PyNumber_InPlaceLshift:PyObject*:w:0:
843
844PyNumber_InPlaceMultiply:PyObject*::+1:
845PyNumber_InPlaceMultiply:PyObject*:v:0:
846PyNumber_InPlaceMultiply:PyObject*:w:0:
847
848PyNumber_InPlaceOr:PyObject*::+1:
849PyNumber_InPlaceOr:PyObject*:v:0:
850PyNumber_InPlaceOr:PyObject*:w:0:
851
852PyNumber_InPlacePower:PyObject*::+1:
853PyNumber_InPlacePower:PyObject*:v:0:
854PyNumber_InPlacePower:PyObject*:w:0:
855PyNumber_InPlacePower:PyObject*:z:0:
856
857PyNumber_InPlaceRemainder:PyObject*::+1:
858PyNumber_InPlaceRemainder:PyObject*:v:0:
859PyNumber_InPlaceRemainder:PyObject*:w:0:
860
861PyNumber_InPlaceRshift:PyObject*::+1:
862PyNumber_InPlaceRshift:PyObject*:v:0:
863PyNumber_InPlaceRshift:PyObject*:w:0:
864
865PyNumber_InPlaceSubtract:PyObject*::+1:
866PyNumber_InPlaceSubtract:PyObject*:v:0:
867PyNumber_InPlaceSubtract:PyObject*:w:0:
868
869PyNumber_InPlaceTrueDivide:PyObject*::+1:
870PyNumber_InPlaceTrueDivide:PyObject*:v:0:
871PyNumber_InPlaceTrueDivide:PyObject*:w:0:
872
873PyNumber_InPlaceXor:PyObject*::+1:
874PyNumber_InPlaceXor:PyObject*:v:0:
875PyNumber_InPlaceXor:PyObject*:w:0:
876
Georg Brandl116aa622007-08-15 14:28:22 +0000877PyNumber_Invert:PyObject*::+1:
878PyNumber_Invert:PyObject*:o:0:
879
880PyNumber_Long:PyObject*::+1:
881PyNumber_Long:PyObject*:o:0:
882
883PyNumber_Lshift:PyObject*::+1:
884PyNumber_Lshift:PyObject*:o1:0:
885PyNumber_Lshift:PyObject*:o2:0:
886
887PyNumber_Multiply:PyObject*::+1:
888PyNumber_Multiply:PyObject*:o1:0:
889PyNumber_Multiply:PyObject*:o2:0:
890
891PyNumber_Negative:PyObject*::+1:
892PyNumber_Negative:PyObject*:o:0:
893
894PyNumber_Or:PyObject*::+1:
895PyNumber_Or:PyObject*:o1:0:
896PyNumber_Or:PyObject*:o2:0:
897
898PyNumber_Positive:PyObject*::+1:
899PyNumber_Positive:PyObject*:o:0:
900
901PyNumber_Power:PyObject*::+1:
902PyNumber_Power:PyObject*:o1:0:
903PyNumber_Power:PyObject*:o2:0:
904PyNumber_Power:PyObject*:o3:0:
905
906PyNumber_Remainder:PyObject*::+1:
907PyNumber_Remainder:PyObject*:o1:0:
908PyNumber_Remainder:PyObject*:o2:0:
909
910PyNumber_Rshift:PyObject*::+1:
911PyNumber_Rshift:PyObject*:o1:0:
912PyNumber_Rshift:PyObject*:o2:0:
913
914PyNumber_Subtract:PyObject*::+1:
915PyNumber_Subtract:PyObject*:o1:0:
916PyNumber_Subtract:PyObject*:o2:0:
917
918PyNumber_TrueDivide:PyObject*::+1:
919PyNumber_TrueDivide:PyObject*:v:0:
920PyNumber_TrueDivide:PyObject*:w:0:
921
922PyNumber_Xor:PyObject*::+1:
923PyNumber_Xor:PyObject*:o1:0:
924PyNumber_Xor:PyObject*:o2:0:
925
Larry Hastingsb0827312014-02-09 22:05:19 -0800926PyObject_AsFileDescriptor:int:::
Georg Brandl116aa622007-08-15 14:28:22 +0000927PyObject_AsFileDescriptor:PyObject*:o:0:
928
929PyObject_Call:PyObject*::+1:
930PyObject_Call:PyObject*:callable_object:0:
931PyObject_Call:PyObject*:args:0:
932PyObject_Call:PyObject*:kw:0:
933
934PyObject_CallFunction:PyObject*::+1:
935PyObject_CallFunction:PyObject*:callable_object:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300936PyObject_CallFunction:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000937PyObject_CallFunction::...::
938
939PyObject_CallFunctionObjArgs:PyObject*::+1:
940PyObject_CallFunctionObjArgs:PyObject*:callable:0:
941PyObject_CallFunctionObjArgs::...::
942
943PyObject_CallMethod:PyObject*::+1:
944PyObject_CallMethod:PyObject*:o:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300945PyObject_CallMethod:const char*:m::
946PyObject_CallMethod:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000947PyObject_CallMethod::...::
948
949PyObject_CallMethodObjArgs:PyObject*::+1:
950PyObject_CallMethodObjArgs:PyObject*:o:0:
Serhiy Storchakadce05502013-05-28 22:46:15 +0300951PyObject_CallMethodObjArgs:PyObject*:name:0:
Georg Brandl116aa622007-08-15 14:28:22 +0000952PyObject_CallMethodObjArgs::...::
953
954PyObject_CallObject:PyObject*::+1:
955PyObject_CallObject:PyObject*:callable_object:0:
956PyObject_CallObject:PyObject*:args:0:
957
958PyObject_Cmp:int:::
959PyObject_Cmp:PyObject*:o1:0:
960PyObject_Cmp:PyObject*:o2:0:
961PyObject_Cmp:int*:result::
962
963PyObject_Compare:int:::
964PyObject_Compare:PyObject*:o1:0:
965PyObject_Compare:PyObject*:o2:0:
966
967PyObject_DelAttr:int:::
968PyObject_DelAttr:PyObject*:o:0:
969PyObject_DelAttr:PyObject*:attr_name:0:
970
971PyObject_DelAttrString:int:::
972PyObject_DelAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300973PyObject_DelAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +0000974
975PyObject_DelItem:int:::
976PyObject_DelItem:PyObject*:o:0:
977PyObject_DelItem:PyObject*:key:0:
978
979PyObject_Dir:PyObject*::+1:
980PyObject_Dir:PyObject*:o:0:
981
982PyObject_GetAttr:PyObject*::+1:
983PyObject_GetAttr:PyObject*:o:0:
984PyObject_GetAttr:PyObject*:attr_name:0:
985
986PyObject_GetAttrString:PyObject*::+1:
987PyObject_GetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300988PyObject_GetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +0000989
990PyObject_GetItem:PyObject*::+1:
991PyObject_GetItem:PyObject*:o:0:
992PyObject_GetItem:PyObject*:key:0:
993
994PyObject_GetIter:PyObject*::+1:
995PyObject_GetIter:PyObject*:o:0:
996
997PyObject_HasAttr:int:::
998PyObject_HasAttr:PyObject*:o:0:
999PyObject_HasAttr:PyObject*:attr_name:0:
1000
1001PyObject_HasAttrString:int:::
1002PyObject_HasAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001003PyObject_HasAttrString:const char*:attr_name:0:
Georg Brandl116aa622007-08-15 14:28:22 +00001004
1005PyObject_Hash:int:::
1006PyObject_Hash:PyObject*:o:0:
1007
1008PyObject_IsTrue:int:::
1009PyObject_IsTrue:PyObject*:o:0:
1010
1011PyObject_Init:PyObject*::0:
1012PyObject_Init:PyObject*:op:0:
1013
1014PyObject_InitVar:PyVarObject*::0:
1015PyObject_InitVar:PyVarObject*:op:0:
1016
1017PyObject_Length:int:::
1018PyObject_Length:PyObject*:o:0:
1019
1020PyObject_NEW:PyObject*::+1:
1021
1022PyObject_New:PyObject*::+1:
1023
1024PyObject_NEW_VAR:PyObject*::+1:
1025
1026PyObject_NewVar:PyObject*::+1:
1027
1028PyObject_Print:int:::
1029PyObject_Print:PyObject*:o:0:
1030PyObject_Print:FILE*:fp::
1031PyObject_Print:int:flags::
1032
1033PyObject_Repr:PyObject*::+1:
1034PyObject_Repr:PyObject*:o:0:
1035
1036PyObject_RichCompare:PyObject*::+1:
1037PyObject_RichCompare:PyObject*:o1:0:
1038PyObject_RichCompare:PyObject*:o2:0:
1039PyObject_RichCompare:int:opid::
1040
1041PyObject_RichCompareBool:int:::
1042PyObject_RichCompareBool:PyObject*:o1:0:
1043PyObject_RichCompareBool:PyObject*:o2:0:
1044PyObject_RichCompareBool:int:opid::
1045
1046PyObject_SetAttr:int:::
1047PyObject_SetAttr:PyObject*:o:0:
1048PyObject_SetAttr:PyObject*:attr_name:0:
1049PyObject_SetAttr:PyObject*:v:+1:
1050
1051PyObject_SetAttrString:int:::
1052PyObject_SetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001053PyObject_SetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +00001054PyObject_SetAttrString:PyObject*:v:+1:
1055
1056PyObject_SetItem:int:::
1057PyObject_SetItem:PyObject*:o:0:
1058PyObject_SetItem:PyObject*:key:0:
1059PyObject_SetItem:PyObject*:v:+1:
1060
1061PyObject_Str:PyObject*::+1:
1062PyObject_Str:PyObject*:o:0:
1063
1064PyObject_Type:PyObject*::+1:
1065PyObject_Type:PyObject*:o:0:
1066
1067PyObject_Unicode:PyObject*::+1:
1068PyObject_Unicode:PyObject*:o:0:
1069
1070PyParser_SimpleParseFile:struct _node*:::
1071PyParser_SimpleParseFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001072PyParser_SimpleParseFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001073PyParser_SimpleParseFile:int:start::
1074
1075PyParser_SimpleParseString:struct _node*:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001076PyParser_SimpleParseString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001077PyParser_SimpleParseString:int:start::
1078
1079PyRun_AnyFile:int:::
1080PyRun_AnyFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001081PyRun_AnyFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001082
1083PyRun_File:PyObject*::+1:??? -- same as eval_code2()
1084PyRun_File:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001085PyRun_File:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001086PyRun_File:int:start::
1087PyRun_File:PyObject*:globals:0:
1088PyRun_File:PyObject*:locals:0:
1089
1090PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1091PyRun_FileEx:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001092PyRun_FileEx:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001093PyRun_FileEx:int:start::
1094PyRun_FileEx:PyObject*:globals:0:
1095PyRun_FileEx:PyObject*:locals:0:
1096PyRun_FileEx:int:closeit::
1097
1098PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1099PyRun_FileFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001100PyRun_FileFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001101PyRun_FileFlags:int:start::
1102PyRun_FileFlags:PyObject*:globals:0:
1103PyRun_FileFlags:PyObject*:locals:0:
1104PyRun_FileFlags:PyCompilerFlags*:flags::
1105
1106PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1107PyRun_FileExFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001108PyRun_FileExFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001109PyRun_FileExFlags:int:start::
1110PyRun_FileExFlags:PyObject*:globals:0:
1111PyRun_FileExFlags:PyObject*:locals:0:
1112PyRun_FileExFlags:int:closeit::
1113PyRun_FileExFlags:PyCompilerFlags*:flags::
1114
1115PyRun_InteractiveLoop:int:::
1116PyRun_InteractiveLoop:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001117PyRun_InteractiveLoop:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001118
1119PyRun_InteractiveOne:int:::
1120PyRun_InteractiveOne:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001121PyRun_InteractiveOne:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001122
1123PyRun_SimpleFile:int:::
1124PyRun_SimpleFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001125PyRun_SimpleFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001126
1127PyRun_SimpleString:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001128PyRun_SimpleString:const char*:command::
Georg Brandl116aa622007-08-15 14:28:22 +00001129
1130PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001131PyRun_String:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001132PyRun_String:int:start::
1133PyRun_String:PyObject*:globals:0:
1134PyRun_String:PyObject*:locals:0:
1135
1136PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001137PyRun_StringFlags:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001138PyRun_StringFlags:int:start::
1139PyRun_StringFlags:PyObject*:globals:0:
1140PyRun_StringFlags:PyObject*:locals:0:
1141PyRun_StringFlags:PyCompilerFlags*:flags::
1142
1143PySeqIter_New:PyObject*::+1:
1144PySeqIter_New:PyObject*:seq::
1145
1146PySequence_Check:int:::
1147PySequence_Check:PyObject*:o:0:
1148
1149PySequence_Concat:PyObject*::+1:
1150PySequence_Concat:PyObject*:o1:0:
1151PySequence_Concat:PyObject*:o2:0:
1152
1153PySequence_Count:int:::
1154PySequence_Count:PyObject*:o:0:
1155PySequence_Count:PyObject*:value:0:
1156
1157PySequence_DelItem:int:::
1158PySequence_DelItem:PyObject*:o:0:
1159PySequence_DelItem:int:i::
1160
1161PySequence_DelSlice:int:::
1162PySequence_DelSlice:PyObject*:o:0:
1163PySequence_DelSlice:int:i1::
1164PySequence_DelSlice:int:i2::
1165
1166PySequence_Fast:PyObject*::+1:
1167PySequence_Fast:PyObject*:v:0:
1168PySequence_Fast:const char*:m::
1169
1170PySequence_Fast_GET_ITEM:PyObject*::0:
1171PySequence_Fast_GET_ITEM:PyObject*:o:0:
1172PySequence_Fast_GET_ITEM:int:i::
1173
1174PySequence_GetItem:PyObject*::+1:
1175PySequence_GetItem:PyObject*:o:0:
1176PySequence_GetItem:int:i::
1177
1178PySequence_GetSlice:PyObject*::+1:
1179PySequence_GetSlice:PyObject*:o:0:
1180PySequence_GetSlice:int:i1::
1181PySequence_GetSlice:int:i2::
1182
1183PySequence_In:int:::
1184PySequence_In:PyObject*:o:0:
1185PySequence_In:PyObject*:value:0:
1186
1187PySequence_Index:int:::
1188PySequence_Index:PyObject*:o:0:
1189PySequence_Index:PyObject*:value:0:
1190
1191PySequence_InPlaceConcat:PyObject*::+1:
1192PySequence_InPlaceConcat:PyObject*:s:0:
1193PySequence_InPlaceConcat:PyObject*:o:0:
1194
1195PySequence_InPlaceRepeat:PyObject*::+1:
1196PySequence_InPlaceRepeat:PyObject*:s:0:
1197PySequence_InPlaceRepeat:PyObject*:o:0:
1198
1199PySequence_ITEM:PyObject*::+1:
1200PySequence_ITEM:PyObject*:o:0:
1201PySequence_ITEM:int:i::
1202
1203PySequence_Repeat:PyObject*::+1:
1204PySequence_Repeat:PyObject*:o:0:
1205PySequence_Repeat:int:count::
1206
1207PySequence_SetItem:int:::
1208PySequence_SetItem:PyObject*:o:0:
1209PySequence_SetItem:int:i::
1210PySequence_SetItem:PyObject*:v:+1:
1211
1212PySequence_SetSlice:int:::
1213PySequence_SetSlice:PyObject*:o:0:
1214PySequence_SetSlice:int:i1::
1215PySequence_SetSlice:int:i2::
1216PySequence_SetSlice:PyObject*:v:+1:
1217
1218PySequence_List:PyObject*::+1:
1219PySequence_List:PyObject*:o:0:
1220
1221PySequence_Tuple:PyObject*::+1:
1222PySequence_Tuple:PyObject*:o:0:
1223
1224PySet_Append:int:::
1225PySet_Append:PyObject*:set:0:
1226PySet_Append:PyObject*:key:+1:
1227
1228PySet_Contains:int:::
1229PySet_Contains:PyObject*:anyset:0:
1230PySet_Contains:PyObject*:key:0:
1231
1232PySet_Discard:int:::
1233PySet_Discard:PyObject*:set:0:
1234PySet_Discard:PyObject*:key:-1:no effect if key not found
1235
1236PySet_New:PyObject*::+1:
1237PySet_New:PyObject*:iterable:0:
1238
1239PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
1240PySet_Pop:PyObject*:set:0:
1241
1242PySet_Size:int:::
1243PySet_Size:PyObject*:anyset:0:
1244
1245PySlice_Check:int:::
1246PySlice_Check:PyObject*:ob:0:
1247
1248PySlice_New:PyObject*::+1:
1249PySlice_New:PyObject*:start:0:
1250PySlice_New:PyObject*:stop:0:
1251PySlice_New:PyObject*:step:0:
1252
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001253PyString_AS_STRING:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001254PyString_AS_STRING:PyObject*:string:0:
1255
1256PyString_AsDecodedObject:PyObject*::+1:
1257PyString_AsDecodedObject:PyObject*:str:0:
1258PyString_AsDecodedObject:const char*:encoding::
1259PyString_AsDecodedObject:const char*:errors::
1260
1261PyString_AsEncodedObject:PyObject*::+1:
1262PyString_AsEncodedObject:PyObject*:str:0:
1263PyString_AsEncodedObject:const char*:encoding::
1264PyString_AsEncodedObject:const char*:errors::
1265
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001266PyString_AsString:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001267PyString_AsString:PyObject*:string:0:
1268
1269PyString_AsStringAndSize:int:::
1270PyString_AsStringAndSize:PyObject*:obj:0:
1271PyString_AsStringAndSize:char**:buffer::
1272PyString_AsStringAndSize:int*:length::
1273
1274PyString_Check:int:::
1275PyString_Check:PyObject*:o:0:
1276
1277PyString_Concat:void:::
1278PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
1279PyString_Concat:PyObject*:newpart:0:
1280
1281PyString_ConcatAndDel:void:::
1282PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
1283PyString_ConcatAndDel:PyObject*:newpart:-1:
1284
1285PyString_Format:PyObject*::+1:
1286PyString_Format:PyObject*:format:0:
1287PyString_Format:PyObject*:args:0:
1288
1289PyString_FromString:PyObject*::+1:
1290PyString_FromString:const char*:v::
1291
1292PyString_FromStringAndSize:PyObject*::+1:
1293PyString_FromStringAndSize:const char*:v::
1294PyString_FromStringAndSize:int:len::
1295
1296PyString_FromFormat:PyObject*::+1:
1297PyString_FromFormat:const char*:format::
1298PyString_FromFormat::...::
1299
1300PyString_FromFormatV:PyObject*::+1:
1301PyString_FromFormatV:const char*:format::
1302PyString_FromFormatV:va_list:vargs::
1303
1304PyString_GET_SIZE:int:::
1305PyString_GET_SIZE:PyObject*:string:0:
1306
1307PyString_InternFromString:PyObject*::+1:
1308PyString_InternFromString:const char*:v::
1309
1310PyString_InternInPlace:void:::
1311PyString_InternInPlace:PyObject**:string:+1:???
1312
1313PyString_Size:int:::
1314PyString_Size:PyObject*:string:0:
1315
1316PyString_Decode:PyObject*::+1:
1317PyString_Decode:const char*:s::
1318PyString_Decode:int:size::
1319PyString_Decode:const char*:encoding::
1320PyString_Decode:const char*:errors::
1321
1322PyString_Encode:PyObject*::+1:
1323PyString_Encode:const char*:s::
1324PyString_Encode:int:size::
1325PyString_Encode:const char*:encoding::
1326PyString_Encode:const char*:errors::
1327
1328PyString_AsEncodedString:PyObject*::+1:
1329PyString_AsEncodedString:PyObject*:str::
1330PyString_AsEncodedString:const char*:encoding::
1331PyString_AsEncodedString:const char*:errors::
1332
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001333PySys_AddWarnOption:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001334PySys_AddWarnOption:const char*:s::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001335
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001336PySys_AddXOption:void:::
1337PySys_AddXOption:const wchar_t*:s::
1338
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001339PySys_GetObject:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001340PySys_GetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001341
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001342PySys_GetXOptions:PyObject*::0:
1343
Georg Brandl116aa622007-08-15 14:28:22 +00001344PySys_SetArgv:int:::
1345PySys_SetArgv:int:argc::
1346PySys_SetArgv:char**:argv::
1347
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001348PySys_SetObject:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001349PySys_SetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001350PySys_SetObject:PyObject*:v:+1:
1351
1352PySys_ResetWarnOptions:void:::
1353
1354PySys_WriteStdout:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001355PySys_WriteStdout:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001356
1357PySys_WriteStderr:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001358PySys_WriteStderr:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001359
Georg Brandl116aa622007-08-15 14:28:22 +00001360PyThreadState_Clear:void:::
1361PyThreadState_Clear:PyThreadState*:tstate::
1362
1363PyThreadState_Delete:void:::
1364PyThreadState_Delete:PyThreadState*:tstate::
1365
1366PyThreadState_Get:PyThreadState*:::
1367
1368PyThreadState_GetDict:PyObject*::0:
1369
1370PyThreadState_New:PyThreadState*:::
1371PyThreadState_New:PyInterpreterState*:interp::
1372
1373PyThreadState_Swap:PyThreadState*:::
1374PyThreadState_Swap:PyThreadState*:tstate::
1375
1376PyTime_FromTime:PyObject*::+1:
1377PyTime_FromTime:int:hour::
1378PyTime_FromTime:int:minute::
1379PyTime_FromTime:int:second::
1380PyTime_FromTime:int:usecond::
1381
1382PyTuple_Check:int:::
1383PyTuple_Check:PyObject*:p:0:
1384
1385PyTuple_GET_ITEM:PyObject*::0:
1386PyTuple_GET_ITEM:PyTupleObject*:p:0:
1387PyTuple_GET_ITEM:int:pos::
1388
1389PyTuple_GetItem:PyObject*::0:
1390PyTuple_GetItem:PyTupleObject*:p:0:
1391PyTuple_GetItem:int:pos::
1392
1393PyTuple_GetSlice:PyObject*::+1:
1394PyTuple_GetSlice:PyTupleObject*:p:0:
1395PyTuple_GetSlice:int:low::
1396PyTuple_GetSlice:int:high::
1397
1398PyTuple_New:PyObject*::+1:
1399PyTuple_New:int:len::
1400
1401PyTuple_Pack:PyObject*::+1:
1402PyTuple_Pack:int:len::
1403PyTuple_Pack:PyObject*:...:0:
1404
1405PyTuple_SET_ITEM:void:::
1406PyTuple_SET_ITEM:PyTupleObject*:p:0:
1407PyTuple_SET_ITEM:int:pos::
1408PyTuple_SET_ITEM:PyObject*:o:0:
1409
1410PyTuple_SetItem:int:::
1411PyTuple_SetItem:PyTupleObject*:p:0:
1412PyTuple_SetItem:int:pos::
1413PyTuple_SetItem:PyObject*:o:0:
1414
1415PyTuple_Size:int:::
1416PyTuple_Size:PyTupleObject*:p:0:
1417
1418PyType_GenericAlloc:PyObject*::+1:
1419PyType_GenericAlloc:PyObject*:type:0:
1420PyType_GenericAlloc:int:nitems:0:
1421
1422PyType_GenericNew:PyObject*::+1:
1423PyType_GenericNew:PyObject*:type:0:
1424PyType_GenericNew:PyObject*:args:0:
1425PyType_GenericNew:PyObject*:kwds:0:
1426
1427PyUnicode_Check:int:::
1428PyUnicode_Check:PyObject*:o:0:
1429
1430PyUnicode_GET_SIZE:int:::
1431PyUnicode_GET_SIZE:PyObject*:o:0:
1432
1433PyUnicode_GET_DATA_SIZE:int:::
1434PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1435
1436PyUnicode_AS_UNICODE:Py_UNICODE*:::
1437PyUnicode_AS_UNICODE:PyObject*:o:0:
1438
1439PyUnicode_AS_DATA:const char*:::
1440PyUnicode_AS_DATA:PyObject*:o:0:
1441
1442Py_UNICODE_ISSPACE:int:::
1443Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1444
1445Py_UNICODE_ISLOWER:int:::
1446Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1447
1448Py_UNICODE_ISUPPER:int:::
1449Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1450
1451Py_UNICODE_ISTITLE:int:::
1452Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1453
1454Py_UNICODE_ISLINEBREAK:int:::
1455Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1456
1457Py_UNICODE_ISDECIMAL:int:::
1458Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1459
1460Py_UNICODE_ISDIGIT:int:::
1461Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1462
1463Py_UNICODE_ISNUMERIC:int:::
1464Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1465
1466Py_UNICODE_TOLOWER:Py_UNICODE:::
1467Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1468
1469Py_UNICODE_TOUPPER:Py_UNICODE:::
1470Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1471
1472Py_UNICODE_TOTITLE:Py_UNICODE:::
1473Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1474
1475Py_UNICODE_TODECIMAL:int:::
1476Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1477
1478Py_UNICODE_TODIGIT:int:::
1479Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1480
1481Py_UNICODE_TONUMERIC:double:::
1482Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1483
1484PyUnicode_FromUnicode:PyObject*::+1:
1485PyUnicode_FromUnicode:const Py_UNICODE*:u::
1486PyUnicode_FromUnicode:int:size::
1487
1488PyUnicode_AsUnicode:Py_UNICODE*:::
1489PyUnicode_AsUnicode:PyObject :*unicode:0:
1490
1491PyUnicode_GetSize:int:::
1492PyUnicode_GetSize:PyObject :*unicode:0:
1493
1494PyUnicode_FromObject:PyObject*::+1:
1495PyUnicode_FromObject:PyObject*:*obj:0:
1496
1497PyUnicode_FromEncodedObject:PyObject*::+1:
1498PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1499PyUnicode_FromEncodedObject:const char*:encoding::
1500PyUnicode_FromEncodedObject:const char*:errors::
1501
1502PyUnicode_FromWideChar:PyObject*::+1:
1503PyUnicode_FromWideChar:const wchar_t*:w::
1504PyUnicode_FromWideChar:int:size::
1505
1506PyUnicode_AsWideChar:int:::
1507PyUnicode_AsWideChar:PyObject*:*unicode:0:
1508PyUnicode_AsWideChar:wchar_t*:w::
1509PyUnicode_AsWideChar:int:size::
1510
1511PyUnicode_Decode:PyObject*::+1:
1512PyUnicode_Decode:const char*:s::
1513PyUnicode_Decode:int:size::
1514PyUnicode_Decode:const char*:encoding::
1515PyUnicode_Decode:const char*:errors::
1516
1517PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1518PyUnicode_DecodeUTF16Stateful:const char*:s::
1519PyUnicode_DecodeUTF16Stateful:int:size::
1520PyUnicode_DecodeUTF16Stateful:const char*:errors::
1521PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1522PyUnicode_DecodeUTF16Stateful:int*:consumed::
1523
1524PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1525PyUnicode_DecodeUTF8Stateful:const char*:s::
1526PyUnicode_DecodeUTF8Stateful:int:size::
1527PyUnicode_DecodeUTF8Stateful:const char*:errors::
1528PyUnicode_DecodeUTF8Stateful:int*:consumed::
1529
1530PyUnicode_Encode:PyObject*::+1:
1531PyUnicode_Encode:const Py_UNICODE*:s::
1532PyUnicode_Encode:int:size::
1533PyUnicode_Encode:const char*:encoding::
1534PyUnicode_Encode:const char*:errors::
1535
1536PyUnicode_AsEncodedString:PyObject*::+1:
1537PyUnicode_AsEncodedString:PyObject*:unicode::
1538PyUnicode_AsEncodedString:const char*:encoding::
1539PyUnicode_AsEncodedString:const char*:errors::
1540
1541PyUnicode_DecodeUTF8:PyObject*::+1:
1542PyUnicode_DecodeUTF8:const char*:s::
1543PyUnicode_DecodeUTF8:int:size::
1544PyUnicode_DecodeUTF8:const char*:errors::
1545
1546PyUnicode_EncodeUTF8:PyObject*::+1:
1547PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1548PyUnicode_EncodeUTF8:int:size::
1549PyUnicode_EncodeUTF8:const char*:errors::
1550
1551PyUnicode_AsUTF8String:PyObject*::+1:
1552PyUnicode_AsUTF8String:PyObject*:unicode::
1553
1554PyUnicode_DecodeUTF16:PyObject*::+1:
1555PyUnicode_DecodeUTF16:const char*:s::
1556PyUnicode_DecodeUTF16:int:size::
1557PyUnicode_DecodeUTF16:const char*:errors::
1558PyUnicode_DecodeUTF16:int*:byteorder::
1559
1560PyUnicode_EncodeUTF16:PyObject*::+1:
1561PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1562PyUnicode_EncodeUTF16:int:size::
1563PyUnicode_EncodeUTF16:const char*:errors::
1564PyUnicode_EncodeUTF16:int:byteorder::
1565
1566PyUnicode_AsUTF16String:PyObject*::+1:
1567PyUnicode_AsUTF16String:PyObject*:unicode::
1568
1569PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1570PyUnicode_DecodeUnicodeEscape:const char*:s::
1571PyUnicode_DecodeUnicodeEscape:int:size::
1572PyUnicode_DecodeUnicodeEscape:const char*:errors::
1573
1574PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1575PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1576PyUnicode_EncodeUnicodeEscape:int:size::
1577PyUnicode_EncodeUnicodeEscape:const char*:errors::
1578
1579PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1580PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1581
1582PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1583PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1584PyUnicode_DecodeRawUnicodeEscape:int:size::
1585PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1586
1587PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1588PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1589PyUnicode_EncodeRawUnicodeEscape:int:size::
1590PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1591
1592PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1593PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1594
1595PyUnicode_DecodeLatin1:PyObject*::+1:
1596PyUnicode_DecodeLatin1:const char*:s::
1597PyUnicode_DecodeLatin1:int:size::
1598PyUnicode_DecodeLatin1:const char*:errors::
1599
1600PyUnicode_EncodeLatin1:PyObject*::+1:
1601PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1602PyUnicode_EncodeLatin1:int:size::
1603PyUnicode_EncodeLatin1:const char*:errors::
1604
1605PyUnicode_AsLatin1String:PyObject*::+1:
1606PyUnicode_AsLatin1String:PyObject*:unicode::
1607
1608PyUnicode_DecodeASCII:PyObject*::+1:
1609PyUnicode_DecodeASCII:const char*:s::
1610PyUnicode_DecodeASCII:int:size::
1611PyUnicode_DecodeASCII:const char*:errors::
1612
1613PyUnicode_EncodeASCII:PyObject*::+1:
1614PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1615PyUnicode_EncodeASCII:int:size::
1616PyUnicode_EncodeASCII:const char*:errors::
1617
1618PyUnicode_AsASCIIString:PyObject*::+1:
1619PyUnicode_AsASCIIString:PyObject*:unicode::
1620
1621PyUnicode_DecodeCharmap:PyObject*::+1:
1622PyUnicode_DecodeCharmap:const char*:s::
1623PyUnicode_DecodeCharmap:int:size::
1624PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1625PyUnicode_DecodeCharmap:const char*:errors::
1626
1627PyUnicode_EncodeCharmap:PyObject*::+1:
1628PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1629PyUnicode_EncodeCharmap:int:size::
1630PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1631PyUnicode_EncodeCharmap:const char*:errors::
1632
1633PyUnicode_AsCharmapString:PyObject*::+1:
1634PyUnicode_AsCharmapString:PyObject*:unicode:0:
1635PyUnicode_AsCharmapString:PyObject*:mapping:0:
1636
1637PyUnicode_TranslateCharmap:PyObject*::+1:
1638PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1639PyUnicode_TranslateCharmap:int:size::
1640PyUnicode_TranslateCharmap:PyObject*:table:0:
1641PyUnicode_TranslateCharmap:const char*:errors::
1642
1643PyUnicode_DecodeMBCS:PyObject*::+1:
1644PyUnicode_DecodeMBCS:const char*:s::
1645PyUnicode_DecodeMBCS:int:size::
1646PyUnicode_DecodeMBCS:const char*:errors::
1647
1648PyUnicode_EncodeMBCS:PyObject*::+1:
1649PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1650PyUnicode_EncodeMBCS:int:size::
1651PyUnicode_EncodeMBCS:const char*:errors::
1652
1653PyUnicode_AsMBCSString:PyObject*::+1:
1654PyUnicode_AsMBCSString:PyObject*:unicode::
1655
1656PyUnicode_Concat:PyObject*::+1:
1657PyUnicode_Concat:PyObject*:left:0:
1658PyUnicode_Concat:PyObject*:right:0:
1659
1660PyUnicode_Split:PyObject*::+1:
1661PyUnicode_Split:PyObject*:left:0:
1662PyUnicode_Split:PyObject*:right:0:
1663PyUnicode_Split:int:maxsplit::
1664
1665PyUnicode_Splitlines:PyObject*::+1:
1666PyUnicode_Splitlines:PyObject*:s:0:
1667PyUnicode_Splitlines:int:maxsplit::
1668
1669PyUnicode_Translate:PyObject*::+1:
1670PyUnicode_Translate:PyObject*:str:0:
1671PyUnicode_Translate:PyObject*:table:0:
1672PyUnicode_Translate:const char*:errors::
1673
1674PyUnicode_Join:PyObject*::+1:
1675PyUnicode_Join:PyObject*:separator:0:
1676PyUnicode_Join:PyObject*:seq:0:
1677
Benjamin Peterson5e55b3e2010-02-03 02:35:45 +00001678PyUnicode_Tailmatch:int:::
Georg Brandl116aa622007-08-15 14:28:22 +00001679PyUnicode_Tailmatch:PyObject*:str:0:
1680PyUnicode_Tailmatch:PyObject*:substr:0:
1681PyUnicode_Tailmatch:int:start::
1682PyUnicode_Tailmatch:int:end::
1683PyUnicode_Tailmatch:int:direction::
1684
1685PyUnicode_Find:int:::
1686PyUnicode_Find:PyObject*:str:0:
1687PyUnicode_Find:PyObject*:substr:0:
1688PyUnicode_Find:int:start::
1689PyUnicode_Find:int:end::
1690PyUnicode_Find:int:direction::
1691
1692PyUnicode_Count:int:::
1693PyUnicode_Count:PyObject*:str:0:
1694PyUnicode_Count:PyObject*:substr:0:
1695PyUnicode_Count:int:start::
1696PyUnicode_Count:int:end::
1697
1698PyUnicode_Replace:PyObject*::+1:
1699PyUnicode_Replace:PyObject*:str:0:
1700PyUnicode_Replace:PyObject*:substr:0:
1701PyUnicode_Replace:PyObject*:replstr:0:
1702PyUnicode_Replace:int:maxcount::
1703
1704PyUnicode_Compare:int:::
1705PyUnicode_Compare:PyObject*:left:0:
1706PyUnicode_Compare:PyObject*:right:0:
1707
1708PyUnicode_Format:PyObject*::+1:
1709PyUnicode_Format:PyObject*:format:0:
1710PyUnicode_Format:PyObject*:args:0:
1711
1712PyUnicode_Contains:int:::
1713PyUnicode_Contains:PyObject*:container:0:
1714PyUnicode_Contains:PyObject*:element:0:
1715
1716PyWeakref_GET_OBJECT:PyObject*::0:
1717PyWeakref_GET_OBJECT:PyObject*:ref:0:
1718
1719PyWeakref_GetObject:PyObject*::0:
1720PyWeakref_GetObject:PyObject*:ref:0:
1721
1722PyWeakref_NewProxy:PyObject*::+1:
1723PyWeakref_NewProxy:PyObject*:ob:0:
1724PyWeakref_NewProxy:PyObject*:callback:0:
1725
1726PyWeakref_NewRef:PyObject*::+1:
1727PyWeakref_NewRef:PyObject*:ob:0:
1728PyWeakref_NewRef:PyObject*:callback:0:
1729
1730PyWrapper_New:PyObject*::+1:
1731PyWrapper_New:PyObject*:d:0:
1732PyWrapper_New:PyObject*:self:0:
1733
1734Py_AtExit:int:::
1735Py_AtExit:void (*)():func::
1736
1737Py_BuildValue:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001738Py_BuildValue:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +00001739
1740Py_CompileString:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001741Py_CompileString:const char*:str::
1742Py_CompileString:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001743Py_CompileString:int:start::
1744
1745Py_CompileStringFlags:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001746Py_CompileStringFlags:const char*:str::
1747Py_CompileStringFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001748Py_CompileStringFlags:int:start::
1749Py_CompileStringFlags:PyCompilerFlags*:flags::
1750
1751Py_DECREF:void:::
1752Py_DECREF:PyObject*:o:-1:
1753
1754Py_EndInterpreter:void:::
1755Py_EndInterpreter:PyThreadState*:tstate::
1756
1757Py_Exit:void:::
1758Py_Exit:int:status::
1759
1760Py_FatalError:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001761Py_FatalError:const char*:message::
Georg Brandl116aa622007-08-15 14:28:22 +00001762
1763Py_FdIsInteractive:int:::
1764Py_FdIsInteractive:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001765Py_FdIsInteractive:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001766
1767Py_Finalize:void:::
1768
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001769Py_GetBuildInfoconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001770
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001771Py_GetCompilerconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001772
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001773Py_GetCopyrightconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001774
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001775Py_GetExecPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001776
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001777Py_GetPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001778
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001779Py_GetPlatformconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001780
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001781Py_GetPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001782
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001783Py_GetProgramFullPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001784
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001785Py_GetProgramName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001786
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001787Py_GetVersionconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001788
1789Py_INCREF:void:::
1790Py_INCREF:PyObject*:o:+1:
1791
1792Py_Initialize:void:::
1793
1794Py_IsInitialized:int:::
1795
1796Py_NewInterpreter:PyThreadState*:::
1797
1798Py_SetProgramName:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001799Py_SetProgramName:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +00001800
1801Py_XDECREF:void:::
1802Py_XDECREF:PyObject*:o:-1:if o is not NULL
1803
1804Py_XINCREF:void:::
1805Py_XINCREF:PyObject*:o:+1:if o is not NULL
1806
1807_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001808_PyImport_FindExtension:const char*:::
1809_PyImport_FindExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001810
1811_PyImport_Fini:void:::
1812
1813_PyImport_FixupExtension:PyObject*:::???
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001814_PyImport_FixupExtension:const char*:::
1815_PyImport_FixupExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001816
1817_PyImport_Init:void:::
1818
Georg Brandl116aa622007-08-15 14:28:22 +00001819_PyObject_New:PyObject*::+1:
1820_PyObject_New:PyTypeObject*:type:0:
1821
1822_PyObject_NewVar:PyObject*::+1:
1823_PyObject_NewVar:PyTypeObject*:type:0:
1824_PyObject_NewVar:int:size::
1825
1826_PyString_Resize:int:::
1827_PyString_Resize:PyObject**:string:+1:
1828_PyString_Resize:int:newsize::
1829
1830_PyTuple_Resize:int:::
1831_PyTuple_Resize:PyTupleObject**:p:+1:
1832_PyTuple_Resize:int:new::
1833
1834_Py_c_diff:Py_complex:::
1835_Py_c_diff:Py_complex:left::
1836_Py_c_diff:Py_complex:right::
1837
1838_Py_c_neg:Py_complex:::
1839_Py_c_neg:Py_complex:complex::
1840
1841_Py_c_pow:Py_complex:::
1842_Py_c_pow:Py_complex:num::
1843_Py_c_pow:Py_complex:exp::
1844
1845_Py_c_prod:Py_complex:::
1846_Py_c_prod:Py_complex:left::
1847_Py_c_prod:Py_complex:right::
1848
1849_Py_c_quot:Py_complex:::
1850_Py_c_quot:Py_complex:dividend::
1851_Py_c_quot:Py_complex:divisor::
1852
1853_Py_c_sum:Py_complex:::
1854_Py_c_sum:Py_complex:left::
1855_Py_c_sum:Py_complex:right::