blob: f403c16547c47ec209959779f9af815674bae614 [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
Paul Ganssle04af5b12018-01-24 17:29:30 -0500180PyTimeZone_FromOffset:PyObject*::+1:
181PyTimeZone_FromOffset:PyDateTime_DeltaType*:offset:+1:Reference count not increased if offset is +00:00
182
183PyTimeZone_FromOffsetAndName:PyObject*::+1:
184PyTimeZone_FromOffsetAndName:PyDateTime_DeltaType*:offset:+1:Reference count not increased if offset is +00:00 and name == NULL
185PyTimeZone_FromOffsetAndName:PyUnicode*:name:+1:
186
187
Georg Brandl116aa622007-08-15 14:28:22 +0000188PyDescr_NewClassMethod:PyObject*::+1:
189PyDescr_NewClassMethod:PyTypeObject*:type::
190PyDescr_NewClassMethod:PyMethodDef*:method::
191
192PyDescr_NewGetSet:PyObject*::+1:
193PyDescr_NewGetSet:PyTypeObject*:type::
194PyDescr_NewGetSet:PyGetSetDef*:getset::
195
196PyDescr_NewMember:PyObject*::+1:
197PyDescr_NewMember:PyTypeObject*:type::
198PyDescr_NewMember:PyMemberDef*:member::
199
200PyDescr_NewMethod:PyObject*::+1:
201PyDescr_NewMethod:PyTypeObject*:type::
202PyDescr_NewMethod:PyMethodDef*:meth::
203
204PyDescr_NewWrapper:PyObject*::+1:
205PyDescr_NewWrapper:PyTypeObject*:type::
206PyDescr_NewWrapper:struct wrapperbase*:base::
207PyDescr_NewWrapper:void*:wrapped::
208
209PyDict_Check:int:::
210PyDict_Check:PyObject*:p:0:
211
212PyDict_Clear:void:::
213PyDict_Clear:PyObject*:p:0:
214
215PyDict_DelItem:int:::
216PyDict_DelItem:PyObject*:p:0:
217PyDict_DelItem:PyObject*:key:0:
218
219PyDict_DelItemString:int:::
220PyDict_DelItemString:PyObject*:p:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300221PyDict_DelItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000222
223PyDict_GetItem:PyObject*::0:0
224PyDict_GetItem:PyObject*:p:0:
225PyDict_GetItem:PyObject*:key:0:
226
Eric Snowb63530a2017-06-01 12:29:13 -0600227PyDict_GetItemWithError:PyObject*::0:0
228PyDict_GetItemWithError:PyObject*:p:0:
229PyDict_GetItemWithError:PyObject*:key:0:
230
Georg Brandl116aa622007-08-15 14:28:22 +0000231PyDict_GetItemString:PyObject*::0:
232PyDict_GetItemString:PyObject*:p:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300233PyDict_GetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000234
Benjamin Peterson00e98862013-03-07 22:16:29 -0500235PyDict_SetDefault:PyObject*::0:
236PyDict_SetDefault:PyObject*:p:0:
237PyDict_SetDefault:PyObject*:key:0:conditionally +1 if inserted into the dict
238PyDict_SetDefault:PyObject*:default:0:conditionally +1 if inserted into the dict
239
Georg Brandl116aa622007-08-15 14:28:22 +0000240PyDict_Items:PyObject*::+1:
241PyDict_Items:PyObject*:p:0:
242
243PyDict_Keys:PyObject*::+1:
244PyDict_Keys:PyObject*:p:0:
245
246PyDict_New:PyObject*::+1:
247
248PyDict_Copy:PyObject*::+1:
249PyDict_Copy:PyObject*:p:0:
250
251PyDict_Next:int:::
252PyDict_Next:PyObject*:p:0:
253PyDict_Next:int:ppos::
254PyDict_Next:PyObject**:pkey:0:
255PyDict_Next:PyObject**:pvalue:0:
256
257PyDict_SetItem:int:::
258PyDict_SetItem:PyObject*:p:0:
259PyDict_SetItem:PyObject*:key:+1:
260PyDict_SetItem:PyObject*:val:+1:
261
262PyDict_SetItemString:int:::
263PyDict_SetItemString:PyObject*:p:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300264PyDict_SetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000265PyDict_SetItemString:PyObject*:val:+1:
266
267PyDict_Size:int:::
268PyDict_Size:PyObject*:p::
269
270PyDict_Values:PyObject*::+1:
271PyDict_Values:PyObject*:p:0:
272
273PyDictProxy_New:PyObject*::+1:
274PyDictProxy_New:PyObject*:dict:0:
275
276PyErr_BadArgument:int:::
277
278PyErr_BadInternalCall:void:::
279
280PyErr_CheckSignals:int:::
281
282PyErr_Clear:void:::
283
284PyErr_ExceptionMatches:int:::
285PyErr_ExceptionMatches:PyObject*:exc:0:
286
287PyErr_Fetch:void:::
288PyErr_Fetch:PyObject**:ptype:0:
289PyErr_Fetch:PyObject**:pvalue:0:
290PyErr_Fetch:PyObject**:ptraceback:0:
291
292PyErr_GivenExceptionMatches:int:::
293PyErr_GivenExceptionMatches:PyObject*:given:0:
294PyErr_GivenExceptionMatches:PyObject*:exc:0:
295
296PyErr_NewException:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300297PyErr_NewException:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000298PyErr_NewException:PyObject*:base:0:
299PyErr_NewException:PyObject*:dict:0:
300
Georg Brandl1e28a272009-12-28 08:41:01 +0000301PyErr_NewExceptionWithDoc:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300302PyErr_NewExceptionWithDoc:const char*:name::
303PyErr_NewExceptionWithDoc:const char*:doc::
Georg Brandl1e28a272009-12-28 08:41:01 +0000304PyErr_NewExceptionWithDoc:PyObject*:base:0:
305PyErr_NewExceptionWithDoc:PyObject*:dict:0:
306
Georg Brandl116aa622007-08-15 14:28:22 +0000307PyErr_NoMemory:PyObject*::null:
308
309PyErr_NormalizeException:void:::
310PyErr_NormalizeException:PyObject**:exc::???
311PyErr_NormalizeException:PyObject**:val::???
312PyErr_NormalizeException:PyObject**:tb::???
313
314PyErr_Occurred:PyObject*::0:
315
316PyErr_Print:void:::
317
318PyErr_Restore:void:::
319PyErr_Restore:PyObject*:type:-1:
320PyErr_Restore:PyObject*:value:-1:
321PyErr_Restore:PyObject*:traceback:-1:
322
323PyErr_SetExcFromWindowsErr:PyObject*::null:
324PyErr_SetExcFromWindowsErr:PyObject*:type:0:
325PyErr_SetExcFromWindowsErr:int:ierr::
326
327PyErr_SetExcFromWindowsErrWithFilename:PyObject*::null:
328PyErr_SetExcFromWindowsErrWithFilename:PyObject*:type:0:
329PyErr_SetExcFromWindowsErrWithFilename:int:ierr::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300330PyErr_SetExcFromWindowsErrWithFilename:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +0000331
332PyErr_SetFromErrno:PyObject*::null:
333PyErr_SetFromErrno:PyObject*:type:0:
334
335PyErr_SetFromErrnoWithFilename:PyObject*::null:
336PyErr_SetFromErrnoWithFilename:PyObject*:type:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300337PyErr_SetFromErrnoWithFilename:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +0000338
339PyErr_SetFromWindowsErr:PyObject*::null:
340PyErr_SetFromWindowsErr:int:ierr::
341
342PyErr_SetFromWindowsErrWithFilename:PyObject*::null:
343PyErr_SetFromWindowsErrWithFilename:int:ierr::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300344PyErr_SetFromWindowsErrWithFilename:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +0000345
346PyErr_SetInterrupt:void:::
347
348PyErr_SetNone:void:::
349PyErr_SetNone:PyObject*:type:+1:
350
351PyErr_SetObject:void:::
352PyErr_SetObject:PyObject*:type:+1:
353PyErr_SetObject:PyObject*:value:+1:
354
355PyErr_SetString:void:::
356PyErr_SetString:PyObject*:type:+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300357PyErr_SetString:const char*:message::
Georg Brandl116aa622007-08-15 14:28:22 +0000358
359PyErr_Format:PyObject*::null:
360PyErr_Format:PyObject*:exception:+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300361PyErr_Format:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000362PyErr_Format::...::
363
Antoine Pitrou0676a402014-09-30 21:16:27 +0200364PyErr_FormatV:PyObject*::null:
365PyErr_FormatV:PyObject*:exception:+1:
366PyErr_FormatV:const char*:format::
367PyErr_FormatV:va_list:vargs::
368
Georg Brandl116aa622007-08-15 14:28:22 +0000369PyErr_WarnEx:int:::
370PyErr_WarnEx:PyObject*:category:0:
371PyErr_WarnEx:const char*:message::
372PyErr_WarnEx:Py_ssize_t:stack_level::
373
374PyEval_AcquireLock:void:::
375
376PyEval_AcquireThread:void:::
377PyEval_AcquireThread:PyThreadState*:tstate::
378
Christian Heimesd8654cf2007-12-02 15:22:16 +0000379PyEval_GetBuiltins:PyObject*::0:
380PyEval_GetLocals:PyObject*::0:
381PyEval_GetGlobals:PyObject*::0:
382PyEval_GetFrame:PyObject*::0:
383
Georg Brandl116aa622007-08-15 14:28:22 +0000384PyEval_InitThreads:void:::
385
386PyEval_ReleaseLock:void:::
387
388PyEval_ReleaseThread:void:::
389PyEval_ReleaseThread:PyThreadState*:tstate::
390
391PyEval_RestoreThread:void:::
392PyEval_RestoreThread:PyThreadState*:tstate::
393
394PyEval_SaveThread:PyThreadState*:::
395
396PyEval_EvalCode:PyObject*::+1:
397PyEval_EvalCode:PyCodeObject*:co:0:
398PyEval_EvalCode:PyObject*:globals:0:
399PyEval_EvalCode:PyObject*:locals:0:
400
Petri Lehtinence770372011-10-23 21:03:33 +0300401PyException_GetTraceback:PyObject*::+1:
402
Georg Brandl116aa622007-08-15 14:28:22 +0000403PyFile_AsFile:FILE*:::
404PyFile_AsFile:PyFileObject*:p:0:
405
406PyFile_Check:int:::
407PyFile_Check:PyObject*:p:0:
408
409PyFile_FromFile:PyObject*::+1:
410PyFile_FromFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300411PyFile_FromFile:const char*:name::
412PyFile_FromFile:const char*:mode::
Georg Brandl116aa622007-08-15 14:28:22 +0000413PyFile_FromFile:int(*:close)::
414
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000415PyFile_FromFileEx:PyObject*::+1:
416PyFile_FromFileEx:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300417PyFile_FromFileEx:const char*:name::
418PyFile_FromFileEx:const char*:mode::
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000419PyFile_FromFileEx:int(*:close)::
420PyFile_FromFileEx:int:buffering::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300421PyFile_FromFileEx:const char*:encoding::
422PyFile_FromFileEx:const char*:newline::
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000423
Georg Brandl116aa622007-08-15 14:28:22 +0000424PyFile_FromString:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300425PyFile_FromString:const char*:name::
426PyFile_FromString:const char*:mode::
Georg Brandl116aa622007-08-15 14:28:22 +0000427
428PyFile_GetLine:PyObject*::+1:
429PyFile_GetLine:PyObject*:p::
430PyFile_GetLine:int:n::
431
432PyFile_Name:PyObject*::0:
433PyFile_Name:PyObject*:p:0:
434
435PyFile_SetBufSize:void:::
436PyFile_SetBufSize:PyFileObject*:p:0:
437PyFile_SetBufSize:int:n::
438
439PyFile_SoftSpace:int:::
440PyFile_SoftSpace:PyFileObject*:p:0:
441PyFile_SoftSpace:int:newflag::
442
443PyFile_WriteObject:int:::
444PyFile_WriteObject:PyObject*:obj:0:
445PyFile_WriteObject:PyFileObject*:p:0:
446PyFile_WriteObject:int:flags::
447
448PyFile_WriteString:int:::
449PyFile_WriteString:const char*:s::
450PyFile_WriteString:PyFileObject*:p:0:
451PyFile_WriteString:int:flags::
452
453PyFloat_AS_DOUBLE:double:::
454PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
455
456PyFloat_AsDouble:double:::
457PyFloat_AsDouble:PyObject*:pyfloat:0:
458
459PyFloat_Check:int:::
460PyFloat_Check:PyObject*:p:0:
461
462PyFloat_FromDouble:PyObject*::+1:
463PyFloat_FromDouble:double:v::
464
465PyFloat_FromString:PyObject*::+1:
466PyFloat_FromString:PyObject*:str:0:
467
468PyFrozenSet_New:PyObject*::+1:
469PyFrozenSet_New:PyObject*:iterable:0:
470
471PyFunction_GetClosure:PyObject*::0:
472PyFunction_GetClosure:PyObject*:op:0:
473
474PyFunction_GetCode:PyObject*::0:
475PyFunction_GetCode:PyObject*:op:0:
476
477PyFunction_GetDefaults:PyObject*::0:
478PyFunction_GetDefaults:PyObject*:op:0:
479
480PyFunction_GetGlobals:PyObject*::0:
481PyFunction_GetGlobals:PyObject*:op:0:
482
483PyFunction_GetModule:PyObject*::0:
484PyFunction_GetModule:PyObject*:op:0:
485
486PyFunction_New:PyObject*::+1:
487PyFunction_New:PyObject*:code:+1:
488PyFunction_New:PyObject*:globals:+1:
489
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100490PyFunction_NewWithQualName:PyObject*::+1:
491PyFunction_NewWithQualName:PyObject*:code:+1:
492PyFunction_NewWithQualName:PyObject*:globals:+1:
493PyFunction_NewWithQualName:PyObject*:qualname:+1:
494
Georg Brandl116aa622007-08-15 14:28:22 +0000495PyFunction_SetClosure:int:::
496PyFunction_SetClosure:PyObject*:op:0:
497PyFunction_SetClosure:PyObject*:closure:+1:
498
499PyFunction_SetDefaults:int:::
500PyFunction_SetDefaults:PyObject*:op:0:
501PyFunction_SetDefaults:PyObject*:defaults:+1:
502
503PyGen_New:PyObject*::+1:
504PyGen_New:PyFrameObject*:frame:0:
505
Yury Selivanov5376ba92015-06-22 12:19:30 -0400506PyGen_NewWithQualName:PyObject*::+1:
507PyGen_NewWithQualName:PyFrameObject*:frame:0:
508
509PyCoro_New:PyObject*::+1:
510PyCoro_New:PyFrameObject*:frame:0:
511
Georg Brandl116aa622007-08-15 14:28:22 +0000512Py_InitModule:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300513Py_InitModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000514Py_InitModule:PyMethodDef[]:methods::
515
516Py_InitModule3:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300517Py_InitModule3:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000518Py_InitModule3:PyMethodDef[]:methods::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300519Py_InitModule3:const char*:doc::
Georg Brandl116aa622007-08-15 14:28:22 +0000520
521Py_InitModule4:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300522Py_InitModule4:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000523Py_InitModule4:PyMethodDef[]:methods::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300524Py_InitModule4:const char*:doc::
Georg Brandl116aa622007-08-15 14:28:22 +0000525Py_InitModule4:PyObject*:self::
526Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
527
528PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300529PyImport_AddModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000530
531PyImport_Cleanup:void:::
532
533PyImport_ExecCodeModule:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300534PyImport_ExecCodeModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000535PyImport_ExecCodeModule:PyObject*:co:0:
536
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000537PyImport_ExecCodeModuleEx:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300538PyImport_ExecCodeModuleEx:const char*:name::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000539PyImport_ExecCodeModuleEx:PyObject*:co:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300540PyImport_ExecCodeModuleEx:const char*:pathname::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000541
Georg Brandl116aa622007-08-15 14:28:22 +0000542PyImport_GetMagicNumber:long:::
543
544PyImport_GetModuleDict:PyObject*::0:
545
546PyImport_Import:PyObject*::+1:
547PyImport_Import:PyObject*:name:0:
548
549PyImport_ImportFrozenModule:int:::
Serhiy Storchakac6792272013-10-19 21:03:34 +0300550PyImport_ImportFrozenModule:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000551
552PyImport_ImportModule:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300553PyImport_ImportModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000554
555PyImport_ImportModuleEx:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300556PyImport_ImportModuleEx:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000557PyImport_ImportModuleEx:PyObject*:globals:0:???
558PyImport_ImportModuleEx:PyObject*:locals:0:???
559PyImport_ImportModuleEx:PyObject*:fromlist:0:???
560
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000561PyImport_ImportModuleLevel:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300562PyImport_ImportModuleLevel:const char*:name::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000563PyImport_ImportModuleLevel:PyObject*:globals:0:???
564PyImport_ImportModuleLevel:PyObject*:locals:0:???
565PyImport_ImportModuleLevel:PyObject*:fromlist:0:???
566PyImport_ImportModuleLevel:int:level::
567
Georg Brandl116aa622007-08-15 14:28:22 +0000568PyImport_ReloadModule:PyObject*::+1:
569PyImport_ReloadModule:PyObject*:m:0:
570
571PyInstance_New:PyObject*::+1:
572PyInstance_New:PyObject*:klass:+1:
573PyInstance_New:PyObject*:arg:0:
574PyInstance_New:PyObject*:kw:0:
575
576PyInstance_NewRaw:PyObject*::+1:
577PyInstance_NewRaw:PyObject*:klass:+1:
578PyInstance_NewRaw:PyObject*:dict:+1:
579
580PyInt_AS_LONG:long:::
581PyInt_AS_LONG:PyIntObject*:io:0:
582
583PyInt_AsLong:long:::
584PyInt_AsLong:PyObject*:io:0:
585
586PyInt_Check:int:::
587PyInt_Check:PyObject*:op:0:
588
589PyInt_FromLong:PyObject*::+1:
590PyInt_FromLong:long:ival::
591
592PyInt_FromString:PyObject*::+1:
593PyInt_FromString:char*:str:0:
594PyInt_FromString:char**:pend:0:
595PyInt_FromString:int:base:0:
596
597PyInt_FromSsize_t:PyObject*::+1:
598PyInt_FromSsize_t:Py_ssize_t:ival::
599
600PyInt_GetMax:long:::
601
602PyInterpreterState_Clear:void:::
603PyInterpreterState_Clear:PyInterpreterState*:interp::
604
605PyInterpreterState_Delete:void:::
606PyInterpreterState_Delete:PyInterpreterState*:interp::
607
608PyInterpreterState_New:PyInterpreterState*:::
609
610PyIter_Check:int:o:0:
611
612PyIter_Next:PyObject*::+1:
613PyIter_Next:PyObject*:o:0:
614
615PyList_Append:int:::
616PyList_Append:PyObject*:list:0:
617PyList_Append:PyObject*:item:+1:
618
619PyList_AsTuple:PyObject*::+1:
620PyList_AsTuple:PyObject*:list:0:
621
622PyList_Check:int:::
623PyList_Check:PyObject*:p:0:
624
625PyList_GET_ITEM:PyObject*::0:
626PyList_GET_ITEM:PyObject*:list:0:
627PyList_GET_ITEM:int:i:0:
628
629PyList_GET_SIZE:int:::
630PyList_GET_SIZE:PyObject*:list:0:
631
632PyList_GetItem:PyObject*::0:
633PyList_GetItem:PyObject*:list:0:
634PyList_GetItem:int:index::
635
636PyList_GetSlice:PyObject*::+1:
637PyList_GetSlice:PyObject*:list:0:
638PyList_GetSlice:int:low::
639PyList_GetSlice:int:high::
640
641PyList_Insert:int:::
642PyList_Insert:PyObject*:list:0:
643PyList_Insert:int:index::
644PyList_Insert:PyObject*:item:+1:
645
646PyList_New:PyObject*::+1:
647PyList_New:int:len::
648
649PyList_Reverse:int:::
650PyList_Reverse:PyObject*:list:0:
651
652PyList_SET_ITEM:void:::
653PyList_SET_ITEM:PyObject*:list:0:
654PyList_SET_ITEM:int:i::
655PyList_SET_ITEM:PyObject*:o:0:
656
657PyList_SetItem:int:::
658PyList_SetItem:PyObject*:list:0:
659PyList_SetItem:int:index::
660PyList_SetItem:PyObject*:item:0:
661
662PyList_SetSlice:int:::
663PyList_SetSlice:PyObject*:list:0:
664PyList_SetSlice:int:low::
665PyList_SetSlice:int:high::
666PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
667
668PyList_Size:int:::
669PyList_Size:PyObject*:list:0:
670
671PyList_Sort:int:::
672PyList_Sort:PyObject*:list:0:
673
674PyLong_AsDouble:double:::
675PyLong_AsDouble:PyObject*:pylong:0:
676
677PyLong_AsLong:long:::
678PyLong_AsLong:PyObject*:pylong:0:
679
680PyLong_AsUnsignedLong:unsigned long:::
681PyLong_AsUnsignedLong:PyObject*:pylong:0:
682
683PyLong_Check:int:::
684PyLong_Check:PyObject*:p:0:
685
686PyLong_FromDouble:PyObject*::+1:
687PyLong_FromDouble:double:v::
688
689PyLong_FromLong:PyObject*::+1:
690PyLong_FromLong:long:v::
691
692PyLong_FromLongLong:PyObject*::+1:
693PyLong_FromLongLong:long long:v::
694
695PyLong_FromUnsignedLongLong:PyObject*::+1:
696PyLong_FromUnsignedLongLong:unsigned long long:v::
697
698PyLong_FromString:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300699PyLong_FromString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +0000700PyLong_FromString:char**:pend::
701PyLong_FromString:int:base::
702
703PyLong_FromUnicode:PyObject*::+1:
704PyLong_FromUnicode:Py_UNICODE:u::
705PyLong_FromUnicode:int:length::
706PyLong_FromUnicode:int:base::
707
708PyLong_FromUnsignedLong:PyObject*::+1:
709PyLong_FromUnsignedLong:unsignedlong:v::
710
711PyLong_FromVoidPtr:PyObject*::+1:
712PyLong_FromVoidPtr:void*:p::
713
714PyMapping_Check:int:::
715PyMapping_Check:PyObject*:o:0:
716
717PyMapping_DelItem:int:::
718PyMapping_DelItem:PyObject*:o:0:
719PyMapping_DelItem:PyObject*:key:0:
720
721PyMapping_DelItemString:int:::
722PyMapping_DelItemString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300723PyMapping_DelItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000724
725PyMapping_GetItemString:PyObject*::+1:
726PyMapping_GetItemString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300727PyMapping_GetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000728
729PyMapping_HasKey:int:::
730PyMapping_HasKey:PyObject*:o:0:
731PyMapping_HasKey:PyObject*:key::
732
733PyMapping_HasKeyString:int:::
734PyMapping_HasKeyString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300735PyMapping_HasKeyString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000736
737PyMapping_Items:PyObject*::+1:
738PyMapping_Items:PyObject*:o:0:
739
740PyMapping_Keys:PyObject*::+1:
741PyMapping_Keys:PyObject*:o:0:
742
743PyMapping_Length:int:::
744PyMapping_Length:PyObject*:o:0:
745
746PyMapping_SetItemString:int:::
747PyMapping_SetItemString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300748PyMapping_SetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000749PyMapping_SetItemString:PyObject*:v:+1:
750
751PyMapping_Values:PyObject*::+1:
752PyMapping_Values:PyObject*:o:0:
753
754PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
755PyMarshal_ReadLastObjectFromFile:FILE*:file::
756
757PyMarshal_ReadObjectFromFile:PyObject*::+1:
758PyMarshal_ReadObjectFromFile:FILE*:file::
759
760PyMarshal_ReadObjectFromString:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300761PyMarshal_ReadObjectFromString:const char*:string::
Georg Brandl116aa622007-08-15 14:28:22 +0000762PyMarshal_ReadObjectFromString:int:len::
763
764PyMarshal_WriteObjectToString:PyObject*::+1:
765PyMarshal_WriteObjectToString:PyObject*:value:0:
766
767PyMethod_Class:PyObject*::0:
768PyMethod_Class:PyObject*:im:0:
769
770PyMethod_Function:PyObject*::0:
771PyMethod_Function:PyObject*:im:0:
772
773PyMethod_GET_CLASS:PyObject*::0:
774PyMethod_GET_CLASS:PyObject*:im:0:
775
776PyMethod_GET_FUNCTION:PyObject*::0:
777PyMethod_GET_FUNCTION:PyObject*:im:0:
778
779PyMethod_GET_SELF:PyObject*::0:
780PyMethod_GET_SELF:PyObject*:im:0:
781
782PyMethod_New:PyObject*::+1:
783PyMethod_New:PyObject*:func:0:
784PyMethod_New:PyObject*:self:0:
785PyMethod_New:PyObject*:class:0:
786
787PyMethod_Self:PyObject*::0:
788PyMethod_Self:PyObject*:im:0:
789
790PyModule_GetDict:PyObject*::0:
791PyModule_GetDict::PyObject* module:0:
792
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300793PyModule_GetFilename:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000794PyModule_GetFilename:PyObject*:module:0:
795
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300796PyModule_GetName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000797PyModule_GetName:PyObject*:module:0:
798
799PyModule_New:PyObject*::+1:
800PyModule_New::char* name::
801
802PyNumber_Absolute:PyObject*::+1:
803PyNumber_Absolute:PyObject*:o:0:
804
805PyNumber_Add:PyObject*::+1:
806PyNumber_Add:PyObject*:o1:0:
807PyNumber_Add:PyObject*:o2:0:
808
809PyNumber_And:PyObject*::+1:
810PyNumber_And:PyObject*:o1:0:
811PyNumber_And:PyObject*:o2:0:
812
813PyNumber_Check:PyObject*:o:0:
814PyNumber_Check:int:::
815
816PyNumber_Divide:PyObject*::+1:
817PyNumber_Divide:PyObject*:o1:0:
818PyNumber_Divide:PyObject*:o2:0:
819
820PyNumber_Divmod:PyObject*::+1:
821PyNumber_Divmod:PyObject*:o1:0:
822PyNumber_Divmod:PyObject*:o2:0:
823
824PyNumber_Float:PyObject*::+1:
825PyNumber_Float:PyObject*:o:0:
826
827PyNumber_FloorDivide:PyObject*::+1:
828PyNumber_FloorDivide:PyObject*:v:0:
829PyNumber_FloorDivide:PyObject*:w:0:
830
831PyNumber_InPlaceAdd:PyObject*::+1:
832PyNumber_InPlaceAdd:PyObject*:v:0:
833PyNumber_InPlaceAdd:PyObject*:w:0:
834
835PyNumber_InPlaceAnd:PyObject*::+1:
836PyNumber_InPlaceAnd:PyObject*:v:0:
837PyNumber_InPlaceAnd:PyObject*:w:0:
838
839PyNumber_InPlaceDivide:PyObject*::+1:
840PyNumber_InPlaceDivide:PyObject*:v:0:
841PyNumber_InPlaceDivide:PyObject*:w:0:
842
843PyNumber_InPlaceFloorDivide:PyObject*::+1:
844PyNumber_InPlaceFloorDivide:PyObject*:v:0:
845PyNumber_InPlaceFloorDivide:PyObject*:w:0:
846
847PyNumber_InPlaceLshift:PyObject*::+1:
848PyNumber_InPlaceLshift:PyObject*:v:0:
849PyNumber_InPlaceLshift:PyObject*:w:0:
850
851PyNumber_InPlaceMultiply:PyObject*::+1:
852PyNumber_InPlaceMultiply:PyObject*:v:0:
853PyNumber_InPlaceMultiply:PyObject*:w:0:
854
855PyNumber_InPlaceOr:PyObject*::+1:
856PyNumber_InPlaceOr:PyObject*:v:0:
857PyNumber_InPlaceOr:PyObject*:w:0:
858
859PyNumber_InPlacePower:PyObject*::+1:
860PyNumber_InPlacePower:PyObject*:v:0:
861PyNumber_InPlacePower:PyObject*:w:0:
862PyNumber_InPlacePower:PyObject*:z:0:
863
864PyNumber_InPlaceRemainder:PyObject*::+1:
865PyNumber_InPlaceRemainder:PyObject*:v:0:
866PyNumber_InPlaceRemainder:PyObject*:w:0:
867
868PyNumber_InPlaceRshift:PyObject*::+1:
869PyNumber_InPlaceRshift:PyObject*:v:0:
870PyNumber_InPlaceRshift:PyObject*:w:0:
871
872PyNumber_InPlaceSubtract:PyObject*::+1:
873PyNumber_InPlaceSubtract:PyObject*:v:0:
874PyNumber_InPlaceSubtract:PyObject*:w:0:
875
876PyNumber_InPlaceTrueDivide:PyObject*::+1:
877PyNumber_InPlaceTrueDivide:PyObject*:v:0:
878PyNumber_InPlaceTrueDivide:PyObject*:w:0:
879
880PyNumber_InPlaceXor:PyObject*::+1:
881PyNumber_InPlaceXor:PyObject*:v:0:
882PyNumber_InPlaceXor:PyObject*:w:0:
883
Georg Brandl116aa622007-08-15 14:28:22 +0000884PyNumber_Invert:PyObject*::+1:
885PyNumber_Invert:PyObject*:o:0:
886
887PyNumber_Long:PyObject*::+1:
888PyNumber_Long:PyObject*:o:0:
889
890PyNumber_Lshift:PyObject*::+1:
891PyNumber_Lshift:PyObject*:o1:0:
892PyNumber_Lshift:PyObject*:o2:0:
893
894PyNumber_Multiply:PyObject*::+1:
895PyNumber_Multiply:PyObject*:o1:0:
896PyNumber_Multiply:PyObject*:o2:0:
897
898PyNumber_Negative:PyObject*::+1:
899PyNumber_Negative:PyObject*:o:0:
900
901PyNumber_Or:PyObject*::+1:
902PyNumber_Or:PyObject*:o1:0:
903PyNumber_Or:PyObject*:o2:0:
904
905PyNumber_Positive:PyObject*::+1:
906PyNumber_Positive:PyObject*:o:0:
907
908PyNumber_Power:PyObject*::+1:
909PyNumber_Power:PyObject*:o1:0:
910PyNumber_Power:PyObject*:o2:0:
911PyNumber_Power:PyObject*:o3:0:
912
913PyNumber_Remainder:PyObject*::+1:
914PyNumber_Remainder:PyObject*:o1:0:
915PyNumber_Remainder:PyObject*:o2:0:
916
917PyNumber_Rshift:PyObject*::+1:
918PyNumber_Rshift:PyObject*:o1:0:
919PyNumber_Rshift:PyObject*:o2:0:
920
921PyNumber_Subtract:PyObject*::+1:
922PyNumber_Subtract:PyObject*:o1:0:
923PyNumber_Subtract:PyObject*:o2:0:
924
925PyNumber_TrueDivide:PyObject*::+1:
926PyNumber_TrueDivide:PyObject*:v:0:
927PyNumber_TrueDivide:PyObject*:w:0:
928
929PyNumber_Xor:PyObject*::+1:
930PyNumber_Xor:PyObject*:o1:0:
931PyNumber_Xor:PyObject*:o2:0:
932
Larry Hastingsb0827312014-02-09 22:05:19 -0800933PyObject_AsFileDescriptor:int:::
Georg Brandl116aa622007-08-15 14:28:22 +0000934PyObject_AsFileDescriptor:PyObject*:o:0:
935
Brett Cannon746102b2016-06-09 16:58:38 -0700936PyOS_FSPath:PyObject*::+1:
937PyOS_FSPath:PyObject*:path:0:
938
Georg Brandl116aa622007-08-15 14:28:22 +0000939PyObject_Call:PyObject*::+1:
940PyObject_Call:PyObject*:callable_object:0:
941PyObject_Call:PyObject*:args:0:
942PyObject_Call:PyObject*:kw:0:
943
944PyObject_CallFunction:PyObject*::+1:
945PyObject_CallFunction:PyObject*:callable_object:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300946PyObject_CallFunction:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000947PyObject_CallFunction::...::
948
949PyObject_CallFunctionObjArgs:PyObject*::+1:
950PyObject_CallFunctionObjArgs:PyObject*:callable:0:
951PyObject_CallFunctionObjArgs::...::
952
953PyObject_CallMethod:PyObject*::+1:
954PyObject_CallMethod:PyObject*:o:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300955PyObject_CallMethod:const char*:m::
956PyObject_CallMethod:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000957PyObject_CallMethod::...::
958
959PyObject_CallMethodObjArgs:PyObject*::+1:
960PyObject_CallMethodObjArgs:PyObject*:o:0:
Serhiy Storchakadce05502013-05-28 22:46:15 +0300961PyObject_CallMethodObjArgs:PyObject*:name:0:
Georg Brandl116aa622007-08-15 14:28:22 +0000962PyObject_CallMethodObjArgs::...::
963
964PyObject_CallObject:PyObject*::+1:
965PyObject_CallObject:PyObject*:callable_object:0:
966PyObject_CallObject:PyObject*:args:0:
967
968PyObject_Cmp:int:::
969PyObject_Cmp:PyObject*:o1:0:
970PyObject_Cmp:PyObject*:o2:0:
971PyObject_Cmp:int*:result::
972
973PyObject_Compare:int:::
974PyObject_Compare:PyObject*:o1:0:
975PyObject_Compare:PyObject*:o2:0:
976
977PyObject_DelAttr:int:::
978PyObject_DelAttr:PyObject*:o:0:
979PyObject_DelAttr:PyObject*:attr_name:0:
980
981PyObject_DelAttrString:int:::
982PyObject_DelAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300983PyObject_DelAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +0000984
985PyObject_DelItem:int:::
986PyObject_DelItem:PyObject*:o:0:
987PyObject_DelItem:PyObject*:key:0:
988
989PyObject_Dir:PyObject*::+1:
990PyObject_Dir:PyObject*:o:0:
991
992PyObject_GetAttr:PyObject*::+1:
993PyObject_GetAttr:PyObject*:o:0:
994PyObject_GetAttr:PyObject*:attr_name:0:
995
996PyObject_GetAttrString:PyObject*::+1:
997PyObject_GetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300998PyObject_GetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +0000999
1000PyObject_GetItem:PyObject*::+1:
1001PyObject_GetItem:PyObject*:o:0:
1002PyObject_GetItem:PyObject*:key:0:
1003
1004PyObject_GetIter:PyObject*::+1:
1005PyObject_GetIter:PyObject*:o:0:
1006
1007PyObject_HasAttr:int:::
1008PyObject_HasAttr:PyObject*:o:0:
1009PyObject_HasAttr:PyObject*:attr_name:0:
1010
1011PyObject_HasAttrString:int:::
1012PyObject_HasAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001013PyObject_HasAttrString:const char*:attr_name:0:
Georg Brandl116aa622007-08-15 14:28:22 +00001014
1015PyObject_Hash:int:::
1016PyObject_Hash:PyObject*:o:0:
1017
1018PyObject_IsTrue:int:::
1019PyObject_IsTrue:PyObject*:o:0:
1020
1021PyObject_Init:PyObject*::0:
1022PyObject_Init:PyObject*:op:0:
1023
1024PyObject_InitVar:PyVarObject*::0:
1025PyObject_InitVar:PyVarObject*:op:0:
1026
1027PyObject_Length:int:::
1028PyObject_Length:PyObject*:o:0:
1029
1030PyObject_NEW:PyObject*::+1:
1031
1032PyObject_New:PyObject*::+1:
1033
1034PyObject_NEW_VAR:PyObject*::+1:
1035
1036PyObject_NewVar:PyObject*::+1:
1037
1038PyObject_Print:int:::
1039PyObject_Print:PyObject*:o:0:
1040PyObject_Print:FILE*:fp::
1041PyObject_Print:int:flags::
1042
1043PyObject_Repr:PyObject*::+1:
1044PyObject_Repr:PyObject*:o:0:
1045
1046PyObject_RichCompare:PyObject*::+1:
1047PyObject_RichCompare:PyObject*:o1:0:
1048PyObject_RichCompare:PyObject*:o2:0:
1049PyObject_RichCompare:int:opid::
1050
1051PyObject_RichCompareBool:int:::
1052PyObject_RichCompareBool:PyObject*:o1:0:
1053PyObject_RichCompareBool:PyObject*:o2:0:
1054PyObject_RichCompareBool:int:opid::
1055
1056PyObject_SetAttr:int:::
1057PyObject_SetAttr:PyObject*:o:0:
1058PyObject_SetAttr:PyObject*:attr_name:0:
1059PyObject_SetAttr:PyObject*:v:+1:
1060
1061PyObject_SetAttrString:int:::
1062PyObject_SetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001063PyObject_SetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +00001064PyObject_SetAttrString:PyObject*:v:+1:
1065
1066PyObject_SetItem:int:::
1067PyObject_SetItem:PyObject*:o:0:
1068PyObject_SetItem:PyObject*:key:0:
1069PyObject_SetItem:PyObject*:v:+1:
1070
1071PyObject_Str:PyObject*::+1:
1072PyObject_Str:PyObject*:o:0:
1073
1074PyObject_Type:PyObject*::+1:
1075PyObject_Type:PyObject*:o:0:
1076
1077PyObject_Unicode:PyObject*::+1:
1078PyObject_Unicode:PyObject*:o:0:
1079
1080PyParser_SimpleParseFile:struct _node*:::
1081PyParser_SimpleParseFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001082PyParser_SimpleParseFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001083PyParser_SimpleParseFile:int:start::
1084
1085PyParser_SimpleParseString:struct _node*:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001086PyParser_SimpleParseString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001087PyParser_SimpleParseString:int:start::
1088
1089PyRun_AnyFile:int:::
1090PyRun_AnyFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001091PyRun_AnyFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001092
1093PyRun_File:PyObject*::+1:??? -- same as eval_code2()
1094PyRun_File:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001095PyRun_File:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001096PyRun_File:int:start::
1097PyRun_File:PyObject*:globals:0:
1098PyRun_File:PyObject*:locals:0:
1099
1100PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1101PyRun_FileEx:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001102PyRun_FileEx:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001103PyRun_FileEx:int:start::
1104PyRun_FileEx:PyObject*:globals:0:
1105PyRun_FileEx:PyObject*:locals:0:
1106PyRun_FileEx:int:closeit::
1107
1108PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1109PyRun_FileFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001110PyRun_FileFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001111PyRun_FileFlags:int:start::
1112PyRun_FileFlags:PyObject*:globals:0:
1113PyRun_FileFlags:PyObject*:locals:0:
1114PyRun_FileFlags:PyCompilerFlags*:flags::
1115
1116PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1117PyRun_FileExFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001118PyRun_FileExFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001119PyRun_FileExFlags:int:start::
1120PyRun_FileExFlags:PyObject*:globals:0:
1121PyRun_FileExFlags:PyObject*:locals:0:
1122PyRun_FileExFlags:int:closeit::
1123PyRun_FileExFlags:PyCompilerFlags*:flags::
1124
1125PyRun_InteractiveLoop:int:::
1126PyRun_InteractiveLoop:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001127PyRun_InteractiveLoop:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001128
1129PyRun_InteractiveOne:int:::
1130PyRun_InteractiveOne:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001131PyRun_InteractiveOne:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001132
1133PyRun_SimpleFile:int:::
1134PyRun_SimpleFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001135PyRun_SimpleFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001136
1137PyRun_SimpleString:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001138PyRun_SimpleString:const char*:command::
Georg Brandl116aa622007-08-15 14:28:22 +00001139
1140PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001141PyRun_String:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001142PyRun_String:int:start::
1143PyRun_String:PyObject*:globals:0:
1144PyRun_String:PyObject*:locals:0:
1145
1146PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001147PyRun_StringFlags:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001148PyRun_StringFlags:int:start::
1149PyRun_StringFlags:PyObject*:globals:0:
1150PyRun_StringFlags:PyObject*:locals:0:
1151PyRun_StringFlags:PyCompilerFlags*:flags::
1152
1153PySeqIter_New:PyObject*::+1:
1154PySeqIter_New:PyObject*:seq::
1155
1156PySequence_Check:int:::
1157PySequence_Check:PyObject*:o:0:
1158
1159PySequence_Concat:PyObject*::+1:
1160PySequence_Concat:PyObject*:o1:0:
1161PySequence_Concat:PyObject*:o2:0:
1162
1163PySequence_Count:int:::
1164PySequence_Count:PyObject*:o:0:
1165PySequence_Count:PyObject*:value:0:
1166
1167PySequence_DelItem:int:::
1168PySequence_DelItem:PyObject*:o:0:
1169PySequence_DelItem:int:i::
1170
1171PySequence_DelSlice:int:::
1172PySequence_DelSlice:PyObject*:o:0:
1173PySequence_DelSlice:int:i1::
1174PySequence_DelSlice:int:i2::
1175
1176PySequence_Fast:PyObject*::+1:
1177PySequence_Fast:PyObject*:v:0:
1178PySequence_Fast:const char*:m::
1179
1180PySequence_Fast_GET_ITEM:PyObject*::0:
1181PySequence_Fast_GET_ITEM:PyObject*:o:0:
1182PySequence_Fast_GET_ITEM:int:i::
1183
1184PySequence_GetItem:PyObject*::+1:
1185PySequence_GetItem:PyObject*:o:0:
1186PySequence_GetItem:int:i::
1187
1188PySequence_GetSlice:PyObject*::+1:
1189PySequence_GetSlice:PyObject*:o:0:
1190PySequence_GetSlice:int:i1::
1191PySequence_GetSlice:int:i2::
1192
1193PySequence_In:int:::
1194PySequence_In:PyObject*:o:0:
1195PySequence_In:PyObject*:value:0:
1196
1197PySequence_Index:int:::
1198PySequence_Index:PyObject*:o:0:
1199PySequence_Index:PyObject*:value:0:
1200
1201PySequence_InPlaceConcat:PyObject*::+1:
1202PySequence_InPlaceConcat:PyObject*:s:0:
1203PySequence_InPlaceConcat:PyObject*:o:0:
1204
1205PySequence_InPlaceRepeat:PyObject*::+1:
1206PySequence_InPlaceRepeat:PyObject*:s:0:
1207PySequence_InPlaceRepeat:PyObject*:o:0:
1208
1209PySequence_ITEM:PyObject*::+1:
1210PySequence_ITEM:PyObject*:o:0:
1211PySequence_ITEM:int:i::
1212
1213PySequence_Repeat:PyObject*::+1:
1214PySequence_Repeat:PyObject*:o:0:
1215PySequence_Repeat:int:count::
1216
1217PySequence_SetItem:int:::
1218PySequence_SetItem:PyObject*:o:0:
1219PySequence_SetItem:int:i::
1220PySequence_SetItem:PyObject*:v:+1:
1221
1222PySequence_SetSlice:int:::
1223PySequence_SetSlice:PyObject*:o:0:
1224PySequence_SetSlice:int:i1::
1225PySequence_SetSlice:int:i2::
1226PySequence_SetSlice:PyObject*:v:+1:
1227
1228PySequence_List:PyObject*::+1:
1229PySequence_List:PyObject*:o:0:
1230
1231PySequence_Tuple:PyObject*::+1:
1232PySequence_Tuple:PyObject*:o:0:
1233
1234PySet_Append:int:::
1235PySet_Append:PyObject*:set:0:
1236PySet_Append:PyObject*:key:+1:
1237
1238PySet_Contains:int:::
1239PySet_Contains:PyObject*:anyset:0:
1240PySet_Contains:PyObject*:key:0:
1241
1242PySet_Discard:int:::
1243PySet_Discard:PyObject*:set:0:
1244PySet_Discard:PyObject*:key:-1:no effect if key not found
1245
1246PySet_New:PyObject*::+1:
1247PySet_New:PyObject*:iterable:0:
1248
1249PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
1250PySet_Pop:PyObject*:set:0:
1251
1252PySet_Size:int:::
1253PySet_Size:PyObject*:anyset:0:
1254
1255PySlice_Check:int:::
1256PySlice_Check:PyObject*:ob:0:
1257
1258PySlice_New:PyObject*::+1:
1259PySlice_New:PyObject*:start:0:
1260PySlice_New:PyObject*:stop:0:
1261PySlice_New:PyObject*:step:0:
1262
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001263PyString_AS_STRING:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001264PyString_AS_STRING:PyObject*:string:0:
1265
1266PyString_AsDecodedObject:PyObject*::+1:
1267PyString_AsDecodedObject:PyObject*:str:0:
1268PyString_AsDecodedObject:const char*:encoding::
1269PyString_AsDecodedObject:const char*:errors::
1270
1271PyString_AsEncodedObject:PyObject*::+1:
1272PyString_AsEncodedObject:PyObject*:str:0:
1273PyString_AsEncodedObject:const char*:encoding::
1274PyString_AsEncodedObject:const char*:errors::
1275
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001276PyString_AsString:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001277PyString_AsString:PyObject*:string:0:
1278
1279PyString_AsStringAndSize:int:::
1280PyString_AsStringAndSize:PyObject*:obj:0:
1281PyString_AsStringAndSize:char**:buffer::
1282PyString_AsStringAndSize:int*:length::
1283
1284PyString_Check:int:::
1285PyString_Check:PyObject*:o:0:
1286
1287PyString_Concat:void:::
1288PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
1289PyString_Concat:PyObject*:newpart:0:
1290
1291PyString_ConcatAndDel:void:::
1292PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
1293PyString_ConcatAndDel:PyObject*:newpart:-1:
1294
1295PyString_Format:PyObject*::+1:
1296PyString_Format:PyObject*:format:0:
1297PyString_Format:PyObject*:args:0:
1298
1299PyString_FromString:PyObject*::+1:
1300PyString_FromString:const char*:v::
1301
1302PyString_FromStringAndSize:PyObject*::+1:
1303PyString_FromStringAndSize:const char*:v::
1304PyString_FromStringAndSize:int:len::
1305
1306PyString_FromFormat:PyObject*::+1:
1307PyString_FromFormat:const char*:format::
1308PyString_FromFormat::...::
1309
1310PyString_FromFormatV:PyObject*::+1:
1311PyString_FromFormatV:const char*:format::
1312PyString_FromFormatV:va_list:vargs::
1313
1314PyString_GET_SIZE:int:::
1315PyString_GET_SIZE:PyObject*:string:0:
1316
1317PyString_InternFromString:PyObject*::+1:
1318PyString_InternFromString:const char*:v::
1319
1320PyString_InternInPlace:void:::
1321PyString_InternInPlace:PyObject**:string:+1:???
1322
1323PyString_Size:int:::
1324PyString_Size:PyObject*:string:0:
1325
1326PyString_Decode:PyObject*::+1:
1327PyString_Decode:const char*:s::
1328PyString_Decode:int:size::
1329PyString_Decode:const char*:encoding::
1330PyString_Decode:const char*:errors::
1331
1332PyString_Encode:PyObject*::+1:
1333PyString_Encode:const char*:s::
1334PyString_Encode:int:size::
1335PyString_Encode:const char*:encoding::
1336PyString_Encode:const char*:errors::
1337
1338PyString_AsEncodedString:PyObject*::+1:
1339PyString_AsEncodedString:PyObject*:str::
1340PyString_AsEncodedString:const char*:encoding::
1341PyString_AsEncodedString:const char*:errors::
1342
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001343PySys_AddWarnOption:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001344PySys_AddWarnOption:const char*:s::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001345
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001346PySys_AddXOption:void:::
1347PySys_AddXOption:const wchar_t*:s::
1348
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001349PySys_GetObject:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001350PySys_GetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001351
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001352PySys_GetXOptions:PyObject*::0:
1353
Georg Brandl116aa622007-08-15 14:28:22 +00001354PySys_SetArgv:int:::
1355PySys_SetArgv:int:argc::
1356PySys_SetArgv:char**:argv::
1357
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001358PySys_SetObject:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001359PySys_SetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001360PySys_SetObject:PyObject*:v:+1:
1361
1362PySys_ResetWarnOptions:void:::
1363
1364PySys_WriteStdout:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001365PySys_WriteStdout:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001366
1367PySys_WriteStderr:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001368PySys_WriteStderr:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001369
Georg Brandl116aa622007-08-15 14:28:22 +00001370PyThreadState_Clear:void:::
1371PyThreadState_Clear:PyThreadState*:tstate::
1372
1373PyThreadState_Delete:void:::
1374PyThreadState_Delete:PyThreadState*:tstate::
1375
1376PyThreadState_Get:PyThreadState*:::
1377
1378PyThreadState_GetDict:PyObject*::0:
1379
1380PyThreadState_New:PyThreadState*:::
1381PyThreadState_New:PyInterpreterState*:interp::
1382
1383PyThreadState_Swap:PyThreadState*:::
1384PyThreadState_Swap:PyThreadState*:tstate::
1385
Miss Islington (bot)3718f922018-05-22 01:59:33 -07001386PyThread_tss_alloc:Py_tss_t*:::
1387
1388PyThread_tss_create:int:::
1389PyThread_tss_create:Py_tss_t*:key::
1390
1391PyThread_tss_delete:void:::
1392PyThread_tss_delete:Py_tss_t*:key::
1393
1394PyThread_tss_free:void:::
1395PyThread_tss_free:Py_tss_t*:key::
1396
1397PyThread_tss_get:void*:::
1398PyThread_tss_get:Py_tss_t*:key::
1399
1400PyThread_tss_is_created:int:::
1401PyThread_tss_is_created:Py_tss_t*:key::
1402
1403PyThread_tss_set:int:::
1404PyThread_tss_set:Py_tss_t*:key::
1405PyThread_tss_set:void*:value::
1406
Georg Brandl116aa622007-08-15 14:28:22 +00001407PyTime_FromTime:PyObject*::+1:
1408PyTime_FromTime:int:hour::
1409PyTime_FromTime:int:minute::
1410PyTime_FromTime:int:second::
1411PyTime_FromTime:int:usecond::
1412
1413PyTuple_Check:int:::
1414PyTuple_Check:PyObject*:p:0:
1415
1416PyTuple_GET_ITEM:PyObject*::0:
1417PyTuple_GET_ITEM:PyTupleObject*:p:0:
1418PyTuple_GET_ITEM:int:pos::
1419
1420PyTuple_GetItem:PyObject*::0:
1421PyTuple_GetItem:PyTupleObject*:p:0:
1422PyTuple_GetItem:int:pos::
1423
1424PyTuple_GetSlice:PyObject*::+1:
1425PyTuple_GetSlice:PyTupleObject*:p:0:
1426PyTuple_GetSlice:int:low::
1427PyTuple_GetSlice:int:high::
1428
1429PyTuple_New:PyObject*::+1:
1430PyTuple_New:int:len::
1431
1432PyTuple_Pack:PyObject*::+1:
1433PyTuple_Pack:int:len::
1434PyTuple_Pack:PyObject*:...:0:
1435
1436PyTuple_SET_ITEM:void:::
1437PyTuple_SET_ITEM:PyTupleObject*:p:0:
1438PyTuple_SET_ITEM:int:pos::
1439PyTuple_SET_ITEM:PyObject*:o:0:
1440
1441PyTuple_SetItem:int:::
1442PyTuple_SetItem:PyTupleObject*:p:0:
1443PyTuple_SetItem:int:pos::
1444PyTuple_SetItem:PyObject*:o:0:
1445
1446PyTuple_Size:int:::
1447PyTuple_Size:PyTupleObject*:p:0:
1448
1449PyType_GenericAlloc:PyObject*::+1:
1450PyType_GenericAlloc:PyObject*:type:0:
1451PyType_GenericAlloc:int:nitems:0:
1452
1453PyType_GenericNew:PyObject*::+1:
1454PyType_GenericNew:PyObject*:type:0:
1455PyType_GenericNew:PyObject*:args:0:
1456PyType_GenericNew:PyObject*:kwds:0:
1457
1458PyUnicode_Check:int:::
1459PyUnicode_Check:PyObject*:o:0:
1460
1461PyUnicode_GET_SIZE:int:::
1462PyUnicode_GET_SIZE:PyObject*:o:0:
1463
1464PyUnicode_GET_DATA_SIZE:int:::
1465PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1466
1467PyUnicode_AS_UNICODE:Py_UNICODE*:::
1468PyUnicode_AS_UNICODE:PyObject*:o:0:
1469
1470PyUnicode_AS_DATA:const char*:::
1471PyUnicode_AS_DATA:PyObject*:o:0:
1472
1473Py_UNICODE_ISSPACE:int:::
1474Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1475
1476Py_UNICODE_ISLOWER:int:::
1477Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1478
1479Py_UNICODE_ISUPPER:int:::
1480Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1481
1482Py_UNICODE_ISTITLE:int:::
1483Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1484
1485Py_UNICODE_ISLINEBREAK:int:::
1486Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1487
1488Py_UNICODE_ISDECIMAL:int:::
1489Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1490
1491Py_UNICODE_ISDIGIT:int:::
1492Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1493
1494Py_UNICODE_ISNUMERIC:int:::
1495Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1496
1497Py_UNICODE_TOLOWER:Py_UNICODE:::
1498Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1499
1500Py_UNICODE_TOUPPER:Py_UNICODE:::
1501Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1502
1503Py_UNICODE_TOTITLE:Py_UNICODE:::
1504Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1505
1506Py_UNICODE_TODECIMAL:int:::
1507Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1508
1509Py_UNICODE_TODIGIT:int:::
1510Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1511
1512Py_UNICODE_TONUMERIC:double:::
1513Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1514
1515PyUnicode_FromUnicode:PyObject*::+1:
1516PyUnicode_FromUnicode:const Py_UNICODE*:u::
1517PyUnicode_FromUnicode:int:size::
1518
1519PyUnicode_AsUnicode:Py_UNICODE*:::
1520PyUnicode_AsUnicode:PyObject :*unicode:0:
1521
1522PyUnicode_GetSize:int:::
1523PyUnicode_GetSize:PyObject :*unicode:0:
1524
1525PyUnicode_FromObject:PyObject*::+1:
1526PyUnicode_FromObject:PyObject*:*obj:0:
1527
1528PyUnicode_FromEncodedObject:PyObject*::+1:
1529PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1530PyUnicode_FromEncodedObject:const char*:encoding::
1531PyUnicode_FromEncodedObject:const char*:errors::
1532
1533PyUnicode_FromWideChar:PyObject*::+1:
1534PyUnicode_FromWideChar:const wchar_t*:w::
1535PyUnicode_FromWideChar:int:size::
1536
1537PyUnicode_AsWideChar:int:::
1538PyUnicode_AsWideChar:PyObject*:*unicode:0:
1539PyUnicode_AsWideChar:wchar_t*:w::
1540PyUnicode_AsWideChar:int:size::
1541
1542PyUnicode_Decode:PyObject*::+1:
1543PyUnicode_Decode:const char*:s::
1544PyUnicode_Decode:int:size::
1545PyUnicode_Decode:const char*:encoding::
1546PyUnicode_Decode:const char*:errors::
1547
1548PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1549PyUnicode_DecodeUTF16Stateful:const char*:s::
1550PyUnicode_DecodeUTF16Stateful:int:size::
1551PyUnicode_DecodeUTF16Stateful:const char*:errors::
1552PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1553PyUnicode_DecodeUTF16Stateful:int*:consumed::
1554
1555PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1556PyUnicode_DecodeUTF8Stateful:const char*:s::
1557PyUnicode_DecodeUTF8Stateful:int:size::
1558PyUnicode_DecodeUTF8Stateful:const char*:errors::
1559PyUnicode_DecodeUTF8Stateful:int*:consumed::
1560
1561PyUnicode_Encode:PyObject*::+1:
1562PyUnicode_Encode:const Py_UNICODE*:s::
1563PyUnicode_Encode:int:size::
1564PyUnicode_Encode:const char*:encoding::
1565PyUnicode_Encode:const char*:errors::
1566
1567PyUnicode_AsEncodedString:PyObject*::+1:
1568PyUnicode_AsEncodedString:PyObject*:unicode::
1569PyUnicode_AsEncodedString:const char*:encoding::
1570PyUnicode_AsEncodedString:const char*:errors::
1571
1572PyUnicode_DecodeUTF8:PyObject*::+1:
1573PyUnicode_DecodeUTF8:const char*:s::
1574PyUnicode_DecodeUTF8:int:size::
1575PyUnicode_DecodeUTF8:const char*:errors::
1576
1577PyUnicode_EncodeUTF8:PyObject*::+1:
1578PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1579PyUnicode_EncodeUTF8:int:size::
1580PyUnicode_EncodeUTF8:const char*:errors::
1581
1582PyUnicode_AsUTF8String:PyObject*::+1:
1583PyUnicode_AsUTF8String:PyObject*:unicode::
1584
1585PyUnicode_DecodeUTF16:PyObject*::+1:
1586PyUnicode_DecodeUTF16:const char*:s::
1587PyUnicode_DecodeUTF16:int:size::
1588PyUnicode_DecodeUTF16:const char*:errors::
1589PyUnicode_DecodeUTF16:int*:byteorder::
1590
1591PyUnicode_EncodeUTF16:PyObject*::+1:
1592PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1593PyUnicode_EncodeUTF16:int:size::
1594PyUnicode_EncodeUTF16:const char*:errors::
1595PyUnicode_EncodeUTF16:int:byteorder::
1596
1597PyUnicode_AsUTF16String:PyObject*::+1:
1598PyUnicode_AsUTF16String:PyObject*:unicode::
1599
1600PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1601PyUnicode_DecodeUnicodeEscape:const char*:s::
1602PyUnicode_DecodeUnicodeEscape:int:size::
1603PyUnicode_DecodeUnicodeEscape:const char*:errors::
1604
1605PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1606PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1607PyUnicode_EncodeUnicodeEscape:int:size::
1608PyUnicode_EncodeUnicodeEscape:const char*:errors::
1609
1610PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1611PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1612
1613PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1614PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1615PyUnicode_DecodeRawUnicodeEscape:int:size::
1616PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1617
1618PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1619PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1620PyUnicode_EncodeRawUnicodeEscape:int:size::
1621PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1622
1623PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1624PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1625
1626PyUnicode_DecodeLatin1:PyObject*::+1:
1627PyUnicode_DecodeLatin1:const char*:s::
1628PyUnicode_DecodeLatin1:int:size::
1629PyUnicode_DecodeLatin1:const char*:errors::
1630
1631PyUnicode_EncodeLatin1:PyObject*::+1:
1632PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1633PyUnicode_EncodeLatin1:int:size::
1634PyUnicode_EncodeLatin1:const char*:errors::
1635
1636PyUnicode_AsLatin1String:PyObject*::+1:
1637PyUnicode_AsLatin1String:PyObject*:unicode::
1638
1639PyUnicode_DecodeASCII:PyObject*::+1:
1640PyUnicode_DecodeASCII:const char*:s::
1641PyUnicode_DecodeASCII:int:size::
1642PyUnicode_DecodeASCII:const char*:errors::
1643
1644PyUnicode_EncodeASCII:PyObject*::+1:
1645PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1646PyUnicode_EncodeASCII:int:size::
1647PyUnicode_EncodeASCII:const char*:errors::
1648
1649PyUnicode_AsASCIIString:PyObject*::+1:
1650PyUnicode_AsASCIIString:PyObject*:unicode::
1651
1652PyUnicode_DecodeCharmap:PyObject*::+1:
1653PyUnicode_DecodeCharmap:const char*:s::
1654PyUnicode_DecodeCharmap:int:size::
1655PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1656PyUnicode_DecodeCharmap:const char*:errors::
1657
1658PyUnicode_EncodeCharmap:PyObject*::+1:
1659PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1660PyUnicode_EncodeCharmap:int:size::
1661PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1662PyUnicode_EncodeCharmap:const char*:errors::
1663
1664PyUnicode_AsCharmapString:PyObject*::+1:
1665PyUnicode_AsCharmapString:PyObject*:unicode:0:
1666PyUnicode_AsCharmapString:PyObject*:mapping:0:
1667
1668PyUnicode_TranslateCharmap:PyObject*::+1:
1669PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1670PyUnicode_TranslateCharmap:int:size::
1671PyUnicode_TranslateCharmap:PyObject*:table:0:
1672PyUnicode_TranslateCharmap:const char*:errors::
1673
1674PyUnicode_DecodeMBCS:PyObject*::+1:
1675PyUnicode_DecodeMBCS:const char*:s::
1676PyUnicode_DecodeMBCS:int:size::
1677PyUnicode_DecodeMBCS:const char*:errors::
1678
1679PyUnicode_EncodeMBCS:PyObject*::+1:
1680PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1681PyUnicode_EncodeMBCS:int:size::
1682PyUnicode_EncodeMBCS:const char*:errors::
1683
1684PyUnicode_AsMBCSString:PyObject*::+1:
1685PyUnicode_AsMBCSString:PyObject*:unicode::
1686
1687PyUnicode_Concat:PyObject*::+1:
1688PyUnicode_Concat:PyObject*:left:0:
1689PyUnicode_Concat:PyObject*:right:0:
1690
1691PyUnicode_Split:PyObject*::+1:
1692PyUnicode_Split:PyObject*:left:0:
1693PyUnicode_Split:PyObject*:right:0:
1694PyUnicode_Split:int:maxsplit::
1695
1696PyUnicode_Splitlines:PyObject*::+1:
1697PyUnicode_Splitlines:PyObject*:s:0:
1698PyUnicode_Splitlines:int:maxsplit::
1699
1700PyUnicode_Translate:PyObject*::+1:
1701PyUnicode_Translate:PyObject*:str:0:
1702PyUnicode_Translate:PyObject*:table:0:
1703PyUnicode_Translate:const char*:errors::
1704
1705PyUnicode_Join:PyObject*::+1:
1706PyUnicode_Join:PyObject*:separator:0:
1707PyUnicode_Join:PyObject*:seq:0:
1708
Benjamin Peterson5e55b3e2010-02-03 02:35:45 +00001709PyUnicode_Tailmatch:int:::
Georg Brandl116aa622007-08-15 14:28:22 +00001710PyUnicode_Tailmatch:PyObject*:str:0:
1711PyUnicode_Tailmatch:PyObject*:substr:0:
1712PyUnicode_Tailmatch:int:start::
1713PyUnicode_Tailmatch:int:end::
1714PyUnicode_Tailmatch:int:direction::
1715
1716PyUnicode_Find:int:::
1717PyUnicode_Find:PyObject*:str:0:
1718PyUnicode_Find:PyObject*:substr:0:
1719PyUnicode_Find:int:start::
1720PyUnicode_Find:int:end::
1721PyUnicode_Find:int:direction::
1722
1723PyUnicode_Count:int:::
1724PyUnicode_Count:PyObject*:str:0:
1725PyUnicode_Count:PyObject*:substr:0:
1726PyUnicode_Count:int:start::
1727PyUnicode_Count:int:end::
1728
1729PyUnicode_Replace:PyObject*::+1:
1730PyUnicode_Replace:PyObject*:str:0:
1731PyUnicode_Replace:PyObject*:substr:0:
1732PyUnicode_Replace:PyObject*:replstr:0:
1733PyUnicode_Replace:int:maxcount::
1734
1735PyUnicode_Compare:int:::
1736PyUnicode_Compare:PyObject*:left:0:
1737PyUnicode_Compare:PyObject*:right:0:
1738
1739PyUnicode_Format:PyObject*::+1:
1740PyUnicode_Format:PyObject*:format:0:
1741PyUnicode_Format:PyObject*:args:0:
1742
1743PyUnicode_Contains:int:::
1744PyUnicode_Contains:PyObject*:container:0:
1745PyUnicode_Contains:PyObject*:element:0:
1746
1747PyWeakref_GET_OBJECT:PyObject*::0:
1748PyWeakref_GET_OBJECT:PyObject*:ref:0:
1749
1750PyWeakref_GetObject:PyObject*::0:
1751PyWeakref_GetObject:PyObject*:ref:0:
1752
1753PyWeakref_NewProxy:PyObject*::+1:
1754PyWeakref_NewProxy:PyObject*:ob:0:
1755PyWeakref_NewProxy:PyObject*:callback:0:
1756
1757PyWeakref_NewRef:PyObject*::+1:
1758PyWeakref_NewRef:PyObject*:ob:0:
1759PyWeakref_NewRef:PyObject*:callback:0:
1760
1761PyWrapper_New:PyObject*::+1:
1762PyWrapper_New:PyObject*:d:0:
1763PyWrapper_New:PyObject*:self:0:
1764
1765Py_AtExit:int:::
1766Py_AtExit:void (*)():func::
1767
1768Py_BuildValue:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001769Py_BuildValue:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +00001770
1771Py_CompileString:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001772Py_CompileString:const char*:str::
1773Py_CompileString:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001774Py_CompileString:int:start::
1775
1776Py_CompileStringFlags:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001777Py_CompileStringFlags:const char*:str::
1778Py_CompileStringFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001779Py_CompileStringFlags:int:start::
1780Py_CompileStringFlags:PyCompilerFlags*:flags::
1781
1782Py_DECREF:void:::
1783Py_DECREF:PyObject*:o:-1:
1784
1785Py_EndInterpreter:void:::
1786Py_EndInterpreter:PyThreadState*:tstate::
1787
1788Py_Exit:void:::
1789Py_Exit:int:status::
1790
1791Py_FatalError:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001792Py_FatalError:const char*:message::
Georg Brandl116aa622007-08-15 14:28:22 +00001793
1794Py_FdIsInteractive:int:::
1795Py_FdIsInteractive:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001796Py_FdIsInteractive:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001797
1798Py_Finalize:void:::
1799
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001800Py_GetBuildInfoconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001801
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001802Py_GetCompilerconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001803
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001804Py_GetCopyrightconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001805
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001806Py_GetExecPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001807
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001808Py_GetPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001809
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001810Py_GetPlatformconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001811
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001812Py_GetPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001813
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001814Py_GetProgramFullPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001815
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001816Py_GetProgramName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001817
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001818Py_GetVersionconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001819
1820Py_INCREF:void:::
1821Py_INCREF:PyObject*:o:+1:
1822
1823Py_Initialize:void:::
1824
1825Py_IsInitialized:int:::
1826
1827Py_NewInterpreter:PyThreadState*:::
1828
1829Py_SetProgramName:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001830Py_SetProgramName:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +00001831
1832Py_XDECREF:void:::
1833Py_XDECREF:PyObject*:o:-1:if o is not NULL
1834
1835Py_XINCREF:void:::
1836Py_XINCREF:PyObject*:o:+1:if o is not NULL
1837
1838_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001839_PyImport_FindExtension:const char*:::
1840_PyImport_FindExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001841
1842_PyImport_Fini:void:::
1843
1844_PyImport_FixupExtension:PyObject*:::???
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001845_PyImport_FixupExtension:const char*:::
1846_PyImport_FixupExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001847
1848_PyImport_Init:void:::
1849
Georg Brandl116aa622007-08-15 14:28:22 +00001850_PyObject_New:PyObject*::+1:
1851_PyObject_New:PyTypeObject*:type:0:
1852
1853_PyObject_NewVar:PyObject*::+1:
1854_PyObject_NewVar:PyTypeObject*:type:0:
1855_PyObject_NewVar:int:size::
1856
1857_PyString_Resize:int:::
1858_PyString_Resize:PyObject**:string:+1:
1859_PyString_Resize:int:newsize::
1860
1861_PyTuple_Resize:int:::
1862_PyTuple_Resize:PyTupleObject**:p:+1:
1863_PyTuple_Resize:int:new::
1864
1865_Py_c_diff:Py_complex:::
1866_Py_c_diff:Py_complex:left::
1867_Py_c_diff:Py_complex:right::
1868
1869_Py_c_neg:Py_complex:::
1870_Py_c_neg:Py_complex:complex::
1871
1872_Py_c_pow:Py_complex:::
1873_Py_c_pow:Py_complex:num::
1874_Py_c_pow:Py_complex:exp::
1875
1876_Py_c_prod:Py_complex:::
1877_Py_c_prod:Py_complex:left::
1878_Py_c_prod:Py_complex:right::
1879
1880_Py_c_quot:Py_complex:::
1881_Py_c_quot:Py_complex:dividend::
1882_Py_c_quot:Py_complex:divisor::
1883
1884_Py_c_sum:Py_complex:::
1885_Py_c_sum:Py_complex:left::
1886_Py_c_sum:Py_complex:right::