blob: cedcbfe3b8345885852f3b09e764cd64021ec44b [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
Serhiy Storchaka1f22a302018-05-22 22:26:42 +0300155PyContext_CheckExact:int:::
156PyContext_CheckExact:PyObject*:o:0:
157
158PyContext_ClearFreeList:int:::
159
160PyContext_Copy:PyObject*::+1:
161PyContext_Copy:PyObject*:ctx:0:
162
163PyContext_CopyCurrent:PyObject*::+1:
164
165PyContext_Enter:int:::
166PyContext_Enter:PyObject*:ctx:+1:
167
168PyContext_Exit:int:::
169PyContext_Exit:PyObject*:ctx:-1:
170
171PyContext_New:PyObject*::+1:
172
173PyContextToken_CheckExact:int:::
174PyContextToken_CheckExact:PyObject*:o:0:
175
176PyContextVar_CheckExact:int:::
177PyContextVar_CheckExact:PyObject*:o:0:
178
179PyContextVar_Get:int:::
180PyContextVar_Get:PyObject*:var:0:
181PyContextVar_Get:PyObject*:default_value:0:
182PyContextVar_Get:PyObject**:value:+1:???
183
184PyContextVar_New:PyObject*::+1:
185PyContextVar_New:const char*:name::
186PyContextVar_New:PyObject*:def:+1:
187
188PyContextVar_Set:PyObject*::+1:
189PyContextVar_Set:PyObject*:var:0:
190PyContextVar_Set:PyObject*:value:+1:
191
192PyContextVar_Reset:int:::
193PyContextVar_Reset:PyObject*:var:0:
194PyContextVar_Reset:PyObject*:token:-1:
195
Georg Brandl116aa622007-08-15 14:28:22 +0000196PyDate_FromDate:PyObject*::+1:
197PyDate_FromDate:int:year::
198PyDate_FromDate:int:month::
199PyDate_FromDate:int:day::
200
201PyDate_FromTimestamp:PyObject*::+1:
202PyDate_FromTimestamp:PyObject*:args:0:
203
204PyDateTime_FromDateAndTime:PyObject*::+1:
205PyDateTime_FromDateAndTime:int:year::
206PyDateTime_FromDateAndTime:int:month::
207PyDateTime_FromDateAndTime:int:day::
208PyDateTime_FromDateAndTime:int:hour::
209PyDateTime_FromDateAndTime:int:minute::
210PyDateTime_FromDateAndTime:int:second::
211PyDateTime_FromDateAndTime:int:usecond::
212
213PyDateTime_FromTimestamp:PyObject*::+1:
214PyDateTime_FromTimestamp:PyObject*:args:0:
215
216PyDelta_FromDSU:PyObject*::+1:
217PyDelta_FromDSU:int:days::
218PyDelta_FromDSU:int:seconds::
219PyDelta_FromDSU:int:useconds::
220
Paul Ganssle04af5b12018-01-24 17:29:30 -0500221PyTimeZone_FromOffset:PyObject*::+1:
222PyTimeZone_FromOffset:PyDateTime_DeltaType*:offset:+1:Reference count not increased if offset is +00:00
223
224PyTimeZone_FromOffsetAndName:PyObject*::+1:
225PyTimeZone_FromOffsetAndName:PyDateTime_DeltaType*:offset:+1:Reference count not increased if offset is +00:00 and name == NULL
226PyTimeZone_FromOffsetAndName:PyUnicode*:name:+1:
227
228
Georg Brandl116aa622007-08-15 14:28:22 +0000229PyDescr_NewClassMethod:PyObject*::+1:
230PyDescr_NewClassMethod:PyTypeObject*:type::
231PyDescr_NewClassMethod:PyMethodDef*:method::
232
233PyDescr_NewGetSet:PyObject*::+1:
234PyDescr_NewGetSet:PyTypeObject*:type::
235PyDescr_NewGetSet:PyGetSetDef*:getset::
236
237PyDescr_NewMember:PyObject*::+1:
238PyDescr_NewMember:PyTypeObject*:type::
239PyDescr_NewMember:PyMemberDef*:member::
240
241PyDescr_NewMethod:PyObject*::+1:
242PyDescr_NewMethod:PyTypeObject*:type::
243PyDescr_NewMethod:PyMethodDef*:meth::
244
245PyDescr_NewWrapper:PyObject*::+1:
246PyDescr_NewWrapper:PyTypeObject*:type::
247PyDescr_NewWrapper:struct wrapperbase*:base::
248PyDescr_NewWrapper:void*:wrapped::
249
250PyDict_Check:int:::
251PyDict_Check:PyObject*:p:0:
252
253PyDict_Clear:void:::
254PyDict_Clear:PyObject*:p:0:
255
256PyDict_DelItem:int:::
257PyDict_DelItem:PyObject*:p:0:
258PyDict_DelItem:PyObject*:key:0:
259
260PyDict_DelItemString:int:::
261PyDict_DelItemString:PyObject*:p:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300262PyDict_DelItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000263
264PyDict_GetItem:PyObject*::0:0
265PyDict_GetItem:PyObject*:p:0:
266PyDict_GetItem:PyObject*:key:0:
267
Eric Snowb63530a2017-06-01 12:29:13 -0600268PyDict_GetItemWithError:PyObject*::0:0
269PyDict_GetItemWithError:PyObject*:p:0:
270PyDict_GetItemWithError:PyObject*:key:0:
271
Georg Brandl116aa622007-08-15 14:28:22 +0000272PyDict_GetItemString:PyObject*::0:
273PyDict_GetItemString:PyObject*:p:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +0300274PyDict_GetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000275
Benjamin Peterson00e98862013-03-07 22:16:29 -0500276PyDict_SetDefault:PyObject*::0:
277PyDict_SetDefault:PyObject*:p:0:
278PyDict_SetDefault:PyObject*:key:0:conditionally +1 if inserted into the dict
279PyDict_SetDefault:PyObject*:default:0:conditionally +1 if inserted into the dict
280
Georg Brandl116aa622007-08-15 14:28:22 +0000281PyDict_Items:PyObject*::+1:
282PyDict_Items:PyObject*:p:0:
283
284PyDict_Keys:PyObject*::+1:
285PyDict_Keys:PyObject*:p:0:
286
287PyDict_New:PyObject*::+1:
288
289PyDict_Copy:PyObject*::+1:
290PyDict_Copy:PyObject*:p:0:
291
292PyDict_Next:int:::
293PyDict_Next:PyObject*:p:0:
294PyDict_Next:int:ppos::
295PyDict_Next:PyObject**:pkey:0:
296PyDict_Next:PyObject**:pvalue:0:
297
298PyDict_SetItem:int:::
299PyDict_SetItem:PyObject*:p:0:
300PyDict_SetItem:PyObject*:key:+1:
301PyDict_SetItem:PyObject*:val:+1:
302
303PyDict_SetItemString:int:::
304PyDict_SetItemString:PyObject*:p:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300305PyDict_SetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000306PyDict_SetItemString:PyObject*:val:+1:
307
308PyDict_Size:int:::
309PyDict_Size:PyObject*:p::
310
311PyDict_Values:PyObject*::+1:
312PyDict_Values:PyObject*:p:0:
313
314PyDictProxy_New:PyObject*::+1:
315PyDictProxy_New:PyObject*:dict:0:
316
317PyErr_BadArgument:int:::
318
319PyErr_BadInternalCall:void:::
320
321PyErr_CheckSignals:int:::
322
323PyErr_Clear:void:::
324
325PyErr_ExceptionMatches:int:::
326PyErr_ExceptionMatches:PyObject*:exc:0:
327
328PyErr_Fetch:void:::
329PyErr_Fetch:PyObject**:ptype:0:
330PyErr_Fetch:PyObject**:pvalue:0:
331PyErr_Fetch:PyObject**:ptraceback:0:
332
333PyErr_GivenExceptionMatches:int:::
334PyErr_GivenExceptionMatches:PyObject*:given:0:
335PyErr_GivenExceptionMatches:PyObject*:exc:0:
336
337PyErr_NewException:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300338PyErr_NewException:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000339PyErr_NewException:PyObject*:base:0:
340PyErr_NewException:PyObject*:dict:0:
341
Georg Brandl1e28a272009-12-28 08:41:01 +0000342PyErr_NewExceptionWithDoc:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300343PyErr_NewExceptionWithDoc:const char*:name::
344PyErr_NewExceptionWithDoc:const char*:doc::
Georg Brandl1e28a272009-12-28 08:41:01 +0000345PyErr_NewExceptionWithDoc:PyObject*:base:0:
346PyErr_NewExceptionWithDoc:PyObject*:dict:0:
347
Georg Brandl116aa622007-08-15 14:28:22 +0000348PyErr_NoMemory:PyObject*::null:
349
350PyErr_NormalizeException:void:::
351PyErr_NormalizeException:PyObject**:exc::???
352PyErr_NormalizeException:PyObject**:val::???
353PyErr_NormalizeException:PyObject**:tb::???
354
355PyErr_Occurred:PyObject*::0:
356
357PyErr_Print:void:::
358
359PyErr_Restore:void:::
360PyErr_Restore:PyObject*:type:-1:
361PyErr_Restore:PyObject*:value:-1:
362PyErr_Restore:PyObject*:traceback:-1:
363
364PyErr_SetExcFromWindowsErr:PyObject*::null:
365PyErr_SetExcFromWindowsErr:PyObject*:type:0:
366PyErr_SetExcFromWindowsErr:int:ierr::
367
368PyErr_SetExcFromWindowsErrWithFilename:PyObject*::null:
369PyErr_SetExcFromWindowsErrWithFilename:PyObject*:type:0:
370PyErr_SetExcFromWindowsErrWithFilename:int:ierr::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300371PyErr_SetExcFromWindowsErrWithFilename:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +0000372
373PyErr_SetFromErrno:PyObject*::null:
374PyErr_SetFromErrno:PyObject*:type:0:
375
376PyErr_SetFromErrnoWithFilename:PyObject*::null:
377PyErr_SetFromErrnoWithFilename:PyObject*:type:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300378PyErr_SetFromErrnoWithFilename:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +0000379
380PyErr_SetFromWindowsErr:PyObject*::null:
381PyErr_SetFromWindowsErr:int:ierr::
382
383PyErr_SetFromWindowsErrWithFilename:PyObject*::null:
384PyErr_SetFromWindowsErrWithFilename:int:ierr::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300385PyErr_SetFromWindowsErrWithFilename:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +0000386
387PyErr_SetInterrupt:void:::
388
389PyErr_SetNone:void:::
390PyErr_SetNone:PyObject*:type:+1:
391
392PyErr_SetObject:void:::
393PyErr_SetObject:PyObject*:type:+1:
394PyErr_SetObject:PyObject*:value:+1:
395
396PyErr_SetString:void:::
397PyErr_SetString:PyObject*:type:+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300398PyErr_SetString:const char*:message::
Georg Brandl116aa622007-08-15 14:28:22 +0000399
400PyErr_Format:PyObject*::null:
401PyErr_Format:PyObject*:exception:+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300402PyErr_Format:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +0000403PyErr_Format::...::
404
Antoine Pitrou0676a402014-09-30 21:16:27 +0200405PyErr_FormatV:PyObject*::null:
406PyErr_FormatV:PyObject*:exception:+1:
407PyErr_FormatV:const char*:format::
408PyErr_FormatV:va_list:vargs::
409
Georg Brandl116aa622007-08-15 14:28:22 +0000410PyErr_WarnEx:int:::
411PyErr_WarnEx:PyObject*:category:0:
412PyErr_WarnEx:const char*:message::
413PyErr_WarnEx:Py_ssize_t:stack_level::
414
415PyEval_AcquireLock:void:::
416
417PyEval_AcquireThread:void:::
418PyEval_AcquireThread:PyThreadState*:tstate::
419
Christian Heimesd8654cf2007-12-02 15:22:16 +0000420PyEval_GetBuiltins:PyObject*::0:
421PyEval_GetLocals:PyObject*::0:
422PyEval_GetGlobals:PyObject*::0:
423PyEval_GetFrame:PyObject*::0:
424
Georg Brandl116aa622007-08-15 14:28:22 +0000425PyEval_InitThreads:void:::
426
427PyEval_ReleaseLock:void:::
428
429PyEval_ReleaseThread:void:::
430PyEval_ReleaseThread:PyThreadState*:tstate::
431
432PyEval_RestoreThread:void:::
433PyEval_RestoreThread:PyThreadState*:tstate::
434
435PyEval_SaveThread:PyThreadState*:::
436
437PyEval_EvalCode:PyObject*::+1:
438PyEval_EvalCode:PyCodeObject*:co:0:
439PyEval_EvalCode:PyObject*:globals:0:
440PyEval_EvalCode:PyObject*:locals:0:
441
Petri Lehtinence770372011-10-23 21:03:33 +0300442PyException_GetTraceback:PyObject*::+1:
443
Georg Brandl116aa622007-08-15 14:28:22 +0000444PyFile_AsFile:FILE*:::
445PyFile_AsFile:PyFileObject*:p:0:
446
447PyFile_Check:int:::
448PyFile_Check:PyObject*:p:0:
449
450PyFile_FromFile:PyObject*::+1:
451PyFile_FromFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300452PyFile_FromFile:const char*:name::
453PyFile_FromFile:const char*:mode::
Georg Brandl116aa622007-08-15 14:28:22 +0000454PyFile_FromFile:int(*:close)::
455
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000456PyFile_FromFileEx:PyObject*::+1:
457PyFile_FromFileEx:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300458PyFile_FromFileEx:const char*:name::
459PyFile_FromFileEx:const char*:mode::
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000460PyFile_FromFileEx:int(*:close)::
461PyFile_FromFileEx:int:buffering::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300462PyFile_FromFileEx:const char*:encoding::
463PyFile_FromFileEx:const char*:newline::
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000464
Georg Brandl116aa622007-08-15 14:28:22 +0000465PyFile_FromString:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300466PyFile_FromString:const char*:name::
467PyFile_FromString:const char*:mode::
Georg Brandl116aa622007-08-15 14:28:22 +0000468
469PyFile_GetLine:PyObject*::+1:
470PyFile_GetLine:PyObject*:p::
471PyFile_GetLine:int:n::
472
473PyFile_Name:PyObject*::0:
474PyFile_Name:PyObject*:p:0:
475
476PyFile_SetBufSize:void:::
477PyFile_SetBufSize:PyFileObject*:p:0:
478PyFile_SetBufSize:int:n::
479
480PyFile_SoftSpace:int:::
481PyFile_SoftSpace:PyFileObject*:p:0:
482PyFile_SoftSpace:int:newflag::
483
484PyFile_WriteObject:int:::
485PyFile_WriteObject:PyObject*:obj:0:
486PyFile_WriteObject:PyFileObject*:p:0:
487PyFile_WriteObject:int:flags::
488
489PyFile_WriteString:int:::
490PyFile_WriteString:const char*:s::
491PyFile_WriteString:PyFileObject*:p:0:
492PyFile_WriteString:int:flags::
493
494PyFloat_AS_DOUBLE:double:::
495PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
496
497PyFloat_AsDouble:double:::
498PyFloat_AsDouble:PyObject*:pyfloat:0:
499
500PyFloat_Check:int:::
501PyFloat_Check:PyObject*:p:0:
502
503PyFloat_FromDouble:PyObject*::+1:
504PyFloat_FromDouble:double:v::
505
506PyFloat_FromString:PyObject*::+1:
507PyFloat_FromString:PyObject*:str:0:
508
509PyFrozenSet_New:PyObject*::+1:
510PyFrozenSet_New:PyObject*:iterable:0:
511
512PyFunction_GetClosure:PyObject*::0:
513PyFunction_GetClosure:PyObject*:op:0:
514
515PyFunction_GetCode:PyObject*::0:
516PyFunction_GetCode:PyObject*:op:0:
517
518PyFunction_GetDefaults:PyObject*::0:
519PyFunction_GetDefaults:PyObject*:op:0:
520
521PyFunction_GetGlobals:PyObject*::0:
522PyFunction_GetGlobals:PyObject*:op:0:
523
524PyFunction_GetModule:PyObject*::0:
525PyFunction_GetModule:PyObject*:op:0:
526
527PyFunction_New:PyObject*::+1:
528PyFunction_New:PyObject*:code:+1:
529PyFunction_New:PyObject*:globals:+1:
530
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100531PyFunction_NewWithQualName:PyObject*::+1:
532PyFunction_NewWithQualName:PyObject*:code:+1:
533PyFunction_NewWithQualName:PyObject*:globals:+1:
534PyFunction_NewWithQualName:PyObject*:qualname:+1:
535
Georg Brandl116aa622007-08-15 14:28:22 +0000536PyFunction_SetClosure:int:::
537PyFunction_SetClosure:PyObject*:op:0:
538PyFunction_SetClosure:PyObject*:closure:+1:
539
540PyFunction_SetDefaults:int:::
541PyFunction_SetDefaults:PyObject*:op:0:
542PyFunction_SetDefaults:PyObject*:defaults:+1:
543
544PyGen_New:PyObject*::+1:
545PyGen_New:PyFrameObject*:frame:0:
546
Yury Selivanov5376ba92015-06-22 12:19:30 -0400547PyGen_NewWithQualName:PyObject*::+1:
548PyGen_NewWithQualName:PyFrameObject*:frame:0:
549
550PyCoro_New:PyObject*::+1:
551PyCoro_New:PyFrameObject*:frame:0:
552
Georg Brandl116aa622007-08-15 14:28:22 +0000553Py_InitModule:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300554Py_InitModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000555Py_InitModule:PyMethodDef[]:methods::
556
557Py_InitModule3:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300558Py_InitModule3:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000559Py_InitModule3:PyMethodDef[]:methods::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300560Py_InitModule3:const char*:doc::
Georg Brandl116aa622007-08-15 14:28:22 +0000561
562Py_InitModule4:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300563Py_InitModule4:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000564Py_InitModule4:PyMethodDef[]:methods::
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300565Py_InitModule4:const char*:doc::
Georg Brandl116aa622007-08-15 14:28:22 +0000566Py_InitModule4:PyObject*:self::
567Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
568
569PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300570PyImport_AddModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000571
Miss Islington (bot)605ef6e2018-12-17 07:48:29 -0800572PyImport_AddModuleObject:PyObject*::0:reference borrowed from sys.modules
573PyImport_AddModuleObject:PyObject*:name:0:
574
Georg Brandl116aa622007-08-15 14:28:22 +0000575PyImport_Cleanup:void:::
576
577PyImport_ExecCodeModule:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300578PyImport_ExecCodeModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000579PyImport_ExecCodeModule:PyObject*:co:0:
580
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000581PyImport_ExecCodeModuleEx:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300582PyImport_ExecCodeModuleEx:const char*:name::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000583PyImport_ExecCodeModuleEx:PyObject*:co:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300584PyImport_ExecCodeModuleEx:const char*:pathname::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000585
Miss Islington (bot)605ef6e2018-12-17 07:48:29 -0800586PyImport_ExecCodeModuleObject:PyObject*::+1:
587PyImport_ExecCodeModuleObject:const char*:name::
588PyImport_ExecCodeModuleObject:PyObject*:co:0:
589PyImport_ExecCodeModuleObject:PyObject*:pathname:0:
590PyImport_ExecCodeModuleObject:PyObject*:cpathname:0:
591
592PyImport_ExecCodeModuleWithPathnames:PyObject*::+1:
593PyImport_ExecCodeModuleWithPathnames:const char*:name::
594PyImport_ExecCodeModuleWithPathnames:PyObject*:co:0:
595PyImport_ExecCodeModuleWithPathnames:const char*:pathname::
596PyImport_ExecCodeModuleWithPathnames:const char*:cpathname::
597
598PyImport_GetImporter:PyObject*::+1:
599PyImport_GetImporter:PyObject*:path:0:
600
Georg Brandl116aa622007-08-15 14:28:22 +0000601PyImport_GetMagicNumber:long:::
602
Serhiy Storchaka1f22a302018-05-22 22:26:42 +0300603PyImport_GetModule:PyObject*::+1:
604PyImport_GetModule:PyObject*:name:0:
605
Georg Brandl116aa622007-08-15 14:28:22 +0000606PyImport_GetModuleDict:PyObject*::0:
607
608PyImport_Import:PyObject*::+1:
609PyImport_Import:PyObject*:name:0:
610
611PyImport_ImportFrozenModule:int:::
Serhiy Storchakac6792272013-10-19 21:03:34 +0300612PyImport_ImportFrozenModule:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000613
Miss Islington (bot)605ef6e2018-12-17 07:48:29 -0800614PyImport_ImportFrozenModuleObject:int:::
615PyImport_ImportFrozenModuleObject:PyObject*::+1:
616
Georg Brandl116aa622007-08-15 14:28:22 +0000617PyImport_ImportModule:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300618PyImport_ImportModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000619
620PyImport_ImportModuleEx:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300621PyImport_ImportModuleEx:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000622PyImport_ImportModuleEx:PyObject*:globals:0:???
623PyImport_ImportModuleEx:PyObject*:locals:0:???
624PyImport_ImportModuleEx:PyObject*:fromlist:0:???
625
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000626PyImport_ImportModuleLevel:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300627PyImport_ImportModuleLevel:const char*:name::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000628PyImport_ImportModuleLevel:PyObject*:globals:0:???
629PyImport_ImportModuleLevel:PyObject*:locals:0:???
630PyImport_ImportModuleLevel:PyObject*:fromlist:0:???
631PyImport_ImportModuleLevel:int:level::
632
Miss Islington (bot)605ef6e2018-12-17 07:48:29 -0800633PyImport_ImportModuleLevelObject:PyObject*::+1:
634PyImport_ImportModuleLevelObject:PyObject*:name:0:
635PyImport_ImportModuleLevelObject:PyObject*:globals:0:???
636PyImport_ImportModuleLevelObject:PyObject*:locals:0:???
637PyImport_ImportModuleLevelObject:PyObject*:fromlist:0:???
638PyImport_ImportModuleLevelObject:int:level::
639
Georg Brandl116aa622007-08-15 14:28:22 +0000640PyImport_ReloadModule:PyObject*::+1:
641PyImport_ReloadModule:PyObject*:m:0:
642
643PyInstance_New:PyObject*::+1:
644PyInstance_New:PyObject*:klass:+1:
645PyInstance_New:PyObject*:arg:0:
646PyInstance_New:PyObject*:kw:0:
647
648PyInstance_NewRaw:PyObject*::+1:
649PyInstance_NewRaw:PyObject*:klass:+1:
650PyInstance_NewRaw:PyObject*:dict:+1:
651
652PyInt_AS_LONG:long:::
653PyInt_AS_LONG:PyIntObject*:io:0:
654
655PyInt_AsLong:long:::
656PyInt_AsLong:PyObject*:io:0:
657
658PyInt_Check:int:::
659PyInt_Check:PyObject*:op:0:
660
661PyInt_FromLong:PyObject*::+1:
662PyInt_FromLong:long:ival::
663
664PyInt_FromString:PyObject*::+1:
665PyInt_FromString:char*:str:0:
666PyInt_FromString:char**:pend:0:
667PyInt_FromString:int:base:0:
668
669PyInt_FromSsize_t:PyObject*::+1:
670PyInt_FromSsize_t:Py_ssize_t:ival::
671
672PyInt_GetMax:long:::
673
674PyInterpreterState_Clear:void:::
675PyInterpreterState_Clear:PyInterpreterState*:interp::
676
677PyInterpreterState_Delete:void:::
678PyInterpreterState_Delete:PyInterpreterState*:interp::
679
Serhiy Storchaka1f22a302018-05-22 22:26:42 +0300680PyInterpreterState_GetID:int64_t:::
681PyInterpreterState_GetID:PyInterpreterState*:interp::
682
Georg Brandl116aa622007-08-15 14:28:22 +0000683PyInterpreterState_New:PyInterpreterState*:::
684
685PyIter_Check:int:o:0:
686
687PyIter_Next:PyObject*::+1:
688PyIter_Next:PyObject*:o:0:
689
690PyList_Append:int:::
691PyList_Append:PyObject*:list:0:
692PyList_Append:PyObject*:item:+1:
693
694PyList_AsTuple:PyObject*::+1:
695PyList_AsTuple:PyObject*:list:0:
696
697PyList_Check:int:::
698PyList_Check:PyObject*:p:0:
699
700PyList_GET_ITEM:PyObject*::0:
701PyList_GET_ITEM:PyObject*:list:0:
702PyList_GET_ITEM:int:i:0:
703
704PyList_GET_SIZE:int:::
705PyList_GET_SIZE:PyObject*:list:0:
706
707PyList_GetItem:PyObject*::0:
708PyList_GetItem:PyObject*:list:0:
709PyList_GetItem:int:index::
710
711PyList_GetSlice:PyObject*::+1:
712PyList_GetSlice:PyObject*:list:0:
713PyList_GetSlice:int:low::
714PyList_GetSlice:int:high::
715
716PyList_Insert:int:::
717PyList_Insert:PyObject*:list:0:
718PyList_Insert:int:index::
719PyList_Insert:PyObject*:item:+1:
720
721PyList_New:PyObject*::+1:
722PyList_New:int:len::
723
724PyList_Reverse:int:::
725PyList_Reverse:PyObject*:list:0:
726
727PyList_SET_ITEM:void:::
728PyList_SET_ITEM:PyObject*:list:0:
729PyList_SET_ITEM:int:i::
730PyList_SET_ITEM:PyObject*:o:0:
731
732PyList_SetItem:int:::
733PyList_SetItem:PyObject*:list:0:
734PyList_SetItem:int:index::
735PyList_SetItem:PyObject*:item:0:
736
737PyList_SetSlice:int:::
738PyList_SetSlice:PyObject*:list:0:
739PyList_SetSlice:int:low::
740PyList_SetSlice:int:high::
741PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
742
743PyList_Size:int:::
744PyList_Size:PyObject*:list:0:
745
746PyList_Sort:int:::
747PyList_Sort:PyObject*:list:0:
748
749PyLong_AsDouble:double:::
750PyLong_AsDouble:PyObject*:pylong:0:
751
752PyLong_AsLong:long:::
753PyLong_AsLong:PyObject*:pylong:0:
754
755PyLong_AsUnsignedLong:unsigned long:::
756PyLong_AsUnsignedLong:PyObject*:pylong:0:
757
758PyLong_Check:int:::
759PyLong_Check:PyObject*:p:0:
760
761PyLong_FromDouble:PyObject*::+1:
762PyLong_FromDouble:double:v::
763
764PyLong_FromLong:PyObject*::+1:
765PyLong_FromLong:long:v::
766
767PyLong_FromLongLong:PyObject*::+1:
768PyLong_FromLongLong:long long:v::
769
770PyLong_FromUnsignedLongLong:PyObject*::+1:
771PyLong_FromUnsignedLongLong:unsigned long long:v::
772
773PyLong_FromString:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300774PyLong_FromString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +0000775PyLong_FromString:char**:pend::
776PyLong_FromString:int:base::
777
778PyLong_FromUnicode:PyObject*::+1:
779PyLong_FromUnicode:Py_UNICODE:u::
780PyLong_FromUnicode:int:length::
781PyLong_FromUnicode:int:base::
782
783PyLong_FromUnsignedLong:PyObject*::+1:
784PyLong_FromUnsignedLong:unsignedlong:v::
785
786PyLong_FromVoidPtr:PyObject*::+1:
787PyLong_FromVoidPtr:void*:p::
788
789PyMapping_Check:int:::
790PyMapping_Check:PyObject*:o:0:
791
792PyMapping_DelItem:int:::
793PyMapping_DelItem:PyObject*:o:0:
794PyMapping_DelItem:PyObject*:key:0:
795
796PyMapping_DelItemString:int:::
797PyMapping_DelItemString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300798PyMapping_DelItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000799
800PyMapping_GetItemString:PyObject*::+1:
801PyMapping_GetItemString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300802PyMapping_GetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000803
804PyMapping_HasKey:int:::
805PyMapping_HasKey:PyObject*:o:0:
806PyMapping_HasKey:PyObject*:key::
807
808PyMapping_HasKeyString:int:::
809PyMapping_HasKeyString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300810PyMapping_HasKeyString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000811
812PyMapping_Items:PyObject*::+1:
813PyMapping_Items:PyObject*:o:0:
814
815PyMapping_Keys:PyObject*::+1:
816PyMapping_Keys:PyObject*:o:0:
817
818PyMapping_Length:int:::
819PyMapping_Length:PyObject*:o:0:
820
821PyMapping_SetItemString:int:::
822PyMapping_SetItemString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300823PyMapping_SetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000824PyMapping_SetItemString:PyObject*:v:+1:
825
826PyMapping_Values:PyObject*::+1:
827PyMapping_Values:PyObject*:o:0:
828
829PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
830PyMarshal_ReadLastObjectFromFile:FILE*:file::
831
832PyMarshal_ReadObjectFromFile:PyObject*::+1:
833PyMarshal_ReadObjectFromFile:FILE*:file::
834
835PyMarshal_ReadObjectFromString:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300836PyMarshal_ReadObjectFromString:const char*:string::
Georg Brandl116aa622007-08-15 14:28:22 +0000837PyMarshal_ReadObjectFromString:int:len::
838
839PyMarshal_WriteObjectToString:PyObject*::+1:
840PyMarshal_WriteObjectToString:PyObject*:value:0:
841
842PyMethod_Class:PyObject*::0:
843PyMethod_Class:PyObject*:im:0:
844
845PyMethod_Function:PyObject*::0:
846PyMethod_Function:PyObject*:im:0:
847
848PyMethod_GET_CLASS:PyObject*::0:
849PyMethod_GET_CLASS:PyObject*:im:0:
850
851PyMethod_GET_FUNCTION:PyObject*::0:
852PyMethod_GET_FUNCTION:PyObject*:im:0:
853
854PyMethod_GET_SELF:PyObject*::0:
855PyMethod_GET_SELF:PyObject*:im:0:
856
857PyMethod_New:PyObject*::+1:
858PyMethod_New:PyObject*:func:0:
859PyMethod_New:PyObject*:self:0:
860PyMethod_New:PyObject*:class:0:
861
862PyMethod_Self:PyObject*::0:
863PyMethod_Self:PyObject*:im:0:
864
865PyModule_GetDict:PyObject*::0:
866PyModule_GetDict::PyObject* module:0:
867
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300868PyModule_GetFilename:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000869PyModule_GetFilename:PyObject*:module:0:
870
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300871PyModule_GetName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000872PyModule_GetName:PyObject*:module:0:
873
874PyModule_New:PyObject*::+1:
875PyModule_New::char* name::
876
877PyNumber_Absolute:PyObject*::+1:
878PyNumber_Absolute:PyObject*:o:0:
879
880PyNumber_Add:PyObject*::+1:
881PyNumber_Add:PyObject*:o1:0:
882PyNumber_Add:PyObject*:o2:0:
883
884PyNumber_And:PyObject*::+1:
885PyNumber_And:PyObject*:o1:0:
886PyNumber_And:PyObject*:o2:0:
887
888PyNumber_Check:PyObject*:o:0:
889PyNumber_Check:int:::
890
891PyNumber_Divide:PyObject*::+1:
892PyNumber_Divide:PyObject*:o1:0:
893PyNumber_Divide:PyObject*:o2:0:
894
895PyNumber_Divmod:PyObject*::+1:
896PyNumber_Divmod:PyObject*:o1:0:
897PyNumber_Divmod:PyObject*:o2:0:
898
899PyNumber_Float:PyObject*::+1:
900PyNumber_Float:PyObject*:o:0:
901
902PyNumber_FloorDivide:PyObject*::+1:
903PyNumber_FloorDivide:PyObject*:v:0:
904PyNumber_FloorDivide:PyObject*:w:0:
905
906PyNumber_InPlaceAdd:PyObject*::+1:
907PyNumber_InPlaceAdd:PyObject*:v:0:
908PyNumber_InPlaceAdd:PyObject*:w:0:
909
910PyNumber_InPlaceAnd:PyObject*::+1:
911PyNumber_InPlaceAnd:PyObject*:v:0:
912PyNumber_InPlaceAnd:PyObject*:w:0:
913
914PyNumber_InPlaceDivide:PyObject*::+1:
915PyNumber_InPlaceDivide:PyObject*:v:0:
916PyNumber_InPlaceDivide:PyObject*:w:0:
917
918PyNumber_InPlaceFloorDivide:PyObject*::+1:
919PyNumber_InPlaceFloorDivide:PyObject*:v:0:
920PyNumber_InPlaceFloorDivide:PyObject*:w:0:
921
922PyNumber_InPlaceLshift:PyObject*::+1:
923PyNumber_InPlaceLshift:PyObject*:v:0:
924PyNumber_InPlaceLshift:PyObject*:w:0:
925
926PyNumber_InPlaceMultiply:PyObject*::+1:
927PyNumber_InPlaceMultiply:PyObject*:v:0:
928PyNumber_InPlaceMultiply:PyObject*:w:0:
929
930PyNumber_InPlaceOr:PyObject*::+1:
931PyNumber_InPlaceOr:PyObject*:v:0:
932PyNumber_InPlaceOr:PyObject*:w:0:
933
934PyNumber_InPlacePower:PyObject*::+1:
935PyNumber_InPlacePower:PyObject*:v:0:
936PyNumber_InPlacePower:PyObject*:w:0:
937PyNumber_InPlacePower:PyObject*:z:0:
938
939PyNumber_InPlaceRemainder:PyObject*::+1:
940PyNumber_InPlaceRemainder:PyObject*:v:0:
941PyNumber_InPlaceRemainder:PyObject*:w:0:
942
943PyNumber_InPlaceRshift:PyObject*::+1:
944PyNumber_InPlaceRshift:PyObject*:v:0:
945PyNumber_InPlaceRshift:PyObject*:w:0:
946
947PyNumber_InPlaceSubtract:PyObject*::+1:
948PyNumber_InPlaceSubtract:PyObject*:v:0:
949PyNumber_InPlaceSubtract:PyObject*:w:0:
950
951PyNumber_InPlaceTrueDivide:PyObject*::+1:
952PyNumber_InPlaceTrueDivide:PyObject*:v:0:
953PyNumber_InPlaceTrueDivide:PyObject*:w:0:
954
955PyNumber_InPlaceXor:PyObject*::+1:
956PyNumber_InPlaceXor:PyObject*:v:0:
957PyNumber_InPlaceXor:PyObject*:w:0:
958
Georg Brandl116aa622007-08-15 14:28:22 +0000959PyNumber_Invert:PyObject*::+1:
960PyNumber_Invert:PyObject*:o:0:
961
962PyNumber_Long:PyObject*::+1:
963PyNumber_Long:PyObject*:o:0:
964
965PyNumber_Lshift:PyObject*::+1:
966PyNumber_Lshift:PyObject*:o1:0:
967PyNumber_Lshift:PyObject*:o2:0:
968
969PyNumber_Multiply:PyObject*::+1:
970PyNumber_Multiply:PyObject*:o1:0:
971PyNumber_Multiply:PyObject*:o2:0:
972
973PyNumber_Negative:PyObject*::+1:
974PyNumber_Negative:PyObject*:o:0:
975
976PyNumber_Or:PyObject*::+1:
977PyNumber_Or:PyObject*:o1:0:
978PyNumber_Or:PyObject*:o2:0:
979
980PyNumber_Positive:PyObject*::+1:
981PyNumber_Positive:PyObject*:o:0:
982
983PyNumber_Power:PyObject*::+1:
984PyNumber_Power:PyObject*:o1:0:
985PyNumber_Power:PyObject*:o2:0:
986PyNumber_Power:PyObject*:o3:0:
987
988PyNumber_Remainder:PyObject*::+1:
989PyNumber_Remainder:PyObject*:o1:0:
990PyNumber_Remainder:PyObject*:o2:0:
991
992PyNumber_Rshift:PyObject*::+1:
993PyNumber_Rshift:PyObject*:o1:0:
994PyNumber_Rshift:PyObject*:o2:0:
995
996PyNumber_Subtract:PyObject*::+1:
997PyNumber_Subtract:PyObject*:o1:0:
998PyNumber_Subtract:PyObject*:o2:0:
999
1000PyNumber_TrueDivide:PyObject*::+1:
1001PyNumber_TrueDivide:PyObject*:v:0:
1002PyNumber_TrueDivide:PyObject*:w:0:
1003
1004PyNumber_Xor:PyObject*::+1:
1005PyNumber_Xor:PyObject*:o1:0:
1006PyNumber_Xor:PyObject*:o2:0:
1007
Larry Hastingsb0827312014-02-09 22:05:19 -08001008PyObject_AsFileDescriptor:int:::
Georg Brandl116aa622007-08-15 14:28:22 +00001009PyObject_AsFileDescriptor:PyObject*:o:0:
1010
Serhiy Storchaka1f22a302018-05-22 22:26:42 +03001011PyOS_AfterFork:void:::
1012
1013PyOS_AfterFork_Child:void:::
1014
1015PyOS_AfterFork_Parent:void:::
1016
1017PyOS_BeforeFork:void:::
1018
Brett Cannon746102b2016-06-09 16:58:38 -07001019PyOS_FSPath:PyObject*::+1:
1020PyOS_FSPath:PyObject*:path:0:
1021
Georg Brandl116aa622007-08-15 14:28:22 +00001022PyObject_Call:PyObject*::+1:
1023PyObject_Call:PyObject*:callable_object:0:
1024PyObject_Call:PyObject*:args:0:
1025PyObject_Call:PyObject*:kw:0:
1026
1027PyObject_CallFunction:PyObject*::+1:
1028PyObject_CallFunction:PyObject*:callable_object:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +03001029PyObject_CallFunction:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +00001030PyObject_CallFunction::...::
1031
1032PyObject_CallFunctionObjArgs:PyObject*::+1:
1033PyObject_CallFunctionObjArgs:PyObject*:callable:0:
1034PyObject_CallFunctionObjArgs::...::
1035
1036PyObject_CallMethod:PyObject*::+1:
1037PyObject_CallMethod:PyObject*:o:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +03001038PyObject_CallMethod:const char*:m::
1039PyObject_CallMethod:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +00001040PyObject_CallMethod::...::
1041
1042PyObject_CallMethodObjArgs:PyObject*::+1:
1043PyObject_CallMethodObjArgs:PyObject*:o:0:
Serhiy Storchakadce05502013-05-28 22:46:15 +03001044PyObject_CallMethodObjArgs:PyObject*:name:0:
Georg Brandl116aa622007-08-15 14:28:22 +00001045PyObject_CallMethodObjArgs::...::
1046
1047PyObject_CallObject:PyObject*::+1:
1048PyObject_CallObject:PyObject*:callable_object:0:
1049PyObject_CallObject:PyObject*:args:0:
1050
1051PyObject_Cmp:int:::
1052PyObject_Cmp:PyObject*:o1:0:
1053PyObject_Cmp:PyObject*:o2:0:
1054PyObject_Cmp:int*:result::
1055
1056PyObject_Compare:int:::
1057PyObject_Compare:PyObject*:o1:0:
1058PyObject_Compare:PyObject*:o2:0:
1059
1060PyObject_DelAttr:int:::
1061PyObject_DelAttr:PyObject*:o:0:
1062PyObject_DelAttr:PyObject*:attr_name:0:
1063
1064PyObject_DelAttrString:int:::
1065PyObject_DelAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001066PyObject_DelAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +00001067
1068PyObject_DelItem:int:::
1069PyObject_DelItem:PyObject*:o:0:
1070PyObject_DelItem:PyObject*:key:0:
1071
1072PyObject_Dir:PyObject*::+1:
1073PyObject_Dir:PyObject*:o:0:
1074
1075PyObject_GetAttr:PyObject*::+1:
1076PyObject_GetAttr:PyObject*:o:0:
1077PyObject_GetAttr:PyObject*:attr_name:0:
1078
1079PyObject_GetAttrString:PyObject*::+1:
1080PyObject_GetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001081PyObject_GetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +00001082
1083PyObject_GetItem:PyObject*::+1:
1084PyObject_GetItem:PyObject*:o:0:
1085PyObject_GetItem:PyObject*:key:0:
1086
1087PyObject_GetIter:PyObject*::+1:
1088PyObject_GetIter:PyObject*:o:0:
1089
1090PyObject_HasAttr:int:::
1091PyObject_HasAttr:PyObject*:o:0:
1092PyObject_HasAttr:PyObject*:attr_name:0:
1093
1094PyObject_HasAttrString:int:::
1095PyObject_HasAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001096PyObject_HasAttrString:const char*:attr_name:0:
Georg Brandl116aa622007-08-15 14:28:22 +00001097
1098PyObject_Hash:int:::
1099PyObject_Hash:PyObject*:o:0:
1100
1101PyObject_IsTrue:int:::
1102PyObject_IsTrue:PyObject*:o:0:
1103
1104PyObject_Init:PyObject*::0:
1105PyObject_Init:PyObject*:op:0:
1106
1107PyObject_InitVar:PyVarObject*::0:
1108PyObject_InitVar:PyVarObject*:op:0:
1109
1110PyObject_Length:int:::
1111PyObject_Length:PyObject*:o:0:
1112
1113PyObject_NEW:PyObject*::+1:
1114
1115PyObject_New:PyObject*::+1:
1116
1117PyObject_NEW_VAR:PyObject*::+1:
1118
1119PyObject_NewVar:PyObject*::+1:
1120
1121PyObject_Print:int:::
1122PyObject_Print:PyObject*:o:0:
1123PyObject_Print:FILE*:fp::
1124PyObject_Print:int:flags::
1125
1126PyObject_Repr:PyObject*::+1:
1127PyObject_Repr:PyObject*:o:0:
1128
1129PyObject_RichCompare:PyObject*::+1:
1130PyObject_RichCompare:PyObject*:o1:0:
1131PyObject_RichCompare:PyObject*:o2:0:
1132PyObject_RichCompare:int:opid::
1133
1134PyObject_RichCompareBool:int:::
1135PyObject_RichCompareBool:PyObject*:o1:0:
1136PyObject_RichCompareBool:PyObject*:o2:0:
1137PyObject_RichCompareBool:int:opid::
1138
1139PyObject_SetAttr:int:::
1140PyObject_SetAttr:PyObject*:o:0:
1141PyObject_SetAttr:PyObject*:attr_name:0:
1142PyObject_SetAttr:PyObject*:v:+1:
1143
1144PyObject_SetAttrString:int:::
1145PyObject_SetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001146PyObject_SetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +00001147PyObject_SetAttrString:PyObject*:v:+1:
1148
1149PyObject_SetItem:int:::
1150PyObject_SetItem:PyObject*:o:0:
1151PyObject_SetItem:PyObject*:key:0:
1152PyObject_SetItem:PyObject*:v:+1:
1153
1154PyObject_Str:PyObject*::+1:
1155PyObject_Str:PyObject*:o:0:
1156
1157PyObject_Type:PyObject*::+1:
1158PyObject_Type:PyObject*:o:0:
1159
1160PyObject_Unicode:PyObject*::+1:
1161PyObject_Unicode:PyObject*:o:0:
1162
1163PyParser_SimpleParseFile:struct _node*:::
1164PyParser_SimpleParseFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001165PyParser_SimpleParseFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001166PyParser_SimpleParseFile:int:start::
1167
1168PyParser_SimpleParseString:struct _node*:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001169PyParser_SimpleParseString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001170PyParser_SimpleParseString:int:start::
1171
1172PyRun_AnyFile:int:::
1173PyRun_AnyFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001174PyRun_AnyFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001175
1176PyRun_File:PyObject*::+1:??? -- same as eval_code2()
1177PyRun_File:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001178PyRun_File:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001179PyRun_File:int:start::
1180PyRun_File:PyObject*:globals:0:
1181PyRun_File:PyObject*:locals:0:
1182
1183PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1184PyRun_FileEx:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001185PyRun_FileEx:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001186PyRun_FileEx:int:start::
1187PyRun_FileEx:PyObject*:globals:0:
1188PyRun_FileEx:PyObject*:locals:0:
1189PyRun_FileEx:int:closeit::
1190
1191PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1192PyRun_FileFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001193PyRun_FileFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001194PyRun_FileFlags:int:start::
1195PyRun_FileFlags:PyObject*:globals:0:
1196PyRun_FileFlags:PyObject*:locals:0:
1197PyRun_FileFlags:PyCompilerFlags*:flags::
1198
1199PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1200PyRun_FileExFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001201PyRun_FileExFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001202PyRun_FileExFlags:int:start::
1203PyRun_FileExFlags:PyObject*:globals:0:
1204PyRun_FileExFlags:PyObject*:locals:0:
1205PyRun_FileExFlags:int:closeit::
1206PyRun_FileExFlags:PyCompilerFlags*:flags::
1207
1208PyRun_InteractiveLoop:int:::
1209PyRun_InteractiveLoop:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001210PyRun_InteractiveLoop:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001211
1212PyRun_InteractiveOne:int:::
1213PyRun_InteractiveOne:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001214PyRun_InteractiveOne:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001215
1216PyRun_SimpleFile:int:::
1217PyRun_SimpleFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001218PyRun_SimpleFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001219
1220PyRun_SimpleString:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001221PyRun_SimpleString:const char*:command::
Georg Brandl116aa622007-08-15 14:28:22 +00001222
1223PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001224PyRun_String:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001225PyRun_String:int:start::
1226PyRun_String:PyObject*:globals:0:
1227PyRun_String:PyObject*:locals:0:
1228
1229PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001230PyRun_StringFlags:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001231PyRun_StringFlags:int:start::
1232PyRun_StringFlags:PyObject*:globals:0:
1233PyRun_StringFlags:PyObject*:locals:0:
1234PyRun_StringFlags:PyCompilerFlags*:flags::
1235
1236PySeqIter_New:PyObject*::+1:
1237PySeqIter_New:PyObject*:seq::
1238
1239PySequence_Check:int:::
1240PySequence_Check:PyObject*:o:0:
1241
1242PySequence_Concat:PyObject*::+1:
1243PySequence_Concat:PyObject*:o1:0:
1244PySequence_Concat:PyObject*:o2:0:
1245
1246PySequence_Count:int:::
1247PySequence_Count:PyObject*:o:0:
1248PySequence_Count:PyObject*:value:0:
1249
1250PySequence_DelItem:int:::
1251PySequence_DelItem:PyObject*:o:0:
1252PySequence_DelItem:int:i::
1253
1254PySequence_DelSlice:int:::
1255PySequence_DelSlice:PyObject*:o:0:
1256PySequence_DelSlice:int:i1::
1257PySequence_DelSlice:int:i2::
1258
1259PySequence_Fast:PyObject*::+1:
1260PySequence_Fast:PyObject*:v:0:
1261PySequence_Fast:const char*:m::
1262
1263PySequence_Fast_GET_ITEM:PyObject*::0:
1264PySequence_Fast_GET_ITEM:PyObject*:o:0:
1265PySequence_Fast_GET_ITEM:int:i::
1266
1267PySequence_GetItem:PyObject*::+1:
1268PySequence_GetItem:PyObject*:o:0:
1269PySequence_GetItem:int:i::
1270
1271PySequence_GetSlice:PyObject*::+1:
1272PySequence_GetSlice:PyObject*:o:0:
1273PySequence_GetSlice:int:i1::
1274PySequence_GetSlice:int:i2::
1275
1276PySequence_In:int:::
1277PySequence_In:PyObject*:o:0:
1278PySequence_In:PyObject*:value:0:
1279
1280PySequence_Index:int:::
1281PySequence_Index:PyObject*:o:0:
1282PySequence_Index:PyObject*:value:0:
1283
1284PySequence_InPlaceConcat:PyObject*::+1:
1285PySequence_InPlaceConcat:PyObject*:s:0:
1286PySequence_InPlaceConcat:PyObject*:o:0:
1287
1288PySequence_InPlaceRepeat:PyObject*::+1:
1289PySequence_InPlaceRepeat:PyObject*:s:0:
1290PySequence_InPlaceRepeat:PyObject*:o:0:
1291
1292PySequence_ITEM:PyObject*::+1:
1293PySequence_ITEM:PyObject*:o:0:
1294PySequence_ITEM:int:i::
1295
1296PySequence_Repeat:PyObject*::+1:
1297PySequence_Repeat:PyObject*:o:0:
1298PySequence_Repeat:int:count::
1299
1300PySequence_SetItem:int:::
1301PySequence_SetItem:PyObject*:o:0:
1302PySequence_SetItem:int:i::
1303PySequence_SetItem:PyObject*:v:+1:
1304
1305PySequence_SetSlice:int:::
1306PySequence_SetSlice:PyObject*:o:0:
1307PySequence_SetSlice:int:i1::
1308PySequence_SetSlice:int:i2::
1309PySequence_SetSlice:PyObject*:v:+1:
1310
1311PySequence_List:PyObject*::+1:
1312PySequence_List:PyObject*:o:0:
1313
1314PySequence_Tuple:PyObject*::+1:
1315PySequence_Tuple:PyObject*:o:0:
1316
1317PySet_Append:int:::
1318PySet_Append:PyObject*:set:0:
1319PySet_Append:PyObject*:key:+1:
1320
1321PySet_Contains:int:::
1322PySet_Contains:PyObject*:anyset:0:
1323PySet_Contains:PyObject*:key:0:
1324
1325PySet_Discard:int:::
1326PySet_Discard:PyObject*:set:0:
1327PySet_Discard:PyObject*:key:-1:no effect if key not found
1328
1329PySet_New:PyObject*::+1:
1330PySet_New:PyObject*:iterable:0:
1331
1332PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
1333PySet_Pop:PyObject*:set:0:
1334
1335PySet_Size:int:::
1336PySet_Size:PyObject*:anyset:0:
1337
Serhiy Storchaka1f22a302018-05-22 22:26:42 +03001338PySlice_AdjustIndices:Py_ssize_t:::
1339PySlice_AdjustIndices:Py_ssize_t:length::
1340PySlice_AdjustIndices:Py_ssize_t*:start::
1341PySlice_AdjustIndices:Py_ssize_t*:stop::
1342PySlice_AdjustIndices:Py_ssize_t*:step::
1343
Georg Brandl116aa622007-08-15 14:28:22 +00001344PySlice_Check:int:::
1345PySlice_Check:PyObject*:ob:0:
1346
1347PySlice_New:PyObject*::+1:
1348PySlice_New:PyObject*:start:0:
1349PySlice_New:PyObject*:stop:0:
1350PySlice_New:PyObject*:step:0:
1351
Serhiy Storchaka1f22a302018-05-22 22:26:42 +03001352PySlice_Unpack:int:::
1353PySlice_Unpack:PyObject*:slice:0:
1354PySlice_Unpack:Py_ssize_t*:start::
1355PySlice_Unpack:Py_ssize_t*:stop::
1356PySlice_Unpack:Py_ssize_t*:step::
1357
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001358PyString_AS_STRING:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001359PyString_AS_STRING:PyObject*:string:0:
1360
1361PyString_AsDecodedObject:PyObject*::+1:
1362PyString_AsDecodedObject:PyObject*:str:0:
1363PyString_AsDecodedObject:const char*:encoding::
1364PyString_AsDecodedObject:const char*:errors::
1365
1366PyString_AsEncodedObject:PyObject*::+1:
1367PyString_AsEncodedObject:PyObject*:str:0:
1368PyString_AsEncodedObject:const char*:encoding::
1369PyString_AsEncodedObject:const char*:errors::
1370
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001371PyString_AsString:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001372PyString_AsString:PyObject*:string:0:
1373
1374PyString_AsStringAndSize:int:::
1375PyString_AsStringAndSize:PyObject*:obj:0:
1376PyString_AsStringAndSize:char**:buffer::
1377PyString_AsStringAndSize:int*:length::
1378
1379PyString_Check:int:::
1380PyString_Check:PyObject*:o:0:
1381
1382PyString_Concat:void:::
1383PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
1384PyString_Concat:PyObject*:newpart:0:
1385
1386PyString_ConcatAndDel:void:::
1387PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
1388PyString_ConcatAndDel:PyObject*:newpart:-1:
1389
1390PyString_Format:PyObject*::+1:
1391PyString_Format:PyObject*:format:0:
1392PyString_Format:PyObject*:args:0:
1393
1394PyString_FromString:PyObject*::+1:
1395PyString_FromString:const char*:v::
1396
1397PyString_FromStringAndSize:PyObject*::+1:
1398PyString_FromStringAndSize:const char*:v::
1399PyString_FromStringAndSize:int:len::
1400
1401PyString_FromFormat:PyObject*::+1:
1402PyString_FromFormat:const char*:format::
1403PyString_FromFormat::...::
1404
1405PyString_FromFormatV:PyObject*::+1:
1406PyString_FromFormatV:const char*:format::
1407PyString_FromFormatV:va_list:vargs::
1408
1409PyString_GET_SIZE:int:::
1410PyString_GET_SIZE:PyObject*:string:0:
1411
1412PyString_InternFromString:PyObject*::+1:
1413PyString_InternFromString:const char*:v::
1414
1415PyString_InternInPlace:void:::
1416PyString_InternInPlace:PyObject**:string:+1:???
1417
1418PyString_Size:int:::
1419PyString_Size:PyObject*:string:0:
1420
1421PyString_Decode:PyObject*::+1:
1422PyString_Decode:const char*:s::
1423PyString_Decode:int:size::
1424PyString_Decode:const char*:encoding::
1425PyString_Decode:const char*:errors::
1426
1427PyString_Encode:PyObject*::+1:
1428PyString_Encode:const char*:s::
1429PyString_Encode:int:size::
1430PyString_Encode:const char*:encoding::
1431PyString_Encode:const char*:errors::
1432
1433PyString_AsEncodedString:PyObject*::+1:
1434PyString_AsEncodedString:PyObject*:str::
1435PyString_AsEncodedString:const char*:encoding::
1436PyString_AsEncodedString:const char*:errors::
1437
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001438PySys_AddWarnOption:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001439PySys_AddWarnOption:const char*:s::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001440
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001441PySys_AddXOption:void:::
1442PySys_AddXOption:const wchar_t*:s::
1443
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001444PySys_GetObject:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001445PySys_GetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001446
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001447PySys_GetXOptions:PyObject*::0:
1448
Georg Brandl116aa622007-08-15 14:28:22 +00001449PySys_SetArgv:int:::
1450PySys_SetArgv:int:argc::
1451PySys_SetArgv:char**:argv::
1452
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001453PySys_SetObject:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001454PySys_SetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001455PySys_SetObject:PyObject*:v:+1:
1456
1457PySys_ResetWarnOptions:void:::
1458
1459PySys_WriteStdout:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001460PySys_WriteStdout:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001461
1462PySys_WriteStderr:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001463PySys_WriteStderr:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001464
Georg Brandl116aa622007-08-15 14:28:22 +00001465PyThreadState_Clear:void:::
1466PyThreadState_Clear:PyThreadState*:tstate::
1467
1468PyThreadState_Delete:void:::
1469PyThreadState_Delete:PyThreadState*:tstate::
1470
1471PyThreadState_Get:PyThreadState*:::
1472
1473PyThreadState_GetDict:PyObject*::0:
1474
1475PyThreadState_New:PyThreadState*:::
1476PyThreadState_New:PyInterpreterState*:interp::
1477
1478PyThreadState_Swap:PyThreadState*:::
1479PyThreadState_Swap:PyThreadState*:tstate::
1480
Miss Islington (bot)3718f922018-05-22 01:59:33 -07001481PyThread_tss_alloc:Py_tss_t*:::
1482
1483PyThread_tss_create:int:::
1484PyThread_tss_create:Py_tss_t*:key::
1485
1486PyThread_tss_delete:void:::
1487PyThread_tss_delete:Py_tss_t*:key::
1488
1489PyThread_tss_free:void:::
1490PyThread_tss_free:Py_tss_t*:key::
1491
1492PyThread_tss_get:void*:::
1493PyThread_tss_get:Py_tss_t*:key::
1494
1495PyThread_tss_is_created:int:::
1496PyThread_tss_is_created:Py_tss_t*:key::
1497
1498PyThread_tss_set:int:::
1499PyThread_tss_set:Py_tss_t*:key::
1500PyThread_tss_set:void*:value::
1501
Georg Brandl116aa622007-08-15 14:28:22 +00001502PyTime_FromTime:PyObject*::+1:
1503PyTime_FromTime:int:hour::
1504PyTime_FromTime:int:minute::
1505PyTime_FromTime:int:second::
1506PyTime_FromTime:int:usecond::
1507
Serhiy Storchaka1f22a302018-05-22 22:26:42 +03001508PyTraceMalloc_Track:int:::
1509PyTraceMalloc_Track:unsigned int:domain::
1510PyTraceMalloc_Track:uintptr_t:ptr::
1511PyTraceMalloc_Track:size_t:size::
1512
1513PyTraceMalloc_Untrack:int:::
1514PyTraceMalloc_Untrack:unsigned int:domain::
1515PyTraceMalloc_Untrack:uintptr_t:ptr::
1516
Georg Brandl116aa622007-08-15 14:28:22 +00001517PyTuple_Check:int:::
1518PyTuple_Check:PyObject*:p:0:
1519
1520PyTuple_GET_ITEM:PyObject*::0:
1521PyTuple_GET_ITEM:PyTupleObject*:p:0:
1522PyTuple_GET_ITEM:int:pos::
1523
1524PyTuple_GetItem:PyObject*::0:
1525PyTuple_GetItem:PyTupleObject*:p:0:
1526PyTuple_GetItem:int:pos::
1527
1528PyTuple_GetSlice:PyObject*::+1:
1529PyTuple_GetSlice:PyTupleObject*:p:0:
1530PyTuple_GetSlice:int:low::
1531PyTuple_GetSlice:int:high::
1532
1533PyTuple_New:PyObject*::+1:
1534PyTuple_New:int:len::
1535
1536PyTuple_Pack:PyObject*::+1:
1537PyTuple_Pack:int:len::
1538PyTuple_Pack:PyObject*:...:0:
1539
1540PyTuple_SET_ITEM:void:::
1541PyTuple_SET_ITEM:PyTupleObject*:p:0:
1542PyTuple_SET_ITEM:int:pos::
1543PyTuple_SET_ITEM:PyObject*:o:0:
1544
1545PyTuple_SetItem:int:::
1546PyTuple_SetItem:PyTupleObject*:p:0:
1547PyTuple_SetItem:int:pos::
1548PyTuple_SetItem:PyObject*:o:0:
1549
1550PyTuple_Size:int:::
1551PyTuple_Size:PyTupleObject*:p:0:
1552
1553PyType_GenericAlloc:PyObject*::+1:
1554PyType_GenericAlloc:PyObject*:type:0:
1555PyType_GenericAlloc:int:nitems:0:
1556
1557PyType_GenericNew:PyObject*::+1:
1558PyType_GenericNew:PyObject*:type:0:
1559PyType_GenericNew:PyObject*:args:0:
1560PyType_GenericNew:PyObject*:kwds:0:
1561
1562PyUnicode_Check:int:::
1563PyUnicode_Check:PyObject*:o:0:
1564
1565PyUnicode_GET_SIZE:int:::
1566PyUnicode_GET_SIZE:PyObject*:o:0:
1567
1568PyUnicode_GET_DATA_SIZE:int:::
1569PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1570
1571PyUnicode_AS_UNICODE:Py_UNICODE*:::
1572PyUnicode_AS_UNICODE:PyObject*:o:0:
1573
1574PyUnicode_AS_DATA:const char*:::
1575PyUnicode_AS_DATA:PyObject*:o:0:
1576
1577Py_UNICODE_ISSPACE:int:::
1578Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1579
1580Py_UNICODE_ISLOWER:int:::
1581Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1582
1583Py_UNICODE_ISUPPER:int:::
1584Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1585
1586Py_UNICODE_ISTITLE:int:::
1587Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1588
1589Py_UNICODE_ISLINEBREAK:int:::
1590Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1591
1592Py_UNICODE_ISDECIMAL:int:::
1593Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1594
1595Py_UNICODE_ISDIGIT:int:::
1596Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1597
1598Py_UNICODE_ISNUMERIC:int:::
1599Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1600
1601Py_UNICODE_TOLOWER:Py_UNICODE:::
1602Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1603
1604Py_UNICODE_TOUPPER:Py_UNICODE:::
1605Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1606
1607Py_UNICODE_TOTITLE:Py_UNICODE:::
1608Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1609
1610Py_UNICODE_TODECIMAL:int:::
1611Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1612
1613Py_UNICODE_TODIGIT:int:::
1614Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1615
1616Py_UNICODE_TONUMERIC:double:::
1617Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1618
1619PyUnicode_FromUnicode:PyObject*::+1:
1620PyUnicode_FromUnicode:const Py_UNICODE*:u::
1621PyUnicode_FromUnicode:int:size::
1622
1623PyUnicode_AsUnicode:Py_UNICODE*:::
1624PyUnicode_AsUnicode:PyObject :*unicode:0:
1625
1626PyUnicode_GetSize:int:::
1627PyUnicode_GetSize:PyObject :*unicode:0:
1628
1629PyUnicode_FromObject:PyObject*::+1:
1630PyUnicode_FromObject:PyObject*:*obj:0:
1631
1632PyUnicode_FromEncodedObject:PyObject*::+1:
1633PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1634PyUnicode_FromEncodedObject:const char*:encoding::
1635PyUnicode_FromEncodedObject:const char*:errors::
1636
1637PyUnicode_FromWideChar:PyObject*::+1:
1638PyUnicode_FromWideChar:const wchar_t*:w::
1639PyUnicode_FromWideChar:int:size::
1640
1641PyUnicode_AsWideChar:int:::
1642PyUnicode_AsWideChar:PyObject*:*unicode:0:
1643PyUnicode_AsWideChar:wchar_t*:w::
1644PyUnicode_AsWideChar:int:size::
1645
1646PyUnicode_Decode:PyObject*::+1:
1647PyUnicode_Decode:const char*:s::
1648PyUnicode_Decode:int:size::
1649PyUnicode_Decode:const char*:encoding::
1650PyUnicode_Decode:const char*:errors::
1651
1652PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1653PyUnicode_DecodeUTF16Stateful:const char*:s::
1654PyUnicode_DecodeUTF16Stateful:int:size::
1655PyUnicode_DecodeUTF16Stateful:const char*:errors::
1656PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1657PyUnicode_DecodeUTF16Stateful:int*:consumed::
1658
1659PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1660PyUnicode_DecodeUTF8Stateful:const char*:s::
1661PyUnicode_DecodeUTF8Stateful:int:size::
1662PyUnicode_DecodeUTF8Stateful:const char*:errors::
1663PyUnicode_DecodeUTF8Stateful:int*:consumed::
1664
1665PyUnicode_Encode:PyObject*::+1:
1666PyUnicode_Encode:const Py_UNICODE*:s::
1667PyUnicode_Encode:int:size::
1668PyUnicode_Encode:const char*:encoding::
1669PyUnicode_Encode:const char*:errors::
1670
1671PyUnicode_AsEncodedString:PyObject*::+1:
1672PyUnicode_AsEncodedString:PyObject*:unicode::
1673PyUnicode_AsEncodedString:const char*:encoding::
1674PyUnicode_AsEncodedString:const char*:errors::
1675
1676PyUnicode_DecodeUTF8:PyObject*::+1:
1677PyUnicode_DecodeUTF8:const char*:s::
1678PyUnicode_DecodeUTF8:int:size::
1679PyUnicode_DecodeUTF8:const char*:errors::
1680
1681PyUnicode_EncodeUTF8:PyObject*::+1:
1682PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1683PyUnicode_EncodeUTF8:int:size::
1684PyUnicode_EncodeUTF8:const char*:errors::
1685
1686PyUnicode_AsUTF8String:PyObject*::+1:
1687PyUnicode_AsUTF8String:PyObject*:unicode::
1688
1689PyUnicode_DecodeUTF16:PyObject*::+1:
1690PyUnicode_DecodeUTF16:const char*:s::
1691PyUnicode_DecodeUTF16:int:size::
1692PyUnicode_DecodeUTF16:const char*:errors::
1693PyUnicode_DecodeUTF16:int*:byteorder::
1694
1695PyUnicode_EncodeUTF16:PyObject*::+1:
1696PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1697PyUnicode_EncodeUTF16:int:size::
1698PyUnicode_EncodeUTF16:const char*:errors::
1699PyUnicode_EncodeUTF16:int:byteorder::
1700
1701PyUnicode_AsUTF16String:PyObject*::+1:
1702PyUnicode_AsUTF16String:PyObject*:unicode::
1703
1704PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1705PyUnicode_DecodeUnicodeEscape:const char*:s::
1706PyUnicode_DecodeUnicodeEscape:int:size::
1707PyUnicode_DecodeUnicodeEscape:const char*:errors::
1708
1709PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1710PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1711PyUnicode_EncodeUnicodeEscape:int:size::
1712PyUnicode_EncodeUnicodeEscape:const char*:errors::
1713
1714PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1715PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1716
1717PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1718PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1719PyUnicode_DecodeRawUnicodeEscape:int:size::
1720PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1721
1722PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1723PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1724PyUnicode_EncodeRawUnicodeEscape:int:size::
1725PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1726
1727PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1728PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1729
1730PyUnicode_DecodeLatin1:PyObject*::+1:
1731PyUnicode_DecodeLatin1:const char*:s::
1732PyUnicode_DecodeLatin1:int:size::
1733PyUnicode_DecodeLatin1:const char*:errors::
1734
1735PyUnicode_EncodeLatin1:PyObject*::+1:
1736PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1737PyUnicode_EncodeLatin1:int:size::
1738PyUnicode_EncodeLatin1:const char*:errors::
1739
1740PyUnicode_AsLatin1String:PyObject*::+1:
1741PyUnicode_AsLatin1String:PyObject*:unicode::
1742
1743PyUnicode_DecodeASCII:PyObject*::+1:
1744PyUnicode_DecodeASCII:const char*:s::
1745PyUnicode_DecodeASCII:int:size::
1746PyUnicode_DecodeASCII:const char*:errors::
1747
1748PyUnicode_EncodeASCII:PyObject*::+1:
1749PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1750PyUnicode_EncodeASCII:int:size::
1751PyUnicode_EncodeASCII:const char*:errors::
1752
1753PyUnicode_AsASCIIString:PyObject*::+1:
1754PyUnicode_AsASCIIString:PyObject*:unicode::
1755
1756PyUnicode_DecodeCharmap:PyObject*::+1:
1757PyUnicode_DecodeCharmap:const char*:s::
1758PyUnicode_DecodeCharmap:int:size::
1759PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1760PyUnicode_DecodeCharmap:const char*:errors::
1761
1762PyUnicode_EncodeCharmap:PyObject*::+1:
1763PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1764PyUnicode_EncodeCharmap:int:size::
1765PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1766PyUnicode_EncodeCharmap:const char*:errors::
1767
1768PyUnicode_AsCharmapString:PyObject*::+1:
1769PyUnicode_AsCharmapString:PyObject*:unicode:0:
1770PyUnicode_AsCharmapString:PyObject*:mapping:0:
1771
1772PyUnicode_TranslateCharmap:PyObject*::+1:
1773PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1774PyUnicode_TranslateCharmap:int:size::
1775PyUnicode_TranslateCharmap:PyObject*:table:0:
1776PyUnicode_TranslateCharmap:const char*:errors::
1777
1778PyUnicode_DecodeMBCS:PyObject*::+1:
1779PyUnicode_DecodeMBCS:const char*:s::
1780PyUnicode_DecodeMBCS:int:size::
1781PyUnicode_DecodeMBCS:const char*:errors::
1782
1783PyUnicode_EncodeMBCS:PyObject*::+1:
1784PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1785PyUnicode_EncodeMBCS:int:size::
1786PyUnicode_EncodeMBCS:const char*:errors::
1787
1788PyUnicode_AsMBCSString:PyObject*::+1:
1789PyUnicode_AsMBCSString:PyObject*:unicode::
1790
1791PyUnicode_Concat:PyObject*::+1:
1792PyUnicode_Concat:PyObject*:left:0:
1793PyUnicode_Concat:PyObject*:right:0:
1794
1795PyUnicode_Split:PyObject*::+1:
1796PyUnicode_Split:PyObject*:left:0:
1797PyUnicode_Split:PyObject*:right:0:
1798PyUnicode_Split:int:maxsplit::
1799
1800PyUnicode_Splitlines:PyObject*::+1:
1801PyUnicode_Splitlines:PyObject*:s:0:
1802PyUnicode_Splitlines:int:maxsplit::
1803
1804PyUnicode_Translate:PyObject*::+1:
1805PyUnicode_Translate:PyObject*:str:0:
1806PyUnicode_Translate:PyObject*:table:0:
1807PyUnicode_Translate:const char*:errors::
1808
1809PyUnicode_Join:PyObject*::+1:
1810PyUnicode_Join:PyObject*:separator:0:
1811PyUnicode_Join:PyObject*:seq:0:
1812
Benjamin Peterson5e55b3e2010-02-03 02:35:45 +00001813PyUnicode_Tailmatch:int:::
Georg Brandl116aa622007-08-15 14:28:22 +00001814PyUnicode_Tailmatch:PyObject*:str:0:
1815PyUnicode_Tailmatch:PyObject*:substr:0:
1816PyUnicode_Tailmatch:int:start::
1817PyUnicode_Tailmatch:int:end::
1818PyUnicode_Tailmatch:int:direction::
1819
1820PyUnicode_Find:int:::
1821PyUnicode_Find:PyObject*:str:0:
1822PyUnicode_Find:PyObject*:substr:0:
1823PyUnicode_Find:int:start::
1824PyUnicode_Find:int:end::
1825PyUnicode_Find:int:direction::
1826
1827PyUnicode_Count:int:::
1828PyUnicode_Count:PyObject*:str:0:
1829PyUnicode_Count:PyObject*:substr:0:
1830PyUnicode_Count:int:start::
1831PyUnicode_Count:int:end::
1832
1833PyUnicode_Replace:PyObject*::+1:
1834PyUnicode_Replace:PyObject*:str:0:
1835PyUnicode_Replace:PyObject*:substr:0:
1836PyUnicode_Replace:PyObject*:replstr:0:
1837PyUnicode_Replace:int:maxcount::
1838
1839PyUnicode_Compare:int:::
1840PyUnicode_Compare:PyObject*:left:0:
1841PyUnicode_Compare:PyObject*:right:0:
1842
1843PyUnicode_Format:PyObject*::+1:
1844PyUnicode_Format:PyObject*:format:0:
1845PyUnicode_Format:PyObject*:args:0:
1846
1847PyUnicode_Contains:int:::
1848PyUnicode_Contains:PyObject*:container:0:
1849PyUnicode_Contains:PyObject*:element:0:
1850
1851PyWeakref_GET_OBJECT:PyObject*::0:
1852PyWeakref_GET_OBJECT:PyObject*:ref:0:
1853
1854PyWeakref_GetObject:PyObject*::0:
1855PyWeakref_GetObject:PyObject*:ref:0:
1856
1857PyWeakref_NewProxy:PyObject*::+1:
1858PyWeakref_NewProxy:PyObject*:ob:0:
1859PyWeakref_NewProxy:PyObject*:callback:0:
1860
1861PyWeakref_NewRef:PyObject*::+1:
1862PyWeakref_NewRef:PyObject*:ob:0:
1863PyWeakref_NewRef:PyObject*:callback:0:
1864
1865PyWrapper_New:PyObject*::+1:
1866PyWrapper_New:PyObject*:d:0:
1867PyWrapper_New:PyObject*:self:0:
1868
1869Py_AtExit:int:::
1870Py_AtExit:void (*)():func::
1871
1872Py_BuildValue:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001873Py_BuildValue:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +00001874
1875Py_CompileString:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001876Py_CompileString:const char*:str::
1877Py_CompileString:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001878Py_CompileString:int:start::
1879
1880Py_CompileStringFlags:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001881Py_CompileStringFlags:const char*:str::
1882Py_CompileStringFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001883Py_CompileStringFlags:int:start::
1884Py_CompileStringFlags:PyCompilerFlags*:flags::
1885
1886Py_DECREF:void:::
1887Py_DECREF:PyObject*:o:-1:
1888
1889Py_EndInterpreter:void:::
1890Py_EndInterpreter:PyThreadState*:tstate::
1891
1892Py_Exit:void:::
1893Py_Exit:int:status::
1894
1895Py_FatalError:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001896Py_FatalError:const char*:message::
Georg Brandl116aa622007-08-15 14:28:22 +00001897
1898Py_FdIsInteractive:int:::
1899Py_FdIsInteractive:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001900Py_FdIsInteractive:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001901
1902Py_Finalize:void:::
1903
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001904Py_GetBuildInfoconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001905
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001906Py_GetCompilerconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001907
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001908Py_GetCopyrightconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001909
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001910Py_GetExecPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001911
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001912Py_GetPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001913
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001914Py_GetPlatformconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001915
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001916Py_GetPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001917
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001918Py_GetProgramFullPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001919
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001920Py_GetProgramName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001921
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001922Py_GetVersionconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001923
1924Py_INCREF:void:::
1925Py_INCREF:PyObject*:o:+1:
1926
1927Py_Initialize:void:::
1928
1929Py_IsInitialized:int:::
1930
1931Py_NewInterpreter:PyThreadState*:::
1932
1933Py_SetProgramName:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001934Py_SetProgramName:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +00001935
1936Py_XDECREF:void:::
1937Py_XDECREF:PyObject*:o:-1:if o is not NULL
1938
1939Py_XINCREF:void:::
1940Py_XINCREF:PyObject*:o:+1:if o is not NULL
1941
1942_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001943_PyImport_FindExtension:const char*:::
1944_PyImport_FindExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001945
1946_PyImport_Fini:void:::
1947
1948_PyImport_FixupExtension:PyObject*:::???
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001949_PyImport_FixupExtension:const char*:::
1950_PyImport_FixupExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001951
1952_PyImport_Init:void:::
1953
Georg Brandl116aa622007-08-15 14:28:22 +00001954_PyObject_New:PyObject*::+1:
1955_PyObject_New:PyTypeObject*:type:0:
1956
1957_PyObject_NewVar:PyObject*::+1:
1958_PyObject_NewVar:PyTypeObject*:type:0:
1959_PyObject_NewVar:int:size::
1960
1961_PyString_Resize:int:::
1962_PyString_Resize:PyObject**:string:+1:
1963_PyString_Resize:int:newsize::
1964
1965_PyTuple_Resize:int:::
1966_PyTuple_Resize:PyTupleObject**:p:+1:
1967_PyTuple_Resize:int:new::
1968
1969_Py_c_diff:Py_complex:::
1970_Py_c_diff:Py_complex:left::
1971_Py_c_diff:Py_complex:right::
1972
1973_Py_c_neg:Py_complex:::
1974_Py_c_neg:Py_complex:complex::
1975
1976_Py_c_pow:Py_complex:::
1977_Py_c_pow:Py_complex:num::
1978_Py_c_pow:Py_complex:exp::
1979
1980_Py_c_prod:Py_complex:::
1981_Py_c_prod:Py_complex:left::
1982_Py_c_prod:Py_complex:right::
1983
1984_Py_c_quot:Py_complex:::
1985_Py_c_quot:Py_complex:dividend::
1986_Py_c_quot:Py_complex:divisor::
1987
1988_Py_c_sum:Py_complex:::
1989_Py_c_sum:Py_complex:left::
1990_Py_c_sum:Py_complex:right::