blob: 8a6eb6679782b67afad290ef156bb5f516f9d402 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +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
32# code.
33
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
Larry Hastings402b73f2010-03-25 00:54:54 +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 Brandl8ec7f652007-08-15 14:28:01 +000097PyCObject_AsVoidPtr:void*:::
98PyCObject_AsVoidPtr:PyObject*:self:0:
99
100PyCObject_FromVoidPtr:PyObject*::+1:
101PyCObject_FromVoidPtr:void*:cobj::
102PyCObject_FromVoidPtr::void (* destr)(void* )::
103
104PyCObject_FromVoidPtrAndDesc:PyObject*::+1:
105PyCObject_FromVoidPtrAndDesc:void*:cobj::
106PyCObject_FromVoidPtrAndDesc:void*:desc::
107PyCObject_FromVoidPtrAndDesc:void(*)(void*,void*):destr::
108
109PyCObject_GetDesc:void*:::
110PyCObject_GetDesc:PyObject*:self:0:
111
112PyCell_New:PyObject*::+1:
113PyCell_New:PyObject*:ob:0:
114
115PyCell_GET:PyObject*::0:
116PyCell_GET:PyObject*:ob:0:
117
118PyCell_Get:PyObject*::+1:
119PyCell_Get:PyObject*:cell:0:
120
121PyCell_SET:void:::
122PyCell_SET:PyObject*:cell:0:
123PyCell_SET:PyObject*:value:0:
124
125PyCell_Set:int:::
126PyCell_Set:PyObject*:cell:0:
127PyCell_Set:PyObject*:value:0:
128
129PyCallIter_New:PyObject*::+1:
130PyCallIter_New:PyObject*:callable::
131PyCallIter_New:PyObject*:sentinel::
132
133PyCallable_Check:int:::
134PyCallable_Check:PyObject*:o:0:
135
136PyComplex_AsCComplex:Py_complex:::
137PyComplex_AsCComplex:PyObject*:op:0:
138
139PyComplex_Check:int:::
140PyComplex_Check:PyObject*:p:0:
141
142PyComplex_FromCComplex:PyObject*::+1:
143PyComplex_FromCComplex::Py_complex v::
144
145PyComplex_FromDoubles:PyObject*::+1:
146PyComplex_FromDoubles::double real::
147PyComplex_FromDoubles::double imag::
148
149PyComplex_ImagAsDouble:double:::
150PyComplex_ImagAsDouble:PyObject*:op:0:
151
152PyComplex_RealAsDouble:double:::
153PyComplex_RealAsDouble:PyObject*:op:0:
154
155PyDate_FromDate:PyObject*::+1:
156PyDate_FromDate:int:year::
157PyDate_FromDate:int:month::
158PyDate_FromDate:int:day::
159
160PyDate_FromTimestamp:PyObject*::+1:
161PyDate_FromTimestamp:PyObject*:args:0:
162
163PyDateTime_FromDateAndTime:PyObject*::+1:
164PyDateTime_FromDateAndTime:int:year::
165PyDateTime_FromDateAndTime:int:month::
166PyDateTime_FromDateAndTime:int:day::
167PyDateTime_FromDateAndTime:int:hour::
168PyDateTime_FromDateAndTime:int:minute::
169PyDateTime_FromDateAndTime:int:second::
170PyDateTime_FromDateAndTime:int:usecond::
171
172PyDateTime_FromTimestamp:PyObject*::+1:
173PyDateTime_FromTimestamp:PyObject*:args:0:
174
175PyDelta_FromDSU:PyObject*::+1:
176PyDelta_FromDSU:int:days::
177PyDelta_FromDSU:int:seconds::
178PyDelta_FromDSU:int:useconds::
179
180PyDescr_NewClassMethod:PyObject*::+1:
181PyDescr_NewClassMethod:PyTypeObject*:type::
182PyDescr_NewClassMethod:PyMethodDef*:method::
183
184PyDescr_NewGetSet:PyObject*::+1:
185PyDescr_NewGetSet:PyTypeObject*:type::
186PyDescr_NewGetSet:PyGetSetDef*:getset::
187
188PyDescr_NewMember:PyObject*::+1:
189PyDescr_NewMember:PyTypeObject*:type::
190PyDescr_NewMember:PyMemberDef*:member::
191
192PyDescr_NewMethod:PyObject*::+1:
193PyDescr_NewMethod:PyTypeObject*:type::
194PyDescr_NewMethod:PyMethodDef*:meth::
195
196PyDescr_NewWrapper:PyObject*::+1:
197PyDescr_NewWrapper:PyTypeObject*:type::
198PyDescr_NewWrapper:struct wrapperbase*:base::
199PyDescr_NewWrapper:void*:wrapped::
200
201PyDict_Check:int:::
202PyDict_Check:PyObject*:p:0:
203
204PyDict_Clear:void:::
205PyDict_Clear:PyObject*:p:0:
206
207PyDict_DelItem:int:::
208PyDict_DelItem:PyObject*:p:0:
209PyDict_DelItem:PyObject*:key:0:
210
211PyDict_DelItemString:int:::
212PyDict_DelItemString:PyObject*:p:0:
213PyDict_DelItemString:char*:key::
214
215PyDict_GetItem:PyObject*::0:0
216PyDict_GetItem:PyObject*:p:0:
217PyDict_GetItem:PyObject*:key:0:
218
219PyDict_GetItemString:PyObject*::0:
220PyDict_GetItemString:PyObject*:p:0:
221PyDict_GetItemString:char*:key::
222
223PyDict_Items:PyObject*::+1:
224PyDict_Items:PyObject*:p:0:
225
226PyDict_Keys:PyObject*::+1:
227PyDict_Keys:PyObject*:p:0:
228
229PyDict_New:PyObject*::+1:
230
231PyDict_Copy:PyObject*::+1:
232PyDict_Copy:PyObject*:p:0:
233
234PyDict_Next:int:::
235PyDict_Next:PyObject*:p:0:
236PyDict_Next:int:ppos::
237PyDict_Next:PyObject**:pkey:0:
238PyDict_Next:PyObject**:pvalue:0:
239
240PyDict_SetItem:int:::
241PyDict_SetItem:PyObject*:p:0:
242PyDict_SetItem:PyObject*:key:+1:
243PyDict_SetItem:PyObject*:val:+1:
244
245PyDict_SetItemString:int:::
246PyDict_SetItemString:PyObject*:p:0:
247PyDict_SetItemString:char*:key::
248PyDict_SetItemString:PyObject*:val:+1:
249
250PyDict_Size:int:::
251PyDict_Size:PyObject*:p::
252
253PyDict_Values:PyObject*::+1:
254PyDict_Values:PyObject*:p:0:
255
256PyDictProxy_New:PyObject*::+1:
257PyDictProxy_New:PyObject*:dict:0:
258
259PyErr_BadArgument:int:::
260
261PyErr_BadInternalCall:void:::
262
263PyErr_CheckSignals:int:::
264
265PyErr_Clear:void:::
266
267PyErr_ExceptionMatches:int:::
268PyErr_ExceptionMatches:PyObject*:exc:0:
269
270PyErr_Fetch:void:::
271PyErr_Fetch:PyObject**:ptype:0:
272PyErr_Fetch:PyObject**:pvalue:0:
273PyErr_Fetch:PyObject**:ptraceback:0:
274
275PyErr_GivenExceptionMatches:int:::
276PyErr_GivenExceptionMatches:PyObject*:given:0:
277PyErr_GivenExceptionMatches:PyObject*:exc:0:
278
279PyErr_NewException:PyObject*::+1:
280PyErr_NewException:char*:name::
281PyErr_NewException:PyObject*:base:0:
282PyErr_NewException:PyObject*:dict:0:
283
Georg Brandl740cdc32009-12-28 08:34:58 +0000284PyErr_NewExceptionWithDoc:PyObject*::+1:
285PyErr_NewExceptionWithDoc:char*:name::
286PyErr_NewExceptionWithDoc:char*:doc::
287PyErr_NewExceptionWithDoc:PyObject*:base:0:
288PyErr_NewExceptionWithDoc:PyObject*:dict:0:
289
Georg Brandl8ec7f652007-08-15 14:28:01 +0000290PyErr_NoMemory:PyObject*::null:
291
292PyErr_NormalizeException:void:::
293PyErr_NormalizeException:PyObject**:exc::???
294PyErr_NormalizeException:PyObject**:val::???
295PyErr_NormalizeException:PyObject**:tb::???
296
297PyErr_Occurred:PyObject*::0:
298
299PyErr_Print:void:::
300
301PyErr_Restore:void:::
302PyErr_Restore:PyObject*:type:-1:
303PyErr_Restore:PyObject*:value:-1:
304PyErr_Restore:PyObject*:traceback:-1:
305
306PyErr_SetExcFromWindowsErr:PyObject*::null:
307PyErr_SetExcFromWindowsErr:PyObject*:type:0:
308PyErr_SetExcFromWindowsErr:int:ierr::
309
310PyErr_SetExcFromWindowsErrWithFilename:PyObject*::null:
311PyErr_SetExcFromWindowsErrWithFilename:PyObject*:type:0:
312PyErr_SetExcFromWindowsErrWithFilename:int:ierr::
313PyErr_SetExcFromWindowsErrWithFilename:char*:filename::
314
315PyErr_SetFromErrno:PyObject*::null:
316PyErr_SetFromErrno:PyObject*:type:0:
317
318PyErr_SetFromErrnoWithFilename:PyObject*::null:
319PyErr_SetFromErrnoWithFilename:PyObject*:type:0:
320PyErr_SetFromErrnoWithFilename:char*:filename::
321
322PyErr_SetFromWindowsErr:PyObject*::null:
323PyErr_SetFromWindowsErr:int:ierr::
324
325PyErr_SetFromWindowsErrWithFilename:PyObject*::null:
326PyErr_SetFromWindowsErrWithFilename:int:ierr::
327PyErr_SetFromWindowsErrWithFilename:char*:filename::
328
329PyErr_SetInterrupt:void:::
330
331PyErr_SetNone:void:::
332PyErr_SetNone:PyObject*:type:+1:
333
334PyErr_SetObject:void:::
335PyErr_SetObject:PyObject*:type:+1:
336PyErr_SetObject:PyObject*:value:+1:
337
338PyErr_SetString:void:::
339PyErr_SetString:PyObject*:type:+1:
340PyErr_SetString:char*:message::
341
342PyErr_Format:PyObject*::null:
343PyErr_Format:PyObject*:exception:+1:
344PyErr_Format:char*:format::
345PyErr_Format::...::
346
347PyErr_Warn:int:::
348PyErr_Warn:PyObject*:category:0:
349PyErr_Warn:char*:message::
350
351PyErr_WarnEx:int:::
352PyErr_WarnEx:PyObject*:category:0:
353PyErr_WarnEx:const char*:message::
354PyErr_WarnEx:Py_ssize_t:stack_level::
355
356PyEval_AcquireLock:void:::
357
358PyEval_AcquireThread:void:::
359PyEval_AcquireThread:PyThreadState*:tstate::
360
Georg Brandlebb035e2007-12-01 22:27:56 +0000361PyEval_GetBuiltins:PyObject*::0:
362PyEval_GetLocals:PyObject*::0:
363PyEval_GetGlobals:PyObject*::0:
364PyEval_GetFrame:PyObject*::0:
365
Georg Brandl8ec7f652007-08-15 14:28:01 +0000366PyEval_InitThreads:void:::
367
368PyEval_ReleaseLock:void:::
369
370PyEval_ReleaseThread:void:::
371PyEval_ReleaseThread:PyThreadState*:tstate::
372
373PyEval_RestoreThread:void:::
374PyEval_RestoreThread:PyThreadState*:tstate::
375
376PyEval_SaveThread:PyThreadState*:::
377
378PyEval_EvalCode:PyObject*::+1:
379PyEval_EvalCode:PyCodeObject*:co:0:
380PyEval_EvalCode:PyObject*:globals:0:
381PyEval_EvalCode:PyObject*:locals:0:
382
383PyFile_AsFile:FILE*:::
384PyFile_AsFile:PyFileObject*:p:0:
385
386PyFile_Check:int:::
387PyFile_Check:PyObject*:p:0:
388
389PyFile_FromFile:PyObject*::+1:
390PyFile_FromFile:FILE*:fp::
391PyFile_FromFile:char*:name::
392PyFile_FromFile:char*:mode::
393PyFile_FromFile:int(*:close)::
394
395PyFile_FromString:PyObject*::+1:
396PyFile_FromString:char*:name::
397PyFile_FromString:char*:mode::
398
399PyFile_GetLine:PyObject*::+1:
400PyFile_GetLine:PyObject*:p::
401PyFile_GetLine:int:n::
402
403PyFile_Name:PyObject*::0:
404PyFile_Name:PyObject*:p:0:
405
406PyFile_SetBufSize:void:::
407PyFile_SetBufSize:PyFileObject*:p:0:
408PyFile_SetBufSize:int:n::
409
410PyFile_SoftSpace:int:::
411PyFile_SoftSpace:PyFileObject*:p:0:
412PyFile_SoftSpace:int:newflag::
413
414PyFile_WriteObject:int:::
415PyFile_WriteObject:PyObject*:obj:0:
416PyFile_WriteObject:PyFileObject*:p:0:
417PyFile_WriteObject:int:flags::
418
419PyFile_WriteString:int:::
420PyFile_WriteString:const char*:s::
421PyFile_WriteString:PyFileObject*:p:0:
422PyFile_WriteString:int:flags::
423
424PyFloat_AS_DOUBLE:double:::
425PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
426
427PyFloat_AsDouble:double:::
428PyFloat_AsDouble:PyObject*:pyfloat:0:
429
430PyFloat_Check:int:::
431PyFloat_Check:PyObject*:p:0:
432
433PyFloat_FromDouble:PyObject*::+1:
434PyFloat_FromDouble:double:v::
435
436PyFloat_FromString:PyObject*::+1:
437PyFloat_FromString:PyObject*:str:0:
438PyFloat_FromString:char**:pend:0:ignored
439
440PyFrozenSet_New:PyObject*::+1:
441PyFrozenSet_New:PyObject*:iterable:0:
442
443PyFunction_GetClosure:PyObject*::0:
444PyFunction_GetClosure:PyObject*:op:0:
445
446PyFunction_GetCode:PyObject*::0:
447PyFunction_GetCode:PyObject*:op:0:
448
449PyFunction_GetDefaults:PyObject*::0:
450PyFunction_GetDefaults:PyObject*:op:0:
451
452PyFunction_GetGlobals:PyObject*::0:
453PyFunction_GetGlobals:PyObject*:op:0:
454
455PyFunction_GetModule:PyObject*::0:
456PyFunction_GetModule:PyObject*:op:0:
457
458PyFunction_New:PyObject*::+1:
459PyFunction_New:PyObject*:code:+1:
460PyFunction_New:PyObject*:globals:+1:
461
462PyFunction_SetClosure:int:::
463PyFunction_SetClosure:PyObject*:op:0:
464PyFunction_SetClosure:PyObject*:closure:+1:
465
466PyFunction_SetDefaults:int:::
467PyFunction_SetDefaults:PyObject*:op:0:
468PyFunction_SetDefaults:PyObject*:defaults:+1:
469
470PyGen_New:PyObject*::+1:
471PyGen_New:PyFrameObject*:frame:0:
472
473Py_InitModule:PyObject*::0:
474Py_InitModule:char*:name::
475Py_InitModule:PyMethodDef[]:methods::
476
477Py_InitModule3:PyObject*::0:
478Py_InitModule3:char*:name::
479Py_InitModule3:PyMethodDef[]:methods::
480Py_InitModule3:char*:doc::
481
482Py_InitModule4:PyObject*::0:
483Py_InitModule4:char*:name::
484Py_InitModule4:PyMethodDef[]:methods::
485Py_InitModule4:char*:doc::
486Py_InitModule4:PyObject*:self::
487Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
488
489PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
490PyImport_AddModule:char*:name::
491
492PyImport_Cleanup:void:::
493
494PyImport_ExecCodeModule:PyObject*::+1:
495PyImport_ExecCodeModule:char*:name::
496PyImport_ExecCodeModule:PyObject*:co:0:
497
Georg Brandl677fdec2010-04-02 09:07:42 +0000498PyImport_ExecCodeModuleEx:PyObject*::+1:
499PyImport_ExecCodeModuleEx:char*:name::
500PyImport_ExecCodeModuleEx:PyObject*:co:0:
501PyImport_ExecCodeModuleEx:char*:pathname::
502
Georg Brandl8ec7f652007-08-15 14:28:01 +0000503PyImport_GetMagicNumber:long:::
504
505PyImport_GetModuleDict:PyObject*::0:
506
507PyImport_Import:PyObject*::+1:
508PyImport_Import:PyObject*:name:0:
509
510PyImport_ImportFrozenModule:int:::
511PyImport_ImportFrozenModule:char*:::
512
513PyImport_ImportModule:PyObject*::+1:
514PyImport_ImportModule:char*:name::
515
516PyImport_ImportModuleEx:PyObject*::+1:
517PyImport_ImportModuleEx:char*:name::
518PyImport_ImportModuleEx:PyObject*:globals:0:???
519PyImport_ImportModuleEx:PyObject*:locals:0:???
520PyImport_ImportModuleEx:PyObject*:fromlist:0:???
521
Georg Brandl677fdec2010-04-02 09:07:42 +0000522PyImport_ImportModuleLevel:PyObject*::+1:
523PyImport_ImportModuleLevel:char*:name::
524PyImport_ImportModuleLevel:PyObject*:globals:0:???
525PyImport_ImportModuleLevel:PyObject*:locals:0:???
526PyImport_ImportModuleLevel:PyObject*:fromlist:0:???
527PyImport_ImportModuleLevel:int:level::
528
Georg Brandl8ec7f652007-08-15 14:28:01 +0000529PyImport_ReloadModule:PyObject*::+1:
530PyImport_ReloadModule:PyObject*:m:0:
531
532PyInstance_New:PyObject*::+1:
533PyInstance_New:PyObject*:klass:+1:
534PyInstance_New:PyObject*:arg:0:
535PyInstance_New:PyObject*:kw:0:
536
537PyInstance_NewRaw:PyObject*::+1:
538PyInstance_NewRaw:PyObject*:klass:+1:
539PyInstance_NewRaw:PyObject*:dict:+1:
540
541PyInt_AS_LONG:long:::
542PyInt_AS_LONG:PyIntObject*:io:0:
543
544PyInt_AsLong:long:::
545PyInt_AsLong:PyObject*:io:0:
546
547PyInt_Check:int:::
548PyInt_Check:PyObject*:op:0:
549
550PyInt_FromLong:PyObject*::+1:
551PyInt_FromLong:long:ival::
552
553PyInt_FromString:PyObject*::+1:
554PyInt_FromString:char*:str:0:
555PyInt_FromString:char**:pend:0:
556PyInt_FromString:int:base:0:
557
558PyInt_FromSsize_t:PyObject*::+1:
559PyInt_FromSsize_t:Py_ssize_t:ival::
560
561PyInt_GetMax:long:::
562
563PyInterpreterState_Clear:void:::
564PyInterpreterState_Clear:PyInterpreterState*:interp::
565
566PyInterpreterState_Delete:void:::
567PyInterpreterState_Delete:PyInterpreterState*:interp::
568
569PyInterpreterState_New:PyInterpreterState*:::
570
571PyIter_Check:int:o:0:
572
573PyIter_Next:PyObject*::+1:
574PyIter_Next:PyObject*:o:0:
575
576PyList_Append:int:::
577PyList_Append:PyObject*:list:0:
578PyList_Append:PyObject*:item:+1:
579
580PyList_AsTuple:PyObject*::+1:
581PyList_AsTuple:PyObject*:list:0:
582
583PyList_Check:int:::
584PyList_Check:PyObject*:p:0:
585
586PyList_GET_ITEM:PyObject*::0:
587PyList_GET_ITEM:PyObject*:list:0:
588PyList_GET_ITEM:int:i:0:
589
590PyList_GET_SIZE:int:::
591PyList_GET_SIZE:PyObject*:list:0:
592
593PyList_GetItem:PyObject*::0:
594PyList_GetItem:PyObject*:list:0:
595PyList_GetItem:int:index::
596
597PyList_GetSlice:PyObject*::+1:
598PyList_GetSlice:PyObject*:list:0:
599PyList_GetSlice:int:low::
600PyList_GetSlice:int:high::
601
602PyList_Insert:int:::
603PyList_Insert:PyObject*:list:0:
604PyList_Insert:int:index::
605PyList_Insert:PyObject*:item:+1:
606
607PyList_New:PyObject*::+1:
608PyList_New:int:len::
609
610PyList_Reverse:int:::
611PyList_Reverse:PyObject*:list:0:
612
613PyList_SET_ITEM:void:::
614PyList_SET_ITEM:PyObject*:list:0:
615PyList_SET_ITEM:int:i::
616PyList_SET_ITEM:PyObject*:o:0:
617
618PyList_SetItem:int:::
619PyList_SetItem:PyObject*:list:0:
620PyList_SetItem:int:index::
621PyList_SetItem:PyObject*:item:0:
622
623PyList_SetSlice:int:::
624PyList_SetSlice:PyObject*:list:0:
625PyList_SetSlice:int:low::
626PyList_SetSlice:int:high::
627PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
628
629PyList_Size:int:::
630PyList_Size:PyObject*:list:0:
631
632PyList_Sort:int:::
633PyList_Sort:PyObject*:list:0:
634
635PyLong_AsDouble:double:::
636PyLong_AsDouble:PyObject*:pylong:0:
637
638PyLong_AsLong:long:::
639PyLong_AsLong:PyObject*:pylong:0:
640
641PyLong_AsUnsignedLong:unsigned long:::
642PyLong_AsUnsignedLong:PyObject*:pylong:0:
643
644PyLong_Check:int:::
645PyLong_Check:PyObject*:p:0:
646
647PyLong_FromDouble:PyObject*::+1:
648PyLong_FromDouble:double:v::
649
650PyLong_FromLong:PyObject*::+1:
651PyLong_FromLong:long:v::
652
653PyLong_FromLongLong:PyObject*::+1:
654PyLong_FromLongLong:long long:v::
655
656PyLong_FromUnsignedLongLong:PyObject*::+1:
657PyLong_FromUnsignedLongLong:unsigned long long:v::
658
659PyLong_FromString:PyObject*::+1:
660PyLong_FromString:char*:str::
661PyLong_FromString:char**:pend::
662PyLong_FromString:int:base::
663
664PyLong_FromUnicode:PyObject*::+1:
665PyLong_FromUnicode:Py_UNICODE:u::
666PyLong_FromUnicode:int:length::
667PyLong_FromUnicode:int:base::
668
669PyLong_FromUnsignedLong:PyObject*::+1:
670PyLong_FromUnsignedLong:unsignedlong:v::
671
672PyLong_FromVoidPtr:PyObject*::+1:
673PyLong_FromVoidPtr:void*:p::
674
675PyMapping_Check:int:::
676PyMapping_Check:PyObject*:o:0:
677
678PyMapping_DelItem:int:::
679PyMapping_DelItem:PyObject*:o:0:
680PyMapping_DelItem:PyObject*:key:0:
681
682PyMapping_DelItemString:int:::
683PyMapping_DelItemString:PyObject*:o:0:
684PyMapping_DelItemString:char*:key::
685
686PyMapping_GetItemString:PyObject*::+1:
687PyMapping_GetItemString:PyObject*:o:0:
688PyMapping_GetItemString:char*:key::
689
690PyMapping_HasKey:int:::
691PyMapping_HasKey:PyObject*:o:0:
692PyMapping_HasKey:PyObject*:key::
693
694PyMapping_HasKeyString:int:::
695PyMapping_HasKeyString:PyObject*:o:0:
696PyMapping_HasKeyString:char*:key::
697
698PyMapping_Items:PyObject*::+1:
699PyMapping_Items:PyObject*:o:0:
700
701PyMapping_Keys:PyObject*::+1:
702PyMapping_Keys:PyObject*:o:0:
703
704PyMapping_Length:int:::
705PyMapping_Length:PyObject*:o:0:
706
707PyMapping_SetItemString:int:::
708PyMapping_SetItemString:PyObject*:o:0:
709PyMapping_SetItemString:char*:key::
710PyMapping_SetItemString:PyObject*:v:+1:
711
712PyMapping_Values:PyObject*::+1:
713PyMapping_Values:PyObject*:o:0:
714
715PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
716PyMarshal_ReadLastObjectFromFile:FILE*:file::
717
718PyMarshal_ReadObjectFromFile:PyObject*::+1:
719PyMarshal_ReadObjectFromFile:FILE*:file::
720
721PyMarshal_ReadObjectFromString:PyObject*::+1:
722PyMarshal_ReadObjectFromString:char*:string::
723PyMarshal_ReadObjectFromString:int:len::
724
725PyMarshal_WriteObjectToString:PyObject*::+1:
726PyMarshal_WriteObjectToString:PyObject*:value:0:
727
728PyMethod_Class:PyObject*::0:
729PyMethod_Class:PyObject*:im:0:
730
731PyMethod_Function:PyObject*::0:
732PyMethod_Function:PyObject*:im:0:
733
734PyMethod_GET_CLASS:PyObject*::0:
735PyMethod_GET_CLASS:PyObject*:im:0:
736
737PyMethod_GET_FUNCTION:PyObject*::0:
738PyMethod_GET_FUNCTION:PyObject*:im:0:
739
740PyMethod_GET_SELF:PyObject*::0:
741PyMethod_GET_SELF:PyObject*:im:0:
742
743PyMethod_New:PyObject*::+1:
744PyMethod_New:PyObject*:func:0:
745PyMethod_New:PyObject*:self:0:
746PyMethod_New:PyObject*:class:0:
747
748PyMethod_Self:PyObject*::0:
749PyMethod_Self:PyObject*:im:0:
750
751PyModule_GetDict:PyObject*::0:
752PyModule_GetDict::PyObject* module:0:
753
754PyModule_GetFilename:char*:::
755PyModule_GetFilename:PyObject*:module:0:
756
757PyModule_GetName:char*:::
758PyModule_GetName:PyObject*:module:0:
759
760PyModule_New:PyObject*::+1:
761PyModule_New::char* name::
762
763PyNumber_Absolute:PyObject*::+1:
764PyNumber_Absolute:PyObject*:o:0:
765
766PyNumber_Add:PyObject*::+1:
767PyNumber_Add:PyObject*:o1:0:
768PyNumber_Add:PyObject*:o2:0:
769
770PyNumber_And:PyObject*::+1:
771PyNumber_And:PyObject*:o1:0:
772PyNumber_And:PyObject*:o2:0:
773
774PyNumber_Check:PyObject*:o:0:
775PyNumber_Check:int:::
776
777PyNumber_Coerce:int:::
778PyNumber_Coerce:PyObject**:p1:+1:
779PyNumber_Coerce:PyObject**:p2:+1:
780
781PyNumber_Divide:PyObject*::+1:
782PyNumber_Divide:PyObject*:o1:0:
783PyNumber_Divide:PyObject*:o2:0:
784
785PyNumber_Divmod:PyObject*::+1:
786PyNumber_Divmod:PyObject*:o1:0:
787PyNumber_Divmod:PyObject*:o2:0:
788
789PyNumber_Float:PyObject*::+1:
790PyNumber_Float:PyObject*:o:0:
791
792PyNumber_FloorDivide:PyObject*::+1:
793PyNumber_FloorDivide:PyObject*:v:0:
794PyNumber_FloorDivide:PyObject*:w:0:
795
796PyNumber_InPlaceAdd:PyObject*::+1:
797PyNumber_InPlaceAdd:PyObject*:v:0:
798PyNumber_InPlaceAdd:PyObject*:w:0:
799
800PyNumber_InPlaceAnd:PyObject*::+1:
801PyNumber_InPlaceAnd:PyObject*:v:0:
802PyNumber_InPlaceAnd:PyObject*:w:0:
803
804PyNumber_InPlaceDivide:PyObject*::+1:
805PyNumber_InPlaceDivide:PyObject*:v:0:
806PyNumber_InPlaceDivide:PyObject*:w:0:
807
808PyNumber_InPlaceFloorDivide:PyObject*::+1:
809PyNumber_InPlaceFloorDivide:PyObject*:v:0:
810PyNumber_InPlaceFloorDivide:PyObject*:w:0:
811
812PyNumber_InPlaceLshift:PyObject*::+1:
813PyNumber_InPlaceLshift:PyObject*:v:0:
814PyNumber_InPlaceLshift:PyObject*:w:0:
815
816PyNumber_InPlaceMultiply:PyObject*::+1:
817PyNumber_InPlaceMultiply:PyObject*:v:0:
818PyNumber_InPlaceMultiply:PyObject*:w:0:
819
820PyNumber_InPlaceOr:PyObject*::+1:
821PyNumber_InPlaceOr:PyObject*:v:0:
822PyNumber_InPlaceOr:PyObject*:w:0:
823
824PyNumber_InPlacePower:PyObject*::+1:
825PyNumber_InPlacePower:PyObject*:v:0:
826PyNumber_InPlacePower:PyObject*:w:0:
827PyNumber_InPlacePower:PyObject*:z:0:
828
829PyNumber_InPlaceRemainder:PyObject*::+1:
830PyNumber_InPlaceRemainder:PyObject*:v:0:
831PyNumber_InPlaceRemainder:PyObject*:w:0:
832
833PyNumber_InPlaceRshift:PyObject*::+1:
834PyNumber_InPlaceRshift:PyObject*:v:0:
835PyNumber_InPlaceRshift:PyObject*:w:0:
836
837PyNumber_InPlaceSubtract:PyObject*::+1:
838PyNumber_InPlaceSubtract:PyObject*:v:0:
839PyNumber_InPlaceSubtract:PyObject*:w:0:
840
841PyNumber_InPlaceTrueDivide:PyObject*::+1:
842PyNumber_InPlaceTrueDivide:PyObject*:v:0:
843PyNumber_InPlaceTrueDivide:PyObject*:w:0:
844
845PyNumber_InPlaceXor:PyObject*::+1:
846PyNumber_InPlaceXor:PyObject*:v:0:
847PyNumber_InPlaceXor:PyObject*:w:0:
848
849PyNumber_Int:PyObject*::+1:
850PyNumber_Int:PyObject*:o:0:
851
852PyNumber_Invert:PyObject*::+1:
853PyNumber_Invert:PyObject*:o:0:
854
855PyNumber_Long:PyObject*::+1:
856PyNumber_Long:PyObject*:o:0:
857
858PyNumber_Lshift:PyObject*::+1:
859PyNumber_Lshift:PyObject*:o1:0:
860PyNumber_Lshift:PyObject*:o2:0:
861
862PyNumber_Multiply:PyObject*::+1:
863PyNumber_Multiply:PyObject*:o1:0:
864PyNumber_Multiply:PyObject*:o2:0:
865
866PyNumber_Negative:PyObject*::+1:
867PyNumber_Negative:PyObject*:o:0:
868
869PyNumber_Or:PyObject*::+1:
870PyNumber_Or:PyObject*:o1:0:
871PyNumber_Or:PyObject*:o2:0:
872
873PyNumber_Positive:PyObject*::+1:
874PyNumber_Positive:PyObject*:o:0:
875
876PyNumber_Power:PyObject*::+1:
877PyNumber_Power:PyObject*:o1:0:
878PyNumber_Power:PyObject*:o2:0:
879PyNumber_Power:PyObject*:o3:0:
880
881PyNumber_Remainder:PyObject*::+1:
882PyNumber_Remainder:PyObject*:o1:0:
883PyNumber_Remainder:PyObject*:o2:0:
884
885PyNumber_Rshift:PyObject*::+1:
886PyNumber_Rshift:PyObject*:o1:0:
887PyNumber_Rshift:PyObject*:o2:0:
888
889PyNumber_Subtract:PyObject*::+1:
890PyNumber_Subtract:PyObject*:o1:0:
891PyNumber_Subtract:PyObject*:o2:0:
892
893PyNumber_TrueDivide:PyObject*::+1:
894PyNumber_TrueDivide:PyObject*:v:0:
895PyNumber_TrueDivide:PyObject*:w:0:
896
897PyNumber_Xor:PyObject*::+1:
898PyNumber_Xor:PyObject*:o1:0:
899PyNumber_Xor:PyObject*:o2:0:
900
Georg Brandl8ec7f652007-08-15 14:28:01 +0000901PyObject_AsFileDescriptor:int:::
902PyObject_AsFileDescriptor:PyObject*:o:0:
903
904PyObject_Call:PyObject*::+1:
905PyObject_Call:PyObject*:callable_object:0:
906PyObject_Call:PyObject*:args:0:
907PyObject_Call:PyObject*:kw:0:
908
909PyObject_CallFunction:PyObject*::+1:
910PyObject_CallFunction:PyObject*:callable_object:0:
911PyObject_CallFunction:char*:format::
912PyObject_CallFunction::...::
913
914PyObject_CallFunctionObjArgs:PyObject*::+1:
915PyObject_CallFunctionObjArgs:PyObject*:callable:0:
916PyObject_CallFunctionObjArgs::...::
917
918PyObject_CallMethod:PyObject*::+1:
919PyObject_CallMethod:PyObject*:o:0:
920PyObject_CallMethod:char*:m::
921PyObject_CallMethod:char*:format::
922PyObject_CallMethod::...::
923
924PyObject_CallMethodObjArgs:PyObject*::+1:
925PyObject_CallMethodObjArgs:PyObject*:o:0:
926PyObject_CallMethodObjArgs:char*:name::
927PyObject_CallMethodObjArgs::...::
928
929PyObject_CallObject:PyObject*::+1:
930PyObject_CallObject:PyObject*:callable_object:0:
931PyObject_CallObject:PyObject*:args:0:
932
933PyObject_Cmp:int:::
934PyObject_Cmp:PyObject*:o1:0:
935PyObject_Cmp:PyObject*:o2:0:
936PyObject_Cmp:int*:result::
937
938PyObject_Compare:int:::
939PyObject_Compare:PyObject*:o1:0:
940PyObject_Compare:PyObject*:o2:0:
941
942PyObject_DelAttr:int:::
943PyObject_DelAttr:PyObject*:o:0:
944PyObject_DelAttr:PyObject*:attr_name:0:
945
946PyObject_DelAttrString:int:::
947PyObject_DelAttrString:PyObject*:o:0:
948PyObject_DelAttrString:char*:attr_name::
949
950PyObject_DelItem:int:::
951PyObject_DelItem:PyObject*:o:0:
952PyObject_DelItem:PyObject*:key:0:
953
954PyObject_Dir:PyObject*::+1:
955PyObject_Dir:PyObject*:o:0:
956
957PyObject_GetAttr:PyObject*::+1:
958PyObject_GetAttr:PyObject*:o:0:
959PyObject_GetAttr:PyObject*:attr_name:0:
960
961PyObject_GetAttrString:PyObject*::+1:
962PyObject_GetAttrString:PyObject*:o:0:
963PyObject_GetAttrString:char*:attr_name::
964
965PyObject_GetItem:PyObject*::+1:
966PyObject_GetItem:PyObject*:o:0:
967PyObject_GetItem:PyObject*:key:0:
968
969PyObject_GetIter:PyObject*::+1:
970PyObject_GetIter:PyObject*:o:0:
971
972PyObject_HasAttr:int:::
973PyObject_HasAttr:PyObject*:o:0:
974PyObject_HasAttr:PyObject*:attr_name:0:
975
976PyObject_HasAttrString:int:::
977PyObject_HasAttrString:PyObject*:o:0:
978PyObject_HasAttrString:char*:attr_name:0:
979
980PyObject_Hash:int:::
981PyObject_Hash:PyObject*:o:0:
982
983PyObject_IsTrue:int:::
984PyObject_IsTrue:PyObject*:o:0:
985
986PyObject_Init:PyObject*::0:
987PyObject_Init:PyObject*:op:0:
988
989PyObject_InitVar:PyVarObject*::0:
990PyObject_InitVar:PyVarObject*:op:0:
991
992PyObject_Length:int:::
993PyObject_Length:PyObject*:o:0:
994
995PyObject_NEW:PyObject*::+1:
996
997PyObject_New:PyObject*::+1:
998
999PyObject_NEW_VAR:PyObject*::+1:
1000
1001PyObject_NewVar:PyObject*::+1:
1002
1003PyObject_Print:int:::
1004PyObject_Print:PyObject*:o:0:
1005PyObject_Print:FILE*:fp::
1006PyObject_Print:int:flags::
1007
1008PyObject_Repr:PyObject*::+1:
1009PyObject_Repr:PyObject*:o:0:
1010
1011PyObject_RichCompare:PyObject*::+1:
1012PyObject_RichCompare:PyObject*:o1:0:
1013PyObject_RichCompare:PyObject*:o2:0:
1014PyObject_RichCompare:int:opid::
1015
1016PyObject_RichCompareBool:int:::
1017PyObject_RichCompareBool:PyObject*:o1:0:
1018PyObject_RichCompareBool:PyObject*:o2:0:
1019PyObject_RichCompareBool:int:opid::
1020
1021PyObject_SetAttr:int:::
1022PyObject_SetAttr:PyObject*:o:0:
1023PyObject_SetAttr:PyObject*:attr_name:0:
1024PyObject_SetAttr:PyObject*:v:+1:
1025
1026PyObject_SetAttrString:int:::
1027PyObject_SetAttrString:PyObject*:o:0:
1028PyObject_SetAttrString:char*:attr_name::
1029PyObject_SetAttrString:PyObject*:v:+1:
1030
1031PyObject_SetItem:int:::
1032PyObject_SetItem:PyObject*:o:0:
1033PyObject_SetItem:PyObject*:key:0:
1034PyObject_SetItem:PyObject*:v:+1:
1035
1036PyObject_Str:PyObject*::+1:
1037PyObject_Str:PyObject*:o:0:
1038
1039PyObject_Type:PyObject*::+1:
1040PyObject_Type:PyObject*:o:0:
1041
1042PyObject_Unicode:PyObject*::+1:
1043PyObject_Unicode:PyObject*:o:0:
1044
1045PyParser_SimpleParseFile:struct _node*:::
1046PyParser_SimpleParseFile:FILE*:fp::
1047PyParser_SimpleParseFile:char*:filename::
1048PyParser_SimpleParseFile:int:start::
1049
1050PyParser_SimpleParseString:struct _node*:::
1051PyParser_SimpleParseString:char*:str::
1052PyParser_SimpleParseString:int:start::
1053
1054PyRun_AnyFile:int:::
1055PyRun_AnyFile:FILE*:fp::
1056PyRun_AnyFile:char*:filename::
1057
1058PyRun_File:PyObject*::+1:??? -- same as eval_code2()
1059PyRun_File:FILE*:fp::
1060PyRun_File:char*:filename::
1061PyRun_File:int:start::
1062PyRun_File:PyObject*:globals:0:
1063PyRun_File:PyObject*:locals:0:
1064
1065PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1066PyRun_FileEx:FILE*:fp::
1067PyRun_FileEx:char*:filename::
1068PyRun_FileEx:int:start::
1069PyRun_FileEx:PyObject*:globals:0:
1070PyRun_FileEx:PyObject*:locals:0:
1071PyRun_FileEx:int:closeit::
1072
1073PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1074PyRun_FileFlags:FILE*:fp::
1075PyRun_FileFlags:char*:filename::
1076PyRun_FileFlags:int:start::
1077PyRun_FileFlags:PyObject*:globals:0:
1078PyRun_FileFlags:PyObject*:locals:0:
1079PyRun_FileFlags:PyCompilerFlags*:flags::
1080
1081PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1082PyRun_FileExFlags:FILE*:fp::
1083PyRun_FileExFlags:char*:filename::
1084PyRun_FileExFlags:int:start::
1085PyRun_FileExFlags:PyObject*:globals:0:
1086PyRun_FileExFlags:PyObject*:locals:0:
1087PyRun_FileExFlags:int:closeit::
1088PyRun_FileExFlags:PyCompilerFlags*:flags::
1089
1090PyRun_InteractiveLoop:int:::
1091PyRun_InteractiveLoop:FILE*:fp::
1092PyRun_InteractiveLoop:char*:filename::
1093
1094PyRun_InteractiveOne:int:::
1095PyRun_InteractiveOne:FILE*:fp::
1096PyRun_InteractiveOne:char*:filename::
1097
1098PyRun_SimpleFile:int:::
1099PyRun_SimpleFile:FILE*:fp::
1100PyRun_SimpleFile:char*:filename::
1101
1102PyRun_SimpleString:int:::
1103PyRun_SimpleString:char*:command::
1104
1105PyRun_String:PyObject*::+1:??? -- same as eval_code2()
1106PyRun_String:char*:str::
1107PyRun_String:int:start::
1108PyRun_String:PyObject*:globals:0:
1109PyRun_String:PyObject*:locals:0:
1110
1111PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
1112PyRun_StringFlags:char*:str::
1113PyRun_StringFlags:int:start::
1114PyRun_StringFlags:PyObject*:globals:0:
1115PyRun_StringFlags:PyObject*:locals:0:
1116PyRun_StringFlags:PyCompilerFlags*:flags::
1117
1118PySeqIter_New:PyObject*::+1:
1119PySeqIter_New:PyObject*:seq::
1120
1121PySequence_Check:int:::
1122PySequence_Check:PyObject*:o:0:
1123
1124PySequence_Concat:PyObject*::+1:
1125PySequence_Concat:PyObject*:o1:0:
1126PySequence_Concat:PyObject*:o2:0:
1127
1128PySequence_Count:int:::
1129PySequence_Count:PyObject*:o:0:
1130PySequence_Count:PyObject*:value:0:
1131
1132PySequence_DelItem:int:::
1133PySequence_DelItem:PyObject*:o:0:
1134PySequence_DelItem:int:i::
1135
1136PySequence_DelSlice:int:::
1137PySequence_DelSlice:PyObject*:o:0:
1138PySequence_DelSlice:int:i1::
1139PySequence_DelSlice:int:i2::
1140
1141PySequence_Fast:PyObject*::+1:
1142PySequence_Fast:PyObject*:v:0:
1143PySequence_Fast:const char*:m::
1144
1145PySequence_Fast_GET_ITEM:PyObject*::0:
1146PySequence_Fast_GET_ITEM:PyObject*:o:0:
1147PySequence_Fast_GET_ITEM:int:i::
1148
1149PySequence_GetItem:PyObject*::+1:
1150PySequence_GetItem:PyObject*:o:0:
1151PySequence_GetItem:int:i::
1152
1153PySequence_GetSlice:PyObject*::+1:
1154PySequence_GetSlice:PyObject*:o:0:
1155PySequence_GetSlice:int:i1::
1156PySequence_GetSlice:int:i2::
1157
1158PySequence_In:int:::
1159PySequence_In:PyObject*:o:0:
1160PySequence_In:PyObject*:value:0:
1161
1162PySequence_Index:int:::
1163PySequence_Index:PyObject*:o:0:
1164PySequence_Index:PyObject*:value:0:
1165
1166PySequence_InPlaceConcat:PyObject*::+1:
1167PySequence_InPlaceConcat:PyObject*:s:0:
1168PySequence_InPlaceConcat:PyObject*:o:0:
1169
1170PySequence_InPlaceRepeat:PyObject*::+1:
1171PySequence_InPlaceRepeat:PyObject*:s:0:
1172PySequence_InPlaceRepeat:PyObject*:o:0:
1173
1174PySequence_ITEM:PyObject*::+1:
1175PySequence_ITEM:PyObject*:o:0:
1176PySequence_ITEM:int:i::
1177
1178PySequence_Repeat:PyObject*::+1:
1179PySequence_Repeat:PyObject*:o:0:
1180PySequence_Repeat:int:count::
1181
1182PySequence_SetItem:int:::
1183PySequence_SetItem:PyObject*:o:0:
1184PySequence_SetItem:int:i::
1185PySequence_SetItem:PyObject*:v:+1:
1186
1187PySequence_SetSlice:int:::
1188PySequence_SetSlice:PyObject*:o:0:
1189PySequence_SetSlice:int:i1::
1190PySequence_SetSlice:int:i2::
1191PySequence_SetSlice:PyObject*:v:+1:
1192
1193PySequence_List:PyObject*::+1:
1194PySequence_List:PyObject*:o:0:
1195
1196PySequence_Tuple:PyObject*::+1:
1197PySequence_Tuple:PyObject*:o:0:
1198
1199PySet_Append:int:::
1200PySet_Append:PyObject*:set:0:
1201PySet_Append:PyObject*:key:+1:
1202
1203PySet_Contains:int:::
1204PySet_Contains:PyObject*:anyset:0:
1205PySet_Contains:PyObject*:key:0:
1206
1207PySet_Discard:int:::
1208PySet_Discard:PyObject*:set:0:
1209PySet_Discard:PyObject*:key:-1:no effect if key not found
1210
1211PySet_New:PyObject*::+1:
1212PySet_New:PyObject*:iterable:0:
1213
1214PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
1215PySet_Pop:PyObject*:set:0:
1216
1217PySet_Size:int:::
1218PySet_Size:PyObject*:anyset:0:
1219
1220PySlice_Check:int:::
1221PySlice_Check:PyObject*:ob:0:
1222
1223PySlice_New:PyObject*::+1:
1224PySlice_New:PyObject*:start:0:
1225PySlice_New:PyObject*:stop:0:
1226PySlice_New:PyObject*:step:0:
1227
1228PyString_AS_STRING:char*:::
1229PyString_AS_STRING:PyObject*:string:0:
1230
1231PyString_AsDecodedObject:PyObject*::+1:
1232PyString_AsDecodedObject:PyObject*:str:0:
1233PyString_AsDecodedObject:const char*:encoding::
1234PyString_AsDecodedObject:const char*:errors::
1235
1236PyString_AsEncodedObject:PyObject*::+1:
1237PyString_AsEncodedObject:PyObject*:str:0:
1238PyString_AsEncodedObject:const char*:encoding::
1239PyString_AsEncodedObject:const char*:errors::
1240
1241PyString_AsString:char*:::
1242PyString_AsString:PyObject*:string:0:
1243
1244PyString_AsStringAndSize:int:::
1245PyString_AsStringAndSize:PyObject*:obj:0:
1246PyString_AsStringAndSize:char**:buffer::
1247PyString_AsStringAndSize:int*:length::
1248
1249PyString_Check:int:::
1250PyString_Check:PyObject*:o:0:
1251
1252PyString_Concat:void:::
1253PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
1254PyString_Concat:PyObject*:newpart:0:
1255
1256PyString_ConcatAndDel:void:::
1257PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
1258PyString_ConcatAndDel:PyObject*:newpart:-1:
1259
1260PyString_Format:PyObject*::+1:
1261PyString_Format:PyObject*:format:0:
1262PyString_Format:PyObject*:args:0:
1263
1264PyString_FromString:PyObject*::+1:
1265PyString_FromString:const char*:v::
1266
1267PyString_FromStringAndSize:PyObject*::+1:
1268PyString_FromStringAndSize:const char*:v::
1269PyString_FromStringAndSize:int:len::
1270
1271PyString_FromFormat:PyObject*::+1:
1272PyString_FromFormat:const char*:format::
1273PyString_FromFormat::...::
1274
1275PyString_FromFormatV:PyObject*::+1:
1276PyString_FromFormatV:const char*:format::
1277PyString_FromFormatV:va_list:vargs::
1278
1279PyString_GET_SIZE:int:::
1280PyString_GET_SIZE:PyObject*:string:0:
1281
1282PyString_InternFromString:PyObject*::+1:
1283PyString_InternFromString:const char*:v::
1284
1285PyString_InternInPlace:void:::
1286PyString_InternInPlace:PyObject**:string:+1:???
1287
1288PyString_Size:int:::
1289PyString_Size:PyObject*:string:0:
1290
1291PyString_Decode:PyObject*::+1:
1292PyString_Decode:const char*:s::
1293PyString_Decode:int:size::
1294PyString_Decode:const char*:encoding::
1295PyString_Decode:const char*:errors::
1296
1297PyString_Encode:PyObject*::+1:
1298PyString_Encode:const char*:s::
1299PyString_Encode:int:size::
1300PyString_Encode:const char*:encoding::
1301PyString_Encode:const char*:errors::
1302
1303PyString_AsEncodedString:PyObject*::+1:
1304PyString_AsEncodedString:PyObject*:str::
1305PyString_AsEncodedString:const char*:encoding::
1306PyString_AsEncodedString:const char*:errors::
1307
Georg Brandlf19b9512007-12-02 21:58:54 +00001308PySys_AddWarnOption:void:::
1309PySys_AddWarnOption:char*:s::
1310
1311PySys_GetFile:FILE*:::
1312PySys_GetFile:char*:name::
1313PySys_GetFile:FILE*:def::
1314
1315PySys_GetObject:PyObject*::0:
1316PySys_GetObject:char*:name::
1317
Georg Brandl8ec7f652007-08-15 14:28:01 +00001318PySys_SetArgv:int:::
1319PySys_SetArgv:int:argc::
1320PySys_SetArgv:char**:argv::
1321
Georg Brandlf19b9512007-12-02 21:58:54 +00001322PySys_SetObject:int:::
1323PySys_SetObject:char*:name::
1324PySys_SetObject:PyObject*:v:+1:
1325
1326PySys_ResetWarnOptions:void:::
1327
1328PySys_WriteStdout:void:::
1329PySys_WriteStdout:char*:format::
1330
1331PySys_WriteStderr:void:::
1332PySys_WriteStderr:char*:format::
1333
Georg Brandl8ec7f652007-08-15 14:28:01 +00001334PyThreadState_Clear:void:::
1335PyThreadState_Clear:PyThreadState*:tstate::
1336
1337PyThreadState_Delete:void:::
1338PyThreadState_Delete:PyThreadState*:tstate::
1339
1340PyThreadState_Get:PyThreadState*:::
1341
1342PyThreadState_GetDict:PyObject*::0:
1343
1344PyThreadState_New:PyThreadState*:::
1345PyThreadState_New:PyInterpreterState*:interp::
1346
1347PyThreadState_Swap:PyThreadState*:::
1348PyThreadState_Swap:PyThreadState*:tstate::
1349
1350PyTime_FromTime:PyObject*::+1:
1351PyTime_FromTime:int:hour::
1352PyTime_FromTime:int:minute::
1353PyTime_FromTime:int:second::
1354PyTime_FromTime:int:usecond::
1355
1356PyTuple_Check:int:::
1357PyTuple_Check:PyObject*:p:0:
1358
1359PyTuple_GET_ITEM:PyObject*::0:
1360PyTuple_GET_ITEM:PyTupleObject*:p:0:
1361PyTuple_GET_ITEM:int:pos::
1362
1363PyTuple_GetItem:PyObject*::0:
1364PyTuple_GetItem:PyTupleObject*:p:0:
1365PyTuple_GetItem:int:pos::
1366
1367PyTuple_GetSlice:PyObject*::+1:
1368PyTuple_GetSlice:PyTupleObject*:p:0:
1369PyTuple_GetSlice:int:low::
1370PyTuple_GetSlice:int:high::
1371
1372PyTuple_New:PyObject*::+1:
1373PyTuple_New:int:len::
1374
1375PyTuple_Pack:PyObject*::+1:
1376PyTuple_Pack:int:len::
1377PyTuple_Pack:PyObject*:...:0:
1378
1379PyTuple_SET_ITEM:void:::
1380PyTuple_SET_ITEM:PyTupleObject*:p:0:
1381PyTuple_SET_ITEM:int:pos::
1382PyTuple_SET_ITEM:PyObject*:o:0:
1383
1384PyTuple_SetItem:int:::
1385PyTuple_SetItem:PyTupleObject*:p:0:
1386PyTuple_SetItem:int:pos::
1387PyTuple_SetItem:PyObject*:o:0:
1388
1389PyTuple_Size:int:::
1390PyTuple_Size:PyTupleObject*:p:0:
1391
1392PyType_GenericAlloc:PyObject*::+1:
1393PyType_GenericAlloc:PyObject*:type:0:
1394PyType_GenericAlloc:int:nitems:0:
1395
1396PyType_GenericNew:PyObject*::+1:
1397PyType_GenericNew:PyObject*:type:0:
1398PyType_GenericNew:PyObject*:args:0:
1399PyType_GenericNew:PyObject*:kwds:0:
1400
1401PyUnicode_Check:int:::
1402PyUnicode_Check:PyObject*:o:0:
1403
1404PyUnicode_GET_SIZE:int:::
1405PyUnicode_GET_SIZE:PyObject*:o:0:
1406
1407PyUnicode_GET_DATA_SIZE:int:::
1408PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1409
1410PyUnicode_AS_UNICODE:Py_UNICODE*:::
1411PyUnicode_AS_UNICODE:PyObject*:o:0:
1412
1413PyUnicode_AS_DATA:const char*:::
1414PyUnicode_AS_DATA:PyObject*:o:0:
1415
1416Py_UNICODE_ISSPACE:int:::
1417Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1418
1419Py_UNICODE_ISLOWER:int:::
1420Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1421
1422Py_UNICODE_ISUPPER:int:::
1423Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1424
1425Py_UNICODE_ISTITLE:int:::
1426Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1427
1428Py_UNICODE_ISLINEBREAK:int:::
1429Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1430
1431Py_UNICODE_ISDECIMAL:int:::
1432Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1433
1434Py_UNICODE_ISDIGIT:int:::
1435Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1436
1437Py_UNICODE_ISNUMERIC:int:::
1438Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1439
1440Py_UNICODE_TOLOWER:Py_UNICODE:::
1441Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1442
1443Py_UNICODE_TOUPPER:Py_UNICODE:::
1444Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1445
1446Py_UNICODE_TOTITLE:Py_UNICODE:::
1447Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1448
1449Py_UNICODE_TODECIMAL:int:::
1450Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1451
1452Py_UNICODE_TODIGIT:int:::
1453Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1454
1455Py_UNICODE_TONUMERIC:double:::
1456Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1457
1458PyUnicode_FromUnicode:PyObject*::+1:
1459PyUnicode_FromUnicode:const Py_UNICODE*:u::
1460PyUnicode_FromUnicode:int:size::
1461
1462PyUnicode_AsUnicode:Py_UNICODE*:::
1463PyUnicode_AsUnicode:PyObject :*unicode:0:
1464
1465PyUnicode_GetSize:int:::
1466PyUnicode_GetSize:PyObject :*unicode:0:
1467
1468PyUnicode_FromObject:PyObject*::+1:
1469PyUnicode_FromObject:PyObject*:*obj:0:
1470
1471PyUnicode_FromEncodedObject:PyObject*::+1:
1472PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1473PyUnicode_FromEncodedObject:const char*:encoding::
1474PyUnicode_FromEncodedObject:const char*:errors::
1475
1476PyUnicode_FromWideChar:PyObject*::+1:
1477PyUnicode_FromWideChar:const wchar_t*:w::
1478PyUnicode_FromWideChar:int:size::
1479
1480PyUnicode_AsWideChar:int:::
1481PyUnicode_AsWideChar:PyObject*:*unicode:0:
1482PyUnicode_AsWideChar:wchar_t*:w::
1483PyUnicode_AsWideChar:int:size::
1484
1485PyUnicode_Decode:PyObject*::+1:
1486PyUnicode_Decode:const char*:s::
1487PyUnicode_Decode:int:size::
1488PyUnicode_Decode:const char*:encoding::
1489PyUnicode_Decode:const char*:errors::
1490
1491PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1492PyUnicode_DecodeUTF16Stateful:const char*:s::
1493PyUnicode_DecodeUTF16Stateful:int:size::
1494PyUnicode_DecodeUTF16Stateful:const char*:errors::
1495PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1496PyUnicode_DecodeUTF16Stateful:int*:consumed::
1497
1498PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1499PyUnicode_DecodeUTF8Stateful:const char*:s::
1500PyUnicode_DecodeUTF8Stateful:int:size::
1501PyUnicode_DecodeUTF8Stateful:const char*:errors::
1502PyUnicode_DecodeUTF8Stateful:int*:consumed::
1503
1504PyUnicode_Encode:PyObject*::+1:
1505PyUnicode_Encode:const Py_UNICODE*:s::
1506PyUnicode_Encode:int:size::
1507PyUnicode_Encode:const char*:encoding::
1508PyUnicode_Encode:const char*:errors::
1509
1510PyUnicode_AsEncodedString:PyObject*::+1:
1511PyUnicode_AsEncodedString:PyObject*:unicode::
1512PyUnicode_AsEncodedString:const char*:encoding::
1513PyUnicode_AsEncodedString:const char*:errors::
1514
1515PyUnicode_DecodeUTF8:PyObject*::+1:
1516PyUnicode_DecodeUTF8:const char*:s::
1517PyUnicode_DecodeUTF8:int:size::
1518PyUnicode_DecodeUTF8:const char*:errors::
1519
1520PyUnicode_EncodeUTF8:PyObject*::+1:
1521PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1522PyUnicode_EncodeUTF8:int:size::
1523PyUnicode_EncodeUTF8:const char*:errors::
1524
1525PyUnicode_AsUTF8String:PyObject*::+1:
1526PyUnicode_AsUTF8String:PyObject*:unicode::
1527
1528PyUnicode_DecodeUTF16:PyObject*::+1:
1529PyUnicode_DecodeUTF16:const char*:s::
1530PyUnicode_DecodeUTF16:int:size::
1531PyUnicode_DecodeUTF16:const char*:errors::
1532PyUnicode_DecodeUTF16:int*:byteorder::
1533
1534PyUnicode_EncodeUTF16:PyObject*::+1:
1535PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1536PyUnicode_EncodeUTF16:int:size::
1537PyUnicode_EncodeUTF16:const char*:errors::
1538PyUnicode_EncodeUTF16:int:byteorder::
1539
1540PyUnicode_AsUTF16String:PyObject*::+1:
1541PyUnicode_AsUTF16String:PyObject*:unicode::
1542
1543PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1544PyUnicode_DecodeUnicodeEscape:const char*:s::
1545PyUnicode_DecodeUnicodeEscape:int:size::
1546PyUnicode_DecodeUnicodeEscape:const char*:errors::
1547
1548PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1549PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1550PyUnicode_EncodeUnicodeEscape:int:size::
1551PyUnicode_EncodeUnicodeEscape:const char*:errors::
1552
1553PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1554PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1555
1556PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1557PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1558PyUnicode_DecodeRawUnicodeEscape:int:size::
1559PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1560
1561PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1562PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1563PyUnicode_EncodeRawUnicodeEscape:int:size::
1564PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1565
1566PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1567PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1568
1569PyUnicode_DecodeLatin1:PyObject*::+1:
1570PyUnicode_DecodeLatin1:const char*:s::
1571PyUnicode_DecodeLatin1:int:size::
1572PyUnicode_DecodeLatin1:const char*:errors::
1573
1574PyUnicode_EncodeLatin1:PyObject*::+1:
1575PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1576PyUnicode_EncodeLatin1:int:size::
1577PyUnicode_EncodeLatin1:const char*:errors::
1578
1579PyUnicode_AsLatin1String:PyObject*::+1:
1580PyUnicode_AsLatin1String:PyObject*:unicode::
1581
1582PyUnicode_DecodeASCII:PyObject*::+1:
1583PyUnicode_DecodeASCII:const char*:s::
1584PyUnicode_DecodeASCII:int:size::
1585PyUnicode_DecodeASCII:const char*:errors::
1586
1587PyUnicode_EncodeASCII:PyObject*::+1:
1588PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1589PyUnicode_EncodeASCII:int:size::
1590PyUnicode_EncodeASCII:const char*:errors::
1591
1592PyUnicode_AsASCIIString:PyObject*::+1:
1593PyUnicode_AsASCIIString:PyObject*:unicode::
1594
1595PyUnicode_DecodeCharmap:PyObject*::+1:
1596PyUnicode_DecodeCharmap:const char*:s::
1597PyUnicode_DecodeCharmap:int:size::
1598PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1599PyUnicode_DecodeCharmap:const char*:errors::
1600
1601PyUnicode_EncodeCharmap:PyObject*::+1:
1602PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1603PyUnicode_EncodeCharmap:int:size::
1604PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1605PyUnicode_EncodeCharmap:const char*:errors::
1606
1607PyUnicode_AsCharmapString:PyObject*::+1:
1608PyUnicode_AsCharmapString:PyObject*:unicode:0:
1609PyUnicode_AsCharmapString:PyObject*:mapping:0:
1610
1611PyUnicode_TranslateCharmap:PyObject*::+1:
1612PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1613PyUnicode_TranslateCharmap:int:size::
1614PyUnicode_TranslateCharmap:PyObject*:table:0:
1615PyUnicode_TranslateCharmap:const char*:errors::
1616
1617PyUnicode_DecodeMBCS:PyObject*::+1:
1618PyUnicode_DecodeMBCS:const char*:s::
1619PyUnicode_DecodeMBCS:int:size::
1620PyUnicode_DecodeMBCS:const char*:errors::
1621
1622PyUnicode_EncodeMBCS:PyObject*::+1:
1623PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1624PyUnicode_EncodeMBCS:int:size::
1625PyUnicode_EncodeMBCS:const char*:errors::
1626
1627PyUnicode_AsMBCSString:PyObject*::+1:
1628PyUnicode_AsMBCSString:PyObject*:unicode::
1629
1630PyUnicode_Concat:PyObject*::+1:
1631PyUnicode_Concat:PyObject*:left:0:
1632PyUnicode_Concat:PyObject*:right:0:
1633
1634PyUnicode_Split:PyObject*::+1:
1635PyUnicode_Split:PyObject*:left:0:
1636PyUnicode_Split:PyObject*:right:0:
1637PyUnicode_Split:int:maxsplit::
1638
1639PyUnicode_Splitlines:PyObject*::+1:
1640PyUnicode_Splitlines:PyObject*:s:0:
1641PyUnicode_Splitlines:int:maxsplit::
1642
1643PyUnicode_Translate:PyObject*::+1:
1644PyUnicode_Translate:PyObject*:str:0:
1645PyUnicode_Translate:PyObject*:table:0:
1646PyUnicode_Translate:const char*:errors::
1647
1648PyUnicode_Join:PyObject*::+1:
1649PyUnicode_Join:PyObject*:separator:0:
1650PyUnicode_Join:PyObject*:seq:0:
1651
Georg Brandl6878ee82010-01-23 08:43:31 +00001652PyUnicode_Tailmatch:int:::
Georg Brandl8ec7f652007-08-15 14:28:01 +00001653PyUnicode_Tailmatch:PyObject*:str:0:
1654PyUnicode_Tailmatch:PyObject*:substr:0:
1655PyUnicode_Tailmatch:int:start::
1656PyUnicode_Tailmatch:int:end::
1657PyUnicode_Tailmatch:int:direction::
1658
1659PyUnicode_Find:int:::
1660PyUnicode_Find:PyObject*:str:0:
1661PyUnicode_Find:PyObject*:substr:0:
1662PyUnicode_Find:int:start::
1663PyUnicode_Find:int:end::
1664PyUnicode_Find:int:direction::
1665
1666PyUnicode_Count:int:::
1667PyUnicode_Count:PyObject*:str:0:
1668PyUnicode_Count:PyObject*:substr:0:
1669PyUnicode_Count:int:start::
1670PyUnicode_Count:int:end::
1671
1672PyUnicode_Replace:PyObject*::+1:
1673PyUnicode_Replace:PyObject*:str:0:
1674PyUnicode_Replace:PyObject*:substr:0:
1675PyUnicode_Replace:PyObject*:replstr:0:
1676PyUnicode_Replace:int:maxcount::
1677
1678PyUnicode_Compare:int:::
1679PyUnicode_Compare:PyObject*:left:0:
1680PyUnicode_Compare:PyObject*:right:0:
1681
1682PyUnicode_Format:PyObject*::+1:
1683PyUnicode_Format:PyObject*:format:0:
1684PyUnicode_Format:PyObject*:args:0:
1685
1686PyUnicode_Contains:int:::
1687PyUnicode_Contains:PyObject*:container:0:
1688PyUnicode_Contains:PyObject*:element:0:
1689
1690PyWeakref_GET_OBJECT:PyObject*::0:
1691PyWeakref_GET_OBJECT:PyObject*:ref:0:
1692
1693PyWeakref_GetObject:PyObject*::0:
1694PyWeakref_GetObject:PyObject*:ref:0:
1695
1696PyWeakref_NewProxy:PyObject*::+1:
1697PyWeakref_NewProxy:PyObject*:ob:0:
1698PyWeakref_NewProxy:PyObject*:callback:0:
1699
1700PyWeakref_NewRef:PyObject*::+1:
1701PyWeakref_NewRef:PyObject*:ob:0:
1702PyWeakref_NewRef:PyObject*:callback:0:
1703
1704PyWrapper_New:PyObject*::+1:
1705PyWrapper_New:PyObject*:d:0:
1706PyWrapper_New:PyObject*:self:0:
1707
1708Py_AtExit:int:::
1709Py_AtExit:void (*)():func::
1710
1711Py_BuildValue:PyObject*::+1:
1712Py_BuildValue:char*:format::
1713
1714Py_CompileString:PyObject*::+1:
1715Py_CompileString:char*:str::
1716Py_CompileString:char*:filename::
1717Py_CompileString:int:start::
1718
1719Py_CompileStringFlags:PyObject*::+1:
1720Py_CompileStringFlags:char*:str::
1721Py_CompileStringFlags:char*:filename::
1722Py_CompileStringFlags:int:start::
1723Py_CompileStringFlags:PyCompilerFlags*:flags::
1724
1725Py_DECREF:void:::
1726Py_DECREF:PyObject*:o:-1:
1727
1728Py_EndInterpreter:void:::
1729Py_EndInterpreter:PyThreadState*:tstate::
1730
1731Py_Exit:void:::
1732Py_Exit:int:status::
1733
1734Py_FatalError:void:::
1735Py_FatalError:char*:message::
1736
1737Py_FdIsInteractive:int:::
1738Py_FdIsInteractive:FILE*:fp::
1739Py_FdIsInteractive:char*:filename::
1740
1741Py_Finalize:void:::
1742
1743Py_FindMethod:PyObject*::+1:
1744Py_FindMethod:PyMethodDef[]:methods::
1745Py_FindMethod:PyObject*:self:+1:
1746Py_FindMethod:char*:name::
1747
1748Py_GetBuildInfoconst:char*:::
1749
1750Py_GetCompilerconst:char*:::
1751
1752Py_GetCopyrightconst:char*:::
1753
1754Py_GetExecPrefix:char*:::
1755
1756Py_GetPath:char*:::
1757
1758Py_GetPlatformconst:char*:::
1759
1760Py_GetPrefix:char*:::
1761
1762Py_GetProgramFullPath:char*:::
1763
1764Py_GetProgramName:char*:::
1765
1766Py_GetVersionconst:char*:::
1767
1768Py_INCREF:void:::
1769Py_INCREF:PyObject*:o:+1:
1770
1771Py_Initialize:void:::
1772
1773Py_IsInitialized:int:::
1774
1775Py_NewInterpreter:PyThreadState*:::
1776
1777Py_SetProgramName:void:::
1778Py_SetProgramName:char*:name::
1779
1780Py_XDECREF:void:::
1781Py_XDECREF:PyObject*:o:-1:if o is not NULL
1782
1783Py_XINCREF:void:::
1784Py_XINCREF:PyObject*:o:+1:if o is not NULL
1785
1786_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1787_PyImport_FindExtension:char*:::
1788_PyImport_FindExtension:char*:::
1789
1790_PyImport_Fini:void:::
1791
1792_PyImport_FixupExtension:PyObject*:::???
1793_PyImport_FixupExtension:char*:::
1794_PyImport_FixupExtension:char*:::
1795
1796_PyImport_Init:void:::
1797
1798_PyObject_Del:void:::
1799_PyObject_Del:PyObject*:op:0:
1800
1801_PyObject_New:PyObject*::+1:
1802_PyObject_New:PyTypeObject*:type:0:
1803
1804_PyObject_NewVar:PyObject*::+1:
1805_PyObject_NewVar:PyTypeObject*:type:0:
1806_PyObject_NewVar:int:size::
1807
1808_PyString_Resize:int:::
1809_PyString_Resize:PyObject**:string:+1:
1810_PyString_Resize:int:newsize::
1811
1812_PyTuple_Resize:int:::
1813_PyTuple_Resize:PyTupleObject**:p:+1:
1814_PyTuple_Resize:int:new::
1815
1816_Py_c_diff:Py_complex:::
1817_Py_c_diff:Py_complex:left::
1818_Py_c_diff:Py_complex:right::
1819
1820_Py_c_neg:Py_complex:::
1821_Py_c_neg:Py_complex:complex::
1822
1823_Py_c_pow:Py_complex:::
1824_Py_c_pow:Py_complex:num::
1825_Py_c_pow:Py_complex:exp::
1826
1827_Py_c_prod:Py_complex:::
1828_Py_c_prod:Py_complex:left::
1829_Py_c_prod:Py_complex:right::
1830
1831_Py_c_quot:Py_complex:::
1832_Py_c_quot:Py_complex:dividend::
1833_Py_c_quot:Py_complex:divisor::
1834
1835_Py_c_sum:Py_complex:::
1836_Py_c_sum:Py_complex:left::
1837_Py_c_sum:Py_complex:right::