blob: 62cc93832783b7ef770f0f3c9f39c64d71063ecf [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
572PyImport_Cleanup:void:::
573
574PyImport_ExecCodeModule:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300575PyImport_ExecCodeModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000576PyImport_ExecCodeModule:PyObject*:co:0:
577
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000578PyImport_ExecCodeModuleEx:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300579PyImport_ExecCodeModuleEx:const char*:name::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000580PyImport_ExecCodeModuleEx:PyObject*:co:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300581PyImport_ExecCodeModuleEx:const char*:pathname::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000582
Georg Brandl116aa622007-08-15 14:28:22 +0000583PyImport_GetMagicNumber:long:::
584
Serhiy Storchaka1f22a302018-05-22 22:26:42 +0300585PyImport_GetModule:PyObject*::+1:
586PyImport_GetModule:PyObject*:name:0:
587
Georg Brandl116aa622007-08-15 14:28:22 +0000588PyImport_GetModuleDict:PyObject*::0:
589
590PyImport_Import:PyObject*::+1:
591PyImport_Import:PyObject*:name:0:
592
593PyImport_ImportFrozenModule:int:::
Serhiy Storchakac6792272013-10-19 21:03:34 +0300594PyImport_ImportFrozenModule:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000595
596PyImport_ImportModule:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300597PyImport_ImportModule:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000598
599PyImport_ImportModuleEx:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300600PyImport_ImportModuleEx:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +0000601PyImport_ImportModuleEx:PyObject*:globals:0:???
602PyImport_ImportModuleEx:PyObject*:locals:0:???
603PyImport_ImportModuleEx:PyObject*:fromlist:0:???
604
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000605PyImport_ImportModuleLevel:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300606PyImport_ImportModuleLevel:const char*:name::
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000607PyImport_ImportModuleLevel:PyObject*:globals:0:???
608PyImport_ImportModuleLevel:PyObject*:locals:0:???
609PyImport_ImportModuleLevel:PyObject*:fromlist:0:???
610PyImport_ImportModuleLevel:int:level::
611
Georg Brandl116aa622007-08-15 14:28:22 +0000612PyImport_ReloadModule:PyObject*::+1:
613PyImport_ReloadModule:PyObject*:m:0:
614
615PyInstance_New:PyObject*::+1:
616PyInstance_New:PyObject*:klass:+1:
617PyInstance_New:PyObject*:arg:0:
618PyInstance_New:PyObject*:kw:0:
619
620PyInstance_NewRaw:PyObject*::+1:
621PyInstance_NewRaw:PyObject*:klass:+1:
622PyInstance_NewRaw:PyObject*:dict:+1:
623
624PyInt_AS_LONG:long:::
625PyInt_AS_LONG:PyIntObject*:io:0:
626
627PyInt_AsLong:long:::
628PyInt_AsLong:PyObject*:io:0:
629
630PyInt_Check:int:::
631PyInt_Check:PyObject*:op:0:
632
633PyInt_FromLong:PyObject*::+1:
634PyInt_FromLong:long:ival::
635
636PyInt_FromString:PyObject*::+1:
637PyInt_FromString:char*:str:0:
638PyInt_FromString:char**:pend:0:
639PyInt_FromString:int:base:0:
640
641PyInt_FromSsize_t:PyObject*::+1:
642PyInt_FromSsize_t:Py_ssize_t:ival::
643
644PyInt_GetMax:long:::
645
646PyInterpreterState_Clear:void:::
647PyInterpreterState_Clear:PyInterpreterState*:interp::
648
649PyInterpreterState_Delete:void:::
650PyInterpreterState_Delete:PyInterpreterState*:interp::
651
Serhiy Storchaka1f22a302018-05-22 22:26:42 +0300652PyInterpreterState_GetID:int64_t:::
653PyInterpreterState_GetID:PyInterpreterState*:interp::
654
Georg Brandl116aa622007-08-15 14:28:22 +0000655PyInterpreterState_New:PyInterpreterState*:::
656
657PyIter_Check:int:o:0:
658
659PyIter_Next:PyObject*::+1:
660PyIter_Next:PyObject*:o:0:
661
662PyList_Append:int:::
663PyList_Append:PyObject*:list:0:
664PyList_Append:PyObject*:item:+1:
665
666PyList_AsTuple:PyObject*::+1:
667PyList_AsTuple:PyObject*:list:0:
668
669PyList_Check:int:::
670PyList_Check:PyObject*:p:0:
671
672PyList_GET_ITEM:PyObject*::0:
673PyList_GET_ITEM:PyObject*:list:0:
674PyList_GET_ITEM:int:i:0:
675
676PyList_GET_SIZE:int:::
677PyList_GET_SIZE:PyObject*:list:0:
678
679PyList_GetItem:PyObject*::0:
680PyList_GetItem:PyObject*:list:0:
681PyList_GetItem:int:index::
682
683PyList_GetSlice:PyObject*::+1:
684PyList_GetSlice:PyObject*:list:0:
685PyList_GetSlice:int:low::
686PyList_GetSlice:int:high::
687
688PyList_Insert:int:::
689PyList_Insert:PyObject*:list:0:
690PyList_Insert:int:index::
691PyList_Insert:PyObject*:item:+1:
692
693PyList_New:PyObject*::+1:
694PyList_New:int:len::
695
696PyList_Reverse:int:::
697PyList_Reverse:PyObject*:list:0:
698
699PyList_SET_ITEM:void:::
700PyList_SET_ITEM:PyObject*:list:0:
701PyList_SET_ITEM:int:i::
702PyList_SET_ITEM:PyObject*:o:0:
703
704PyList_SetItem:int:::
705PyList_SetItem:PyObject*:list:0:
706PyList_SetItem:int:index::
707PyList_SetItem:PyObject*:item:0:
708
709PyList_SetSlice:int:::
710PyList_SetSlice:PyObject*:list:0:
711PyList_SetSlice:int:low::
712PyList_SetSlice:int:high::
713PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
714
715PyList_Size:int:::
716PyList_Size:PyObject*:list:0:
717
718PyList_Sort:int:::
719PyList_Sort:PyObject*:list:0:
720
721PyLong_AsDouble:double:::
722PyLong_AsDouble:PyObject*:pylong:0:
723
724PyLong_AsLong:long:::
725PyLong_AsLong:PyObject*:pylong:0:
726
727PyLong_AsUnsignedLong:unsigned long:::
728PyLong_AsUnsignedLong:PyObject*:pylong:0:
729
730PyLong_Check:int:::
731PyLong_Check:PyObject*:p:0:
732
733PyLong_FromDouble:PyObject*::+1:
734PyLong_FromDouble:double:v::
735
736PyLong_FromLong:PyObject*::+1:
737PyLong_FromLong:long:v::
738
739PyLong_FromLongLong:PyObject*::+1:
740PyLong_FromLongLong:long long:v::
741
742PyLong_FromUnsignedLongLong:PyObject*::+1:
743PyLong_FromUnsignedLongLong:unsigned long long:v::
744
745PyLong_FromString:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300746PyLong_FromString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +0000747PyLong_FromString:char**:pend::
748PyLong_FromString:int:base::
749
750PyLong_FromUnicode:PyObject*::+1:
751PyLong_FromUnicode:Py_UNICODE:u::
752PyLong_FromUnicode:int:length::
753PyLong_FromUnicode:int:base::
754
755PyLong_FromUnsignedLong:PyObject*::+1:
756PyLong_FromUnsignedLong:unsignedlong:v::
757
758PyLong_FromVoidPtr:PyObject*::+1:
759PyLong_FromVoidPtr:void*:p::
760
761PyMapping_Check:int:::
762PyMapping_Check:PyObject*:o:0:
763
764PyMapping_DelItem:int:::
765PyMapping_DelItem:PyObject*:o:0:
766PyMapping_DelItem:PyObject*:key:0:
767
768PyMapping_DelItemString:int:::
769PyMapping_DelItemString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300770PyMapping_DelItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000771
772PyMapping_GetItemString:PyObject*::+1:
773PyMapping_GetItemString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300774PyMapping_GetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000775
776PyMapping_HasKey:int:::
777PyMapping_HasKey:PyObject*:o:0:
778PyMapping_HasKey:PyObject*:key::
779
780PyMapping_HasKeyString:int:::
781PyMapping_HasKeyString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300782PyMapping_HasKeyString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000783
784PyMapping_Items:PyObject*::+1:
785PyMapping_Items:PyObject*:o:0:
786
787PyMapping_Keys:PyObject*::+1:
788PyMapping_Keys:PyObject*:o:0:
789
790PyMapping_Length:int:::
791PyMapping_Length:PyObject*:o:0:
792
793PyMapping_SetItemString:int:::
794PyMapping_SetItemString:PyObject*:o:0:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300795PyMapping_SetItemString:const char*:key::
Georg Brandl116aa622007-08-15 14:28:22 +0000796PyMapping_SetItemString:PyObject*:v:+1:
797
798PyMapping_Values:PyObject*::+1:
799PyMapping_Values:PyObject*:o:0:
800
801PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
802PyMarshal_ReadLastObjectFromFile:FILE*:file::
803
804PyMarshal_ReadObjectFromFile:PyObject*::+1:
805PyMarshal_ReadObjectFromFile:FILE*:file::
806
807PyMarshal_ReadObjectFromString:PyObject*::+1:
Serhiy Storchakac6792272013-10-19 21:03:34 +0300808PyMarshal_ReadObjectFromString:const char*:string::
Georg Brandl116aa622007-08-15 14:28:22 +0000809PyMarshal_ReadObjectFromString:int:len::
810
811PyMarshal_WriteObjectToString:PyObject*::+1:
812PyMarshal_WriteObjectToString:PyObject*:value:0:
813
814PyMethod_Class:PyObject*::0:
815PyMethod_Class:PyObject*:im:0:
816
817PyMethod_Function:PyObject*::0:
818PyMethod_Function:PyObject*:im:0:
819
820PyMethod_GET_CLASS:PyObject*::0:
821PyMethod_GET_CLASS:PyObject*:im:0:
822
823PyMethod_GET_FUNCTION:PyObject*::0:
824PyMethod_GET_FUNCTION:PyObject*:im:0:
825
826PyMethod_GET_SELF:PyObject*::0:
827PyMethod_GET_SELF:PyObject*:im:0:
828
829PyMethod_New:PyObject*::+1:
830PyMethod_New:PyObject*:func:0:
831PyMethod_New:PyObject*:self:0:
832PyMethod_New:PyObject*:class:0:
833
834PyMethod_Self:PyObject*::0:
835PyMethod_Self:PyObject*:im:0:
836
837PyModule_GetDict:PyObject*::0:
838PyModule_GetDict::PyObject* module:0:
839
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300840PyModule_GetFilename:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000841PyModule_GetFilename:PyObject*:module:0:
842
Serhiy Storchaka244d6252013-07-11 21:57:34 +0300843PyModule_GetName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +0000844PyModule_GetName:PyObject*:module:0:
845
846PyModule_New:PyObject*::+1:
847PyModule_New::char* name::
848
849PyNumber_Absolute:PyObject*::+1:
850PyNumber_Absolute:PyObject*:o:0:
851
852PyNumber_Add:PyObject*::+1:
853PyNumber_Add:PyObject*:o1:0:
854PyNumber_Add:PyObject*:o2:0:
855
856PyNumber_And:PyObject*::+1:
857PyNumber_And:PyObject*:o1:0:
858PyNumber_And:PyObject*:o2:0:
859
860PyNumber_Check:PyObject*:o:0:
861PyNumber_Check:int:::
862
863PyNumber_Divide:PyObject*::+1:
864PyNumber_Divide:PyObject*:o1:0:
865PyNumber_Divide:PyObject*:o2:0:
866
867PyNumber_Divmod:PyObject*::+1:
868PyNumber_Divmod:PyObject*:o1:0:
869PyNumber_Divmod:PyObject*:o2:0:
870
871PyNumber_Float:PyObject*::+1:
872PyNumber_Float:PyObject*:o:0:
873
874PyNumber_FloorDivide:PyObject*::+1:
875PyNumber_FloorDivide:PyObject*:v:0:
876PyNumber_FloorDivide:PyObject*:w:0:
877
878PyNumber_InPlaceAdd:PyObject*::+1:
879PyNumber_InPlaceAdd:PyObject*:v:0:
880PyNumber_InPlaceAdd:PyObject*:w:0:
881
882PyNumber_InPlaceAnd:PyObject*::+1:
883PyNumber_InPlaceAnd:PyObject*:v:0:
884PyNumber_InPlaceAnd:PyObject*:w:0:
885
886PyNumber_InPlaceDivide:PyObject*::+1:
887PyNumber_InPlaceDivide:PyObject*:v:0:
888PyNumber_InPlaceDivide:PyObject*:w:0:
889
890PyNumber_InPlaceFloorDivide:PyObject*::+1:
891PyNumber_InPlaceFloorDivide:PyObject*:v:0:
892PyNumber_InPlaceFloorDivide:PyObject*:w:0:
893
894PyNumber_InPlaceLshift:PyObject*::+1:
895PyNumber_InPlaceLshift:PyObject*:v:0:
896PyNumber_InPlaceLshift:PyObject*:w:0:
897
898PyNumber_InPlaceMultiply:PyObject*::+1:
899PyNumber_InPlaceMultiply:PyObject*:v:0:
900PyNumber_InPlaceMultiply:PyObject*:w:0:
901
902PyNumber_InPlaceOr:PyObject*::+1:
903PyNumber_InPlaceOr:PyObject*:v:0:
904PyNumber_InPlaceOr:PyObject*:w:0:
905
906PyNumber_InPlacePower:PyObject*::+1:
907PyNumber_InPlacePower:PyObject*:v:0:
908PyNumber_InPlacePower:PyObject*:w:0:
909PyNumber_InPlacePower:PyObject*:z:0:
910
911PyNumber_InPlaceRemainder:PyObject*::+1:
912PyNumber_InPlaceRemainder:PyObject*:v:0:
913PyNumber_InPlaceRemainder:PyObject*:w:0:
914
915PyNumber_InPlaceRshift:PyObject*::+1:
916PyNumber_InPlaceRshift:PyObject*:v:0:
917PyNumber_InPlaceRshift:PyObject*:w:0:
918
919PyNumber_InPlaceSubtract:PyObject*::+1:
920PyNumber_InPlaceSubtract:PyObject*:v:0:
921PyNumber_InPlaceSubtract:PyObject*:w:0:
922
923PyNumber_InPlaceTrueDivide:PyObject*::+1:
924PyNumber_InPlaceTrueDivide:PyObject*:v:0:
925PyNumber_InPlaceTrueDivide:PyObject*:w:0:
926
927PyNumber_InPlaceXor:PyObject*::+1:
928PyNumber_InPlaceXor:PyObject*:v:0:
929PyNumber_InPlaceXor:PyObject*:w:0:
930
Georg Brandl116aa622007-08-15 14:28:22 +0000931PyNumber_Invert:PyObject*::+1:
932PyNumber_Invert:PyObject*:o:0:
933
934PyNumber_Long:PyObject*::+1:
935PyNumber_Long:PyObject*:o:0:
936
937PyNumber_Lshift:PyObject*::+1:
938PyNumber_Lshift:PyObject*:o1:0:
939PyNumber_Lshift:PyObject*:o2:0:
940
941PyNumber_Multiply:PyObject*::+1:
942PyNumber_Multiply:PyObject*:o1:0:
943PyNumber_Multiply:PyObject*:o2:0:
944
945PyNumber_Negative:PyObject*::+1:
946PyNumber_Negative:PyObject*:o:0:
947
948PyNumber_Or:PyObject*::+1:
949PyNumber_Or:PyObject*:o1:0:
950PyNumber_Or:PyObject*:o2:0:
951
952PyNumber_Positive:PyObject*::+1:
953PyNumber_Positive:PyObject*:o:0:
954
955PyNumber_Power:PyObject*::+1:
956PyNumber_Power:PyObject*:o1:0:
957PyNumber_Power:PyObject*:o2:0:
958PyNumber_Power:PyObject*:o3:0:
959
960PyNumber_Remainder:PyObject*::+1:
961PyNumber_Remainder:PyObject*:o1:0:
962PyNumber_Remainder:PyObject*:o2:0:
963
964PyNumber_Rshift:PyObject*::+1:
965PyNumber_Rshift:PyObject*:o1:0:
966PyNumber_Rshift:PyObject*:o2:0:
967
968PyNumber_Subtract:PyObject*::+1:
969PyNumber_Subtract:PyObject*:o1:0:
970PyNumber_Subtract:PyObject*:o2:0:
971
972PyNumber_TrueDivide:PyObject*::+1:
973PyNumber_TrueDivide:PyObject*:v:0:
974PyNumber_TrueDivide:PyObject*:w:0:
975
976PyNumber_Xor:PyObject*::+1:
977PyNumber_Xor:PyObject*:o1:0:
978PyNumber_Xor:PyObject*:o2:0:
979
Larry Hastingsb0827312014-02-09 22:05:19 -0800980PyObject_AsFileDescriptor:int:::
Georg Brandl116aa622007-08-15 14:28:22 +0000981PyObject_AsFileDescriptor:PyObject*:o:0:
982
Serhiy Storchaka1f22a302018-05-22 22:26:42 +0300983PyOS_AfterFork:void:::
984
985PyOS_AfterFork_Child:void:::
986
987PyOS_AfterFork_Parent:void:::
988
989PyOS_BeforeFork:void:::
990
Brett Cannon746102b2016-06-09 16:58:38 -0700991PyOS_FSPath:PyObject*::+1:
992PyOS_FSPath:PyObject*:path:0:
993
Georg Brandl116aa622007-08-15 14:28:22 +0000994PyObject_Call:PyObject*::+1:
995PyObject_Call:PyObject*:callable_object:0:
996PyObject_Call:PyObject*:args:0:
997PyObject_Call:PyObject*:kw:0:
998
999PyObject_CallFunction:PyObject*::+1:
1000PyObject_CallFunction:PyObject*:callable_object:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +03001001PyObject_CallFunction:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +00001002PyObject_CallFunction::...::
1003
1004PyObject_CallFunctionObjArgs:PyObject*::+1:
1005PyObject_CallFunctionObjArgs:PyObject*:callable:0:
1006PyObject_CallFunctionObjArgs::...::
1007
1008PyObject_CallMethod:PyObject*::+1:
1009PyObject_CallMethod:PyObject*:o:0:
Serhiy Storchaka1cfebc72013-05-29 18:50:54 +03001010PyObject_CallMethod:const char*:m::
1011PyObject_CallMethod:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +00001012PyObject_CallMethod::...::
1013
1014PyObject_CallMethodObjArgs:PyObject*::+1:
1015PyObject_CallMethodObjArgs:PyObject*:o:0:
Serhiy Storchakadce05502013-05-28 22:46:15 +03001016PyObject_CallMethodObjArgs:PyObject*:name:0:
Georg Brandl116aa622007-08-15 14:28:22 +00001017PyObject_CallMethodObjArgs::...::
1018
1019PyObject_CallObject:PyObject*::+1:
1020PyObject_CallObject:PyObject*:callable_object:0:
1021PyObject_CallObject:PyObject*:args:0:
1022
1023PyObject_Cmp:int:::
1024PyObject_Cmp:PyObject*:o1:0:
1025PyObject_Cmp:PyObject*:o2:0:
1026PyObject_Cmp:int*:result::
1027
1028PyObject_Compare:int:::
1029PyObject_Compare:PyObject*:o1:0:
1030PyObject_Compare:PyObject*:o2:0:
1031
1032PyObject_DelAttr:int:::
1033PyObject_DelAttr:PyObject*:o:0:
1034PyObject_DelAttr:PyObject*:attr_name:0:
1035
1036PyObject_DelAttrString:int:::
1037PyObject_DelAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001038PyObject_DelAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +00001039
1040PyObject_DelItem:int:::
1041PyObject_DelItem:PyObject*:o:0:
1042PyObject_DelItem:PyObject*:key:0:
1043
1044PyObject_Dir:PyObject*::+1:
1045PyObject_Dir:PyObject*:o:0:
1046
1047PyObject_GetAttr:PyObject*::+1:
1048PyObject_GetAttr:PyObject*:o:0:
1049PyObject_GetAttr:PyObject*:attr_name:0:
1050
1051PyObject_GetAttrString:PyObject*::+1:
1052PyObject_GetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001053PyObject_GetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +00001054
1055PyObject_GetItem:PyObject*::+1:
1056PyObject_GetItem:PyObject*:o:0:
1057PyObject_GetItem:PyObject*:key:0:
1058
1059PyObject_GetIter:PyObject*::+1:
1060PyObject_GetIter:PyObject*:o:0:
1061
1062PyObject_HasAttr:int:::
1063PyObject_HasAttr:PyObject*:o:0:
1064PyObject_HasAttr:PyObject*:attr_name:0:
1065
1066PyObject_HasAttrString:int:::
1067PyObject_HasAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001068PyObject_HasAttrString:const char*:attr_name:0:
Georg Brandl116aa622007-08-15 14:28:22 +00001069
1070PyObject_Hash:int:::
1071PyObject_Hash:PyObject*:o:0:
1072
1073PyObject_IsTrue:int:::
1074PyObject_IsTrue:PyObject*:o:0:
1075
1076PyObject_Init:PyObject*::0:
1077PyObject_Init:PyObject*:op:0:
1078
1079PyObject_InitVar:PyVarObject*::0:
1080PyObject_InitVar:PyVarObject*:op:0:
1081
1082PyObject_Length:int:::
1083PyObject_Length:PyObject*:o:0:
1084
1085PyObject_NEW:PyObject*::+1:
1086
1087PyObject_New:PyObject*::+1:
1088
1089PyObject_NEW_VAR:PyObject*::+1:
1090
1091PyObject_NewVar:PyObject*::+1:
1092
1093PyObject_Print:int:::
1094PyObject_Print:PyObject*:o:0:
1095PyObject_Print:FILE*:fp::
1096PyObject_Print:int:flags::
1097
1098PyObject_Repr:PyObject*::+1:
1099PyObject_Repr:PyObject*:o:0:
1100
1101PyObject_RichCompare:PyObject*::+1:
1102PyObject_RichCompare:PyObject*:o1:0:
1103PyObject_RichCompare:PyObject*:o2:0:
1104PyObject_RichCompare:int:opid::
1105
1106PyObject_RichCompareBool:int:::
1107PyObject_RichCompareBool:PyObject*:o1:0:
1108PyObject_RichCompareBool:PyObject*:o2:0:
1109PyObject_RichCompareBool:int:opid::
1110
1111PyObject_SetAttr:int:::
1112PyObject_SetAttr:PyObject*:o:0:
1113PyObject_SetAttr:PyObject*:attr_name:0:
1114PyObject_SetAttr:PyObject*:v:+1:
1115
1116PyObject_SetAttrString:int:::
1117PyObject_SetAttrString:PyObject*:o:0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001118PyObject_SetAttrString:const char*:attr_name::
Georg Brandl116aa622007-08-15 14:28:22 +00001119PyObject_SetAttrString:PyObject*:v:+1:
1120
1121PyObject_SetItem:int:::
1122PyObject_SetItem:PyObject*:o:0:
1123PyObject_SetItem:PyObject*:key:0:
1124PyObject_SetItem:PyObject*:v:+1:
1125
1126PyObject_Str:PyObject*::+1:
1127PyObject_Str:PyObject*:o:0:
1128
1129PyObject_Type:PyObject*::+1:
1130PyObject_Type:PyObject*:o:0:
1131
1132PyObject_Unicode:PyObject*::+1:
1133PyObject_Unicode:PyObject*:o:0:
1134
1135PyParser_SimpleParseFile:struct _node*:::
1136PyParser_SimpleParseFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001137PyParser_SimpleParseFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001138PyParser_SimpleParseFile:int:start::
1139
1140PyParser_SimpleParseString:struct _node*:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001141PyParser_SimpleParseString:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001142PyParser_SimpleParseString:int:start::
1143
1144PyRun_AnyFile:int:::
1145PyRun_AnyFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001146PyRun_AnyFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001147
1148PyRun_File:PyObject*::+1:??? -- same as eval_code2()
1149PyRun_File:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001150PyRun_File:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001151PyRun_File:int:start::
1152PyRun_File:PyObject*:globals:0:
1153PyRun_File:PyObject*:locals:0:
1154
1155PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1156PyRun_FileEx:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001157PyRun_FileEx:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001158PyRun_FileEx:int:start::
1159PyRun_FileEx:PyObject*:globals:0:
1160PyRun_FileEx:PyObject*:locals:0:
1161PyRun_FileEx:int:closeit::
1162
1163PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1164PyRun_FileFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001165PyRun_FileFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001166PyRun_FileFlags:int:start::
1167PyRun_FileFlags:PyObject*:globals:0:
1168PyRun_FileFlags:PyObject*:locals:0:
1169PyRun_FileFlags:PyCompilerFlags*:flags::
1170
1171PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1172PyRun_FileExFlags:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001173PyRun_FileExFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001174PyRun_FileExFlags:int:start::
1175PyRun_FileExFlags:PyObject*:globals:0:
1176PyRun_FileExFlags:PyObject*:locals:0:
1177PyRun_FileExFlags:int:closeit::
1178PyRun_FileExFlags:PyCompilerFlags*:flags::
1179
1180PyRun_InteractiveLoop:int:::
1181PyRun_InteractiveLoop:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001182PyRun_InteractiveLoop:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001183
1184PyRun_InteractiveOne:int:::
1185PyRun_InteractiveOne:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001186PyRun_InteractiveOne:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001187
1188PyRun_SimpleFile:int:::
1189PyRun_SimpleFile:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001190PyRun_SimpleFile:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001191
1192PyRun_SimpleString:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001193PyRun_SimpleString:const char*:command::
Georg Brandl116aa622007-08-15 14:28:22 +00001194
1195PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001196PyRun_String:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001197PyRun_String:int:start::
1198PyRun_String:PyObject*:globals:0:
1199PyRun_String:PyObject*:locals:0:
1200
1201PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001202PyRun_StringFlags:const char*:str::
Georg Brandl116aa622007-08-15 14:28:22 +00001203PyRun_StringFlags:int:start::
1204PyRun_StringFlags:PyObject*:globals:0:
1205PyRun_StringFlags:PyObject*:locals:0:
1206PyRun_StringFlags:PyCompilerFlags*:flags::
1207
1208PySeqIter_New:PyObject*::+1:
1209PySeqIter_New:PyObject*:seq::
1210
1211PySequence_Check:int:::
1212PySequence_Check:PyObject*:o:0:
1213
1214PySequence_Concat:PyObject*::+1:
1215PySequence_Concat:PyObject*:o1:0:
1216PySequence_Concat:PyObject*:o2:0:
1217
1218PySequence_Count:int:::
1219PySequence_Count:PyObject*:o:0:
1220PySequence_Count:PyObject*:value:0:
1221
1222PySequence_DelItem:int:::
1223PySequence_DelItem:PyObject*:o:0:
1224PySequence_DelItem:int:i::
1225
1226PySequence_DelSlice:int:::
1227PySequence_DelSlice:PyObject*:o:0:
1228PySequence_DelSlice:int:i1::
1229PySequence_DelSlice:int:i2::
1230
1231PySequence_Fast:PyObject*::+1:
1232PySequence_Fast:PyObject*:v:0:
1233PySequence_Fast:const char*:m::
1234
1235PySequence_Fast_GET_ITEM:PyObject*::0:
1236PySequence_Fast_GET_ITEM:PyObject*:o:0:
1237PySequence_Fast_GET_ITEM:int:i::
1238
1239PySequence_GetItem:PyObject*::+1:
1240PySequence_GetItem:PyObject*:o:0:
1241PySequence_GetItem:int:i::
1242
1243PySequence_GetSlice:PyObject*::+1:
1244PySequence_GetSlice:PyObject*:o:0:
1245PySequence_GetSlice:int:i1::
1246PySequence_GetSlice:int:i2::
1247
1248PySequence_In:int:::
1249PySequence_In:PyObject*:o:0:
1250PySequence_In:PyObject*:value:0:
1251
1252PySequence_Index:int:::
1253PySequence_Index:PyObject*:o:0:
1254PySequence_Index:PyObject*:value:0:
1255
1256PySequence_InPlaceConcat:PyObject*::+1:
1257PySequence_InPlaceConcat:PyObject*:s:0:
1258PySequence_InPlaceConcat:PyObject*:o:0:
1259
1260PySequence_InPlaceRepeat:PyObject*::+1:
1261PySequence_InPlaceRepeat:PyObject*:s:0:
1262PySequence_InPlaceRepeat:PyObject*:o:0:
1263
1264PySequence_ITEM:PyObject*::+1:
1265PySequence_ITEM:PyObject*:o:0:
1266PySequence_ITEM:int:i::
1267
1268PySequence_Repeat:PyObject*::+1:
1269PySequence_Repeat:PyObject*:o:0:
1270PySequence_Repeat:int:count::
1271
1272PySequence_SetItem:int:::
1273PySequence_SetItem:PyObject*:o:0:
1274PySequence_SetItem:int:i::
1275PySequence_SetItem:PyObject*:v:+1:
1276
1277PySequence_SetSlice:int:::
1278PySequence_SetSlice:PyObject*:o:0:
1279PySequence_SetSlice:int:i1::
1280PySequence_SetSlice:int:i2::
1281PySequence_SetSlice:PyObject*:v:+1:
1282
1283PySequence_List:PyObject*::+1:
1284PySequence_List:PyObject*:o:0:
1285
1286PySequence_Tuple:PyObject*::+1:
1287PySequence_Tuple:PyObject*:o:0:
1288
1289PySet_Append:int:::
1290PySet_Append:PyObject*:set:0:
1291PySet_Append:PyObject*:key:+1:
1292
1293PySet_Contains:int:::
1294PySet_Contains:PyObject*:anyset:0:
1295PySet_Contains:PyObject*:key:0:
1296
1297PySet_Discard:int:::
1298PySet_Discard:PyObject*:set:0:
1299PySet_Discard:PyObject*:key:-1:no effect if key not found
1300
1301PySet_New:PyObject*::+1:
1302PySet_New:PyObject*:iterable:0:
1303
1304PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
1305PySet_Pop:PyObject*:set:0:
1306
1307PySet_Size:int:::
1308PySet_Size:PyObject*:anyset:0:
1309
Serhiy Storchaka1f22a302018-05-22 22:26:42 +03001310PySlice_AdjustIndices:Py_ssize_t:::
1311PySlice_AdjustIndices:Py_ssize_t:length::
1312PySlice_AdjustIndices:Py_ssize_t*:start::
1313PySlice_AdjustIndices:Py_ssize_t*:stop::
1314PySlice_AdjustIndices:Py_ssize_t*:step::
1315
Georg Brandl116aa622007-08-15 14:28:22 +00001316PySlice_Check:int:::
1317PySlice_Check:PyObject*:ob:0:
1318
1319PySlice_New:PyObject*::+1:
1320PySlice_New:PyObject*:start:0:
1321PySlice_New:PyObject*:stop:0:
1322PySlice_New:PyObject*:step:0:
1323
Serhiy Storchaka1f22a302018-05-22 22:26:42 +03001324PySlice_Unpack:int:::
1325PySlice_Unpack:PyObject*:slice:0:
1326PySlice_Unpack:Py_ssize_t*:start::
1327PySlice_Unpack:Py_ssize_t*:stop::
1328PySlice_Unpack:Py_ssize_t*:step::
1329
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001330PyString_AS_STRING:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001331PyString_AS_STRING:PyObject*:string:0:
1332
1333PyString_AsDecodedObject:PyObject*::+1:
1334PyString_AsDecodedObject:PyObject*:str:0:
1335PyString_AsDecodedObject:const char*:encoding::
1336PyString_AsDecodedObject:const char*:errors::
1337
1338PyString_AsEncodedObject:PyObject*::+1:
1339PyString_AsEncodedObject:PyObject*:str:0:
1340PyString_AsEncodedObject:const char*:encoding::
1341PyString_AsEncodedObject:const char*:errors::
1342
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001343PyString_AsString:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001344PyString_AsString:PyObject*:string:0:
1345
1346PyString_AsStringAndSize:int:::
1347PyString_AsStringAndSize:PyObject*:obj:0:
1348PyString_AsStringAndSize:char**:buffer::
1349PyString_AsStringAndSize:int*:length::
1350
1351PyString_Check:int:::
1352PyString_Check:PyObject*:o:0:
1353
1354PyString_Concat:void:::
1355PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
1356PyString_Concat:PyObject*:newpart:0:
1357
1358PyString_ConcatAndDel:void:::
1359PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
1360PyString_ConcatAndDel:PyObject*:newpart:-1:
1361
1362PyString_Format:PyObject*::+1:
1363PyString_Format:PyObject*:format:0:
1364PyString_Format:PyObject*:args:0:
1365
1366PyString_FromString:PyObject*::+1:
1367PyString_FromString:const char*:v::
1368
1369PyString_FromStringAndSize:PyObject*::+1:
1370PyString_FromStringAndSize:const char*:v::
1371PyString_FromStringAndSize:int:len::
1372
1373PyString_FromFormat:PyObject*::+1:
1374PyString_FromFormat:const char*:format::
1375PyString_FromFormat::...::
1376
1377PyString_FromFormatV:PyObject*::+1:
1378PyString_FromFormatV:const char*:format::
1379PyString_FromFormatV:va_list:vargs::
1380
1381PyString_GET_SIZE:int:::
1382PyString_GET_SIZE:PyObject*:string:0:
1383
1384PyString_InternFromString:PyObject*::+1:
1385PyString_InternFromString:const char*:v::
1386
1387PyString_InternInPlace:void:::
1388PyString_InternInPlace:PyObject**:string:+1:???
1389
1390PyString_Size:int:::
1391PyString_Size:PyObject*:string:0:
1392
1393PyString_Decode:PyObject*::+1:
1394PyString_Decode:const char*:s::
1395PyString_Decode:int:size::
1396PyString_Decode:const char*:encoding::
1397PyString_Decode:const char*:errors::
1398
1399PyString_Encode:PyObject*::+1:
1400PyString_Encode:const char*:s::
1401PyString_Encode:int:size::
1402PyString_Encode:const char*:encoding::
1403PyString_Encode:const char*:errors::
1404
1405PyString_AsEncodedString:PyObject*::+1:
1406PyString_AsEncodedString:PyObject*:str::
1407PyString_AsEncodedString:const char*:encoding::
1408PyString_AsEncodedString:const char*:errors::
1409
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001410PySys_AddWarnOption:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001411PySys_AddWarnOption:const char*:s::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001412
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001413PySys_AddXOption:void:::
1414PySys_AddXOption:const wchar_t*:s::
1415
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001416PySys_GetObject:PyObject*::0:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001417PySys_GetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001418
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001419PySys_GetXOptions:PyObject*::0:
1420
Georg Brandl116aa622007-08-15 14:28:22 +00001421PySys_SetArgv:int:::
1422PySys_SetArgv:int:argc::
1423PySys_SetArgv:char**:argv::
1424
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001425PySys_SetObject:int:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001426PySys_SetObject:const char*:name::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001427PySys_SetObject:PyObject*:v:+1:
1428
1429PySys_ResetWarnOptions:void:::
1430
1431PySys_WriteStdout:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001432PySys_WriteStdout:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001433
1434PySys_WriteStderr:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001435PySys_WriteStderr:const char*:format::
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001436
Georg Brandl116aa622007-08-15 14:28:22 +00001437PyThreadState_Clear:void:::
1438PyThreadState_Clear:PyThreadState*:tstate::
1439
1440PyThreadState_Delete:void:::
1441PyThreadState_Delete:PyThreadState*:tstate::
1442
1443PyThreadState_Get:PyThreadState*:::
1444
1445PyThreadState_GetDict:PyObject*::0:
1446
1447PyThreadState_New:PyThreadState*:::
1448PyThreadState_New:PyInterpreterState*:interp::
1449
1450PyThreadState_Swap:PyThreadState*:::
1451PyThreadState_Swap:PyThreadState*:tstate::
1452
Miss Islington (bot)3718f922018-05-22 01:59:33 -07001453PyThread_tss_alloc:Py_tss_t*:::
1454
1455PyThread_tss_create:int:::
1456PyThread_tss_create:Py_tss_t*:key::
1457
1458PyThread_tss_delete:void:::
1459PyThread_tss_delete:Py_tss_t*:key::
1460
1461PyThread_tss_free:void:::
1462PyThread_tss_free:Py_tss_t*:key::
1463
1464PyThread_tss_get:void*:::
1465PyThread_tss_get:Py_tss_t*:key::
1466
1467PyThread_tss_is_created:int:::
1468PyThread_tss_is_created:Py_tss_t*:key::
1469
1470PyThread_tss_set:int:::
1471PyThread_tss_set:Py_tss_t*:key::
1472PyThread_tss_set:void*:value::
1473
Georg Brandl116aa622007-08-15 14:28:22 +00001474PyTime_FromTime:PyObject*::+1:
1475PyTime_FromTime:int:hour::
1476PyTime_FromTime:int:minute::
1477PyTime_FromTime:int:second::
1478PyTime_FromTime:int:usecond::
1479
Serhiy Storchaka1f22a302018-05-22 22:26:42 +03001480PyTraceMalloc_Track:int:::
1481PyTraceMalloc_Track:unsigned int:domain::
1482PyTraceMalloc_Track:uintptr_t:ptr::
1483PyTraceMalloc_Track:size_t:size::
1484
1485PyTraceMalloc_Untrack:int:::
1486PyTraceMalloc_Untrack:unsigned int:domain::
1487PyTraceMalloc_Untrack:uintptr_t:ptr::
1488
Georg Brandl116aa622007-08-15 14:28:22 +00001489PyTuple_Check:int:::
1490PyTuple_Check:PyObject*:p:0:
1491
1492PyTuple_GET_ITEM:PyObject*::0:
1493PyTuple_GET_ITEM:PyTupleObject*:p:0:
1494PyTuple_GET_ITEM:int:pos::
1495
1496PyTuple_GetItem:PyObject*::0:
1497PyTuple_GetItem:PyTupleObject*:p:0:
1498PyTuple_GetItem:int:pos::
1499
1500PyTuple_GetSlice:PyObject*::+1:
1501PyTuple_GetSlice:PyTupleObject*:p:0:
1502PyTuple_GetSlice:int:low::
1503PyTuple_GetSlice:int:high::
1504
1505PyTuple_New:PyObject*::+1:
1506PyTuple_New:int:len::
1507
1508PyTuple_Pack:PyObject*::+1:
1509PyTuple_Pack:int:len::
1510PyTuple_Pack:PyObject*:...:0:
1511
1512PyTuple_SET_ITEM:void:::
1513PyTuple_SET_ITEM:PyTupleObject*:p:0:
1514PyTuple_SET_ITEM:int:pos::
1515PyTuple_SET_ITEM:PyObject*:o:0:
1516
1517PyTuple_SetItem:int:::
1518PyTuple_SetItem:PyTupleObject*:p:0:
1519PyTuple_SetItem:int:pos::
1520PyTuple_SetItem:PyObject*:o:0:
1521
1522PyTuple_Size:int:::
1523PyTuple_Size:PyTupleObject*:p:0:
1524
1525PyType_GenericAlloc:PyObject*::+1:
1526PyType_GenericAlloc:PyObject*:type:0:
1527PyType_GenericAlloc:int:nitems:0:
1528
1529PyType_GenericNew:PyObject*::+1:
1530PyType_GenericNew:PyObject*:type:0:
1531PyType_GenericNew:PyObject*:args:0:
1532PyType_GenericNew:PyObject*:kwds:0:
1533
1534PyUnicode_Check:int:::
1535PyUnicode_Check:PyObject*:o:0:
1536
1537PyUnicode_GET_SIZE:int:::
1538PyUnicode_GET_SIZE:PyObject*:o:0:
1539
1540PyUnicode_GET_DATA_SIZE:int:::
1541PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1542
1543PyUnicode_AS_UNICODE:Py_UNICODE*:::
1544PyUnicode_AS_UNICODE:PyObject*:o:0:
1545
1546PyUnicode_AS_DATA:const char*:::
1547PyUnicode_AS_DATA:PyObject*:o:0:
1548
1549Py_UNICODE_ISSPACE:int:::
1550Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1551
1552Py_UNICODE_ISLOWER:int:::
1553Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1554
1555Py_UNICODE_ISUPPER:int:::
1556Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1557
1558Py_UNICODE_ISTITLE:int:::
1559Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1560
1561Py_UNICODE_ISLINEBREAK:int:::
1562Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1563
1564Py_UNICODE_ISDECIMAL:int:::
1565Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1566
1567Py_UNICODE_ISDIGIT:int:::
1568Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1569
1570Py_UNICODE_ISNUMERIC:int:::
1571Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1572
1573Py_UNICODE_TOLOWER:Py_UNICODE:::
1574Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1575
1576Py_UNICODE_TOUPPER:Py_UNICODE:::
1577Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1578
1579Py_UNICODE_TOTITLE:Py_UNICODE:::
1580Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1581
1582Py_UNICODE_TODECIMAL:int:::
1583Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1584
1585Py_UNICODE_TODIGIT:int:::
1586Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1587
1588Py_UNICODE_TONUMERIC:double:::
1589Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1590
1591PyUnicode_FromUnicode:PyObject*::+1:
1592PyUnicode_FromUnicode:const Py_UNICODE*:u::
1593PyUnicode_FromUnicode:int:size::
1594
1595PyUnicode_AsUnicode:Py_UNICODE*:::
1596PyUnicode_AsUnicode:PyObject :*unicode:0:
1597
1598PyUnicode_GetSize:int:::
1599PyUnicode_GetSize:PyObject :*unicode:0:
1600
1601PyUnicode_FromObject:PyObject*::+1:
1602PyUnicode_FromObject:PyObject*:*obj:0:
1603
1604PyUnicode_FromEncodedObject:PyObject*::+1:
1605PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1606PyUnicode_FromEncodedObject:const char*:encoding::
1607PyUnicode_FromEncodedObject:const char*:errors::
1608
1609PyUnicode_FromWideChar:PyObject*::+1:
1610PyUnicode_FromWideChar:const wchar_t*:w::
1611PyUnicode_FromWideChar:int:size::
1612
1613PyUnicode_AsWideChar:int:::
1614PyUnicode_AsWideChar:PyObject*:*unicode:0:
1615PyUnicode_AsWideChar:wchar_t*:w::
1616PyUnicode_AsWideChar:int:size::
1617
1618PyUnicode_Decode:PyObject*::+1:
1619PyUnicode_Decode:const char*:s::
1620PyUnicode_Decode:int:size::
1621PyUnicode_Decode:const char*:encoding::
1622PyUnicode_Decode:const char*:errors::
1623
1624PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1625PyUnicode_DecodeUTF16Stateful:const char*:s::
1626PyUnicode_DecodeUTF16Stateful:int:size::
1627PyUnicode_DecodeUTF16Stateful:const char*:errors::
1628PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1629PyUnicode_DecodeUTF16Stateful:int*:consumed::
1630
1631PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1632PyUnicode_DecodeUTF8Stateful:const char*:s::
1633PyUnicode_DecodeUTF8Stateful:int:size::
1634PyUnicode_DecodeUTF8Stateful:const char*:errors::
1635PyUnicode_DecodeUTF8Stateful:int*:consumed::
1636
1637PyUnicode_Encode:PyObject*::+1:
1638PyUnicode_Encode:const Py_UNICODE*:s::
1639PyUnicode_Encode:int:size::
1640PyUnicode_Encode:const char*:encoding::
1641PyUnicode_Encode:const char*:errors::
1642
1643PyUnicode_AsEncodedString:PyObject*::+1:
1644PyUnicode_AsEncodedString:PyObject*:unicode::
1645PyUnicode_AsEncodedString:const char*:encoding::
1646PyUnicode_AsEncodedString:const char*:errors::
1647
1648PyUnicode_DecodeUTF8:PyObject*::+1:
1649PyUnicode_DecodeUTF8:const char*:s::
1650PyUnicode_DecodeUTF8:int:size::
1651PyUnicode_DecodeUTF8:const char*:errors::
1652
1653PyUnicode_EncodeUTF8:PyObject*::+1:
1654PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1655PyUnicode_EncodeUTF8:int:size::
1656PyUnicode_EncodeUTF8:const char*:errors::
1657
1658PyUnicode_AsUTF8String:PyObject*::+1:
1659PyUnicode_AsUTF8String:PyObject*:unicode::
1660
1661PyUnicode_DecodeUTF16:PyObject*::+1:
1662PyUnicode_DecodeUTF16:const char*:s::
1663PyUnicode_DecodeUTF16:int:size::
1664PyUnicode_DecodeUTF16:const char*:errors::
1665PyUnicode_DecodeUTF16:int*:byteorder::
1666
1667PyUnicode_EncodeUTF16:PyObject*::+1:
1668PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1669PyUnicode_EncodeUTF16:int:size::
1670PyUnicode_EncodeUTF16:const char*:errors::
1671PyUnicode_EncodeUTF16:int:byteorder::
1672
1673PyUnicode_AsUTF16String:PyObject*::+1:
1674PyUnicode_AsUTF16String:PyObject*:unicode::
1675
1676PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1677PyUnicode_DecodeUnicodeEscape:const char*:s::
1678PyUnicode_DecodeUnicodeEscape:int:size::
1679PyUnicode_DecodeUnicodeEscape:const char*:errors::
1680
1681PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1682PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1683PyUnicode_EncodeUnicodeEscape:int:size::
1684PyUnicode_EncodeUnicodeEscape:const char*:errors::
1685
1686PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1687PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1688
1689PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1690PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1691PyUnicode_DecodeRawUnicodeEscape:int:size::
1692PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1693
1694PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1695PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1696PyUnicode_EncodeRawUnicodeEscape:int:size::
1697PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1698
1699PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1700PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1701
1702PyUnicode_DecodeLatin1:PyObject*::+1:
1703PyUnicode_DecodeLatin1:const char*:s::
1704PyUnicode_DecodeLatin1:int:size::
1705PyUnicode_DecodeLatin1:const char*:errors::
1706
1707PyUnicode_EncodeLatin1:PyObject*::+1:
1708PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1709PyUnicode_EncodeLatin1:int:size::
1710PyUnicode_EncodeLatin1:const char*:errors::
1711
1712PyUnicode_AsLatin1String:PyObject*::+1:
1713PyUnicode_AsLatin1String:PyObject*:unicode::
1714
1715PyUnicode_DecodeASCII:PyObject*::+1:
1716PyUnicode_DecodeASCII:const char*:s::
1717PyUnicode_DecodeASCII:int:size::
1718PyUnicode_DecodeASCII:const char*:errors::
1719
1720PyUnicode_EncodeASCII:PyObject*::+1:
1721PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1722PyUnicode_EncodeASCII:int:size::
1723PyUnicode_EncodeASCII:const char*:errors::
1724
1725PyUnicode_AsASCIIString:PyObject*::+1:
1726PyUnicode_AsASCIIString:PyObject*:unicode::
1727
1728PyUnicode_DecodeCharmap:PyObject*::+1:
1729PyUnicode_DecodeCharmap:const char*:s::
1730PyUnicode_DecodeCharmap:int:size::
1731PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1732PyUnicode_DecodeCharmap:const char*:errors::
1733
1734PyUnicode_EncodeCharmap:PyObject*::+1:
1735PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1736PyUnicode_EncodeCharmap:int:size::
1737PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1738PyUnicode_EncodeCharmap:const char*:errors::
1739
1740PyUnicode_AsCharmapString:PyObject*::+1:
1741PyUnicode_AsCharmapString:PyObject*:unicode:0:
1742PyUnicode_AsCharmapString:PyObject*:mapping:0:
1743
1744PyUnicode_TranslateCharmap:PyObject*::+1:
1745PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1746PyUnicode_TranslateCharmap:int:size::
1747PyUnicode_TranslateCharmap:PyObject*:table:0:
1748PyUnicode_TranslateCharmap:const char*:errors::
1749
1750PyUnicode_DecodeMBCS:PyObject*::+1:
1751PyUnicode_DecodeMBCS:const char*:s::
1752PyUnicode_DecodeMBCS:int:size::
1753PyUnicode_DecodeMBCS:const char*:errors::
1754
1755PyUnicode_EncodeMBCS:PyObject*::+1:
1756PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1757PyUnicode_EncodeMBCS:int:size::
1758PyUnicode_EncodeMBCS:const char*:errors::
1759
1760PyUnicode_AsMBCSString:PyObject*::+1:
1761PyUnicode_AsMBCSString:PyObject*:unicode::
1762
1763PyUnicode_Concat:PyObject*::+1:
1764PyUnicode_Concat:PyObject*:left:0:
1765PyUnicode_Concat:PyObject*:right:0:
1766
1767PyUnicode_Split:PyObject*::+1:
1768PyUnicode_Split:PyObject*:left:0:
1769PyUnicode_Split:PyObject*:right:0:
1770PyUnicode_Split:int:maxsplit::
1771
1772PyUnicode_Splitlines:PyObject*::+1:
1773PyUnicode_Splitlines:PyObject*:s:0:
1774PyUnicode_Splitlines:int:maxsplit::
1775
1776PyUnicode_Translate:PyObject*::+1:
1777PyUnicode_Translate:PyObject*:str:0:
1778PyUnicode_Translate:PyObject*:table:0:
1779PyUnicode_Translate:const char*:errors::
1780
1781PyUnicode_Join:PyObject*::+1:
1782PyUnicode_Join:PyObject*:separator:0:
1783PyUnicode_Join:PyObject*:seq:0:
1784
Benjamin Peterson5e55b3e2010-02-03 02:35:45 +00001785PyUnicode_Tailmatch:int:::
Georg Brandl116aa622007-08-15 14:28:22 +00001786PyUnicode_Tailmatch:PyObject*:str:0:
1787PyUnicode_Tailmatch:PyObject*:substr:0:
1788PyUnicode_Tailmatch:int:start::
1789PyUnicode_Tailmatch:int:end::
1790PyUnicode_Tailmatch:int:direction::
1791
1792PyUnicode_Find:int:::
1793PyUnicode_Find:PyObject*:str:0:
1794PyUnicode_Find:PyObject*:substr:0:
1795PyUnicode_Find:int:start::
1796PyUnicode_Find:int:end::
1797PyUnicode_Find:int:direction::
1798
1799PyUnicode_Count:int:::
1800PyUnicode_Count:PyObject*:str:0:
1801PyUnicode_Count:PyObject*:substr:0:
1802PyUnicode_Count:int:start::
1803PyUnicode_Count:int:end::
1804
1805PyUnicode_Replace:PyObject*::+1:
1806PyUnicode_Replace:PyObject*:str:0:
1807PyUnicode_Replace:PyObject*:substr:0:
1808PyUnicode_Replace:PyObject*:replstr:0:
1809PyUnicode_Replace:int:maxcount::
1810
1811PyUnicode_Compare:int:::
1812PyUnicode_Compare:PyObject*:left:0:
1813PyUnicode_Compare:PyObject*:right:0:
1814
1815PyUnicode_Format:PyObject*::+1:
1816PyUnicode_Format:PyObject*:format:0:
1817PyUnicode_Format:PyObject*:args:0:
1818
1819PyUnicode_Contains:int:::
1820PyUnicode_Contains:PyObject*:container:0:
1821PyUnicode_Contains:PyObject*:element:0:
1822
1823PyWeakref_GET_OBJECT:PyObject*::0:
1824PyWeakref_GET_OBJECT:PyObject*:ref:0:
1825
1826PyWeakref_GetObject:PyObject*::0:
1827PyWeakref_GetObject:PyObject*:ref:0:
1828
1829PyWeakref_NewProxy:PyObject*::+1:
1830PyWeakref_NewProxy:PyObject*:ob:0:
1831PyWeakref_NewProxy:PyObject*:callback:0:
1832
1833PyWeakref_NewRef:PyObject*::+1:
1834PyWeakref_NewRef:PyObject*:ob:0:
1835PyWeakref_NewRef:PyObject*:callback:0:
1836
1837PyWrapper_New:PyObject*::+1:
1838PyWrapper_New:PyObject*:d:0:
1839PyWrapper_New:PyObject*:self:0:
1840
1841Py_AtExit:int:::
1842Py_AtExit:void (*)():func::
1843
1844Py_BuildValue:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001845Py_BuildValue:const char*:format::
Georg Brandl116aa622007-08-15 14:28:22 +00001846
1847Py_CompileString:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001848Py_CompileString:const char*:str::
1849Py_CompileString:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001850Py_CompileString:int:start::
1851
1852Py_CompileStringFlags:PyObject*::+1:
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001853Py_CompileStringFlags:const char*:str::
1854Py_CompileStringFlags:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001855Py_CompileStringFlags:int:start::
1856Py_CompileStringFlags:PyCompilerFlags*:flags::
1857
1858Py_DECREF:void:::
1859Py_DECREF:PyObject*:o:-1:
1860
1861Py_EndInterpreter:void:::
1862Py_EndInterpreter:PyThreadState*:tstate::
1863
1864Py_Exit:void:::
1865Py_Exit:int:status::
1866
1867Py_FatalError:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001868Py_FatalError:const char*:message::
Georg Brandl116aa622007-08-15 14:28:22 +00001869
1870Py_FdIsInteractive:int:::
1871Py_FdIsInteractive:FILE*:fp::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001872Py_FdIsInteractive:const char*:filename::
Georg Brandl116aa622007-08-15 14:28:22 +00001873
1874Py_Finalize:void:::
1875
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001876Py_GetBuildInfoconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001877
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001878Py_GetCompilerconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001879
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001880Py_GetCopyrightconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001881
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001882Py_GetExecPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001883
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001884Py_GetPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001885
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001886Py_GetPlatformconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001887
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001888Py_GetPrefix:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001889
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001890Py_GetProgramFullPath:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001891
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001892Py_GetProgramName:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001893
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001894Py_GetVersionconst:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001895
1896Py_INCREF:void:::
1897Py_INCREF:PyObject*:o:+1:
1898
1899Py_Initialize:void:::
1900
1901Py_IsInitialized:int:::
1902
1903Py_NewInterpreter:PyThreadState*:::
1904
1905Py_SetProgramName:void:::
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001906Py_SetProgramName:const char*:name::
Georg Brandl116aa622007-08-15 14:28:22 +00001907
1908Py_XDECREF:void:::
1909Py_XDECREF:PyObject*:o:-1:if o is not NULL
1910
1911Py_XINCREF:void:::
1912Py_XINCREF:PyObject*:o:+1:if o is not NULL
1913
1914_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001915_PyImport_FindExtension:const char*:::
1916_PyImport_FindExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001917
1918_PyImport_Fini:void:::
1919
1920_PyImport_FixupExtension:PyObject*:::???
Serhiy Storchaka244d6252013-07-11 21:57:34 +03001921_PyImport_FixupExtension:const char*:::
1922_PyImport_FixupExtension:const char*:::
Georg Brandl116aa622007-08-15 14:28:22 +00001923
1924_PyImport_Init:void:::
1925
Georg Brandl116aa622007-08-15 14:28:22 +00001926_PyObject_New:PyObject*::+1:
1927_PyObject_New:PyTypeObject*:type:0:
1928
1929_PyObject_NewVar:PyObject*::+1:
1930_PyObject_NewVar:PyTypeObject*:type:0:
1931_PyObject_NewVar:int:size::
1932
1933_PyString_Resize:int:::
1934_PyString_Resize:PyObject**:string:+1:
1935_PyString_Resize:int:newsize::
1936
1937_PyTuple_Resize:int:::
1938_PyTuple_Resize:PyTupleObject**:p:+1:
1939_PyTuple_Resize:int:new::
1940
1941_Py_c_diff:Py_complex:::
1942_Py_c_diff:Py_complex:left::
1943_Py_c_diff:Py_complex:right::
1944
1945_Py_c_neg:Py_complex:::
1946_Py_c_neg:Py_complex:complex::
1947
1948_Py_c_pow:Py_complex:::
1949_Py_c_pow:Py_complex:num::
1950_Py_c_pow:Py_complex:exp::
1951
1952_Py_c_prod:Py_complex:::
1953_Py_c_prod:Py_complex:left::
1954_Py_c_prod:Py_complex:right::
1955
1956_Py_c_quot:Py_complex:::
1957_Py_c_quot:Py_complex:dividend::
1958_Py_c_quot:Py_complex:divisor::
1959
1960_Py_c_sum:Py_complex:::
1961_Py_c_sum:Py_complex:left::
1962_Py_c_sum:Py_complex:right::