blob: 6f16cadc1422e0bb9106e10f1b14fa3303eafc1f [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
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
Benjamin Petersonb173f782009-05-05 22:31:58 +000058PyCapsule_GetContext:void *:::
59PyCapsule_GetContext:PyObject*:self:0:
60
61PyCapsule_GetDestructor:void (*)(PyObject *):::
62PyCapsule_GetDestructor:PyObject*:self:0:
63
64PyCapsule_GetName:const char *:::
65PyCapsule_GetName:PyObject*:self:0:
66
67PyCapsule_GetPointer:void*:::
68PyCapsule_GetPointer:PyObject*:self:0:
69PyCapsule_GetPointer:const char *:name::
70
71PyCapsule_Import:void *:::
72PyCapsule_Import:const char *:name::
73PyCapsule_Import:int:no_block::
74
75PyCapsule_New:PyObject*::+1:
76PyCapsule_New:void*:pointer::
77PyCapsule_New:const char *:name::
78PyCapsule_New::void (* destructor)(PyObject* )::
79
80PyCapsule_SetContext:int:::
81PyCapsule_SetContext:PyObject*:self:0:
82PyCapsule_SetContext:void *:context::
83
84PyCapsule_SetDestructor:int:::
85PyCapsule_SetDestructor:PyObject*:self:0:
86PyCapsule_SetDestructor:void (*)(PyObject *):destructor::
87
88PyCapsule_SetName:int:::
89PyCapsule_SetName:PyObject*:self:0:
90PyCapsule_SetName:const char *:name::
91
92PyCapsule_SetPointer:int:::
93PyCapsule_SetPointer:PyObject*:self:0:
94PyCapsule_SetPointer:void*:pointer::
95
96
Georg Brandl116aa622007-08-15 14:28:22 +000097PyCObject_AsVoidPtr:void*:::
98PyCObject_AsVoidPtr:PyObject*:self:0:
99
100PyCObject_FromVoidPtr:PyObject*::+1:
101PyCObject_FromVoidPtr:void*:cobj::
102PyCObject_FromVoidPtr::void (* destr)(void* )::
103
104PyCObject_FromVoidPtrAndDesc:PyObject*::+1:
105PyCObject_FromVoidPtrAndDesc:void*:cobj::
106PyCObject_FromVoidPtrAndDesc:void*:desc::
107PyCObject_FromVoidPtrAndDesc:void(*)(void*,void*):destr::
108
109PyCObject_GetDesc:void*:::
110PyCObject_GetDesc:PyObject*:self:0:
111
112PyCell_New:PyObject*::+1:
113PyCell_New:PyObject*:ob:0:
114
115PyCell_GET:PyObject*::0:
116PyCell_GET:PyObject*:ob:0:
117
118PyCell_Get:PyObject*::+1:
119PyCell_Get:PyObject*:cell:0:
120
121PyCell_SET:void:::
122PyCell_SET:PyObject*:cell:0:
123PyCell_SET:PyObject*:value:0:
124
125PyCell_Set:int:::
126PyCell_Set:PyObject*:cell:0:
127PyCell_Set:PyObject*:value:0:
128
129PyCallIter_New:PyObject*::+1:
130PyCallIter_New:PyObject*:callable::
131PyCallIter_New:PyObject*:sentinel::
132
133PyCallable_Check:int:::
134PyCallable_Check:PyObject*:o:0:
135
136PyComplex_AsCComplex:Py_complex:::
137PyComplex_AsCComplex:PyObject*:op:0:
138
139PyComplex_Check:int:::
140PyComplex_Check:PyObject*:p:0:
141
142PyComplex_FromCComplex:PyObject*::+1:
143PyComplex_FromCComplex::Py_complex v::
144
145PyComplex_FromDoubles:PyObject*::+1:
146PyComplex_FromDoubles::double real::
147PyComplex_FromDoubles::double imag::
148
149PyComplex_ImagAsDouble:double:::
150PyComplex_ImagAsDouble:PyObject*:op:0:
151
152PyComplex_RealAsDouble:double:::
153PyComplex_RealAsDouble:PyObject*:op:0:
154
155PyDate_FromDate:PyObject*::+1:
156PyDate_FromDate:int:year::
157PyDate_FromDate:int:month::
158PyDate_FromDate:int:day::
159
160PyDate_FromTimestamp:PyObject*::+1:
161PyDate_FromTimestamp:PyObject*:args:0:
162
163PyDateTime_FromDateAndTime:PyObject*::+1:
164PyDateTime_FromDateAndTime:int:year::
165PyDateTime_FromDateAndTime:int:month::
166PyDateTime_FromDateAndTime:int:day::
167PyDateTime_FromDateAndTime:int:hour::
168PyDateTime_FromDateAndTime:int:minute::
169PyDateTime_FromDateAndTime:int:second::
170PyDateTime_FromDateAndTime:int:usecond::
171
172PyDateTime_FromTimestamp:PyObject*::+1:
173PyDateTime_FromTimestamp:PyObject*:args:0:
174
175PyDelta_FromDSU:PyObject*::+1:
176PyDelta_FromDSU:int:days::
177PyDelta_FromDSU:int:seconds::
178PyDelta_FromDSU:int:useconds::
179
180PyDescr_NewClassMethod:PyObject*::+1:
181PyDescr_NewClassMethod:PyTypeObject*:type::
182PyDescr_NewClassMethod:PyMethodDef*:method::
183
184PyDescr_NewGetSet:PyObject*::+1:
185PyDescr_NewGetSet:PyTypeObject*:type::
186PyDescr_NewGetSet:PyGetSetDef*:getset::
187
188PyDescr_NewMember:PyObject*::+1:
189PyDescr_NewMember:PyTypeObject*:type::
190PyDescr_NewMember:PyMemberDef*:member::
191
192PyDescr_NewMethod:PyObject*::+1:
193PyDescr_NewMethod:PyTypeObject*:type::
194PyDescr_NewMethod:PyMethodDef*:meth::
195
196PyDescr_NewWrapper:PyObject*::+1:
197PyDescr_NewWrapper:PyTypeObject*:type::
198PyDescr_NewWrapper:struct wrapperbase*:base::
199PyDescr_NewWrapper:void*:wrapped::
200
201PyDict_Check:int:::
202PyDict_Check:PyObject*:p:0:
203
204PyDict_Clear:void:::
205PyDict_Clear:PyObject*:p:0:
206
207PyDict_DelItem:int:::
208PyDict_DelItem:PyObject*:p:0:
209PyDict_DelItem:PyObject*:key:0:
210
211PyDict_DelItemString:int:::
212PyDict_DelItemString:PyObject*:p:0:
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 Brandl1e28a272009-12-28 08:41:01 +0000284PyErr_NewExceptionWithDoc:PyObject*::+1:
285PyErr_NewExceptionWithDoc:char*:name::
286PyErr_NewExceptionWithDoc:char*:doc::
287PyErr_NewExceptionWithDoc:PyObject*:base:0:
288PyErr_NewExceptionWithDoc:PyObject*:dict:0:
289
Georg Brandl116aa622007-08-15 14:28:22 +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_WarnEx:int:::
348PyErr_WarnEx:PyObject*:category:0:
349PyErr_WarnEx:const char*:message::
350PyErr_WarnEx:Py_ssize_t:stack_level::
351
352PyEval_AcquireLock:void:::
353
354PyEval_AcquireThread:void:::
355PyEval_AcquireThread:PyThreadState*:tstate::
356
Christian Heimesd8654cf2007-12-02 15:22:16 +0000357PyEval_GetBuiltins:PyObject*::0:
358PyEval_GetLocals:PyObject*::0:
359PyEval_GetGlobals:PyObject*::0:
360PyEval_GetFrame:PyObject*::0:
361
Georg Brandl116aa622007-08-15 14:28:22 +0000362PyEval_InitThreads:void:::
363
364PyEval_ReleaseLock:void:::
365
366PyEval_ReleaseThread:void:::
367PyEval_ReleaseThread:PyThreadState*:tstate::
368
369PyEval_RestoreThread:void:::
370PyEval_RestoreThread:PyThreadState*:tstate::
371
372PyEval_SaveThread:PyThreadState*:::
373
374PyEval_EvalCode:PyObject*::+1:
375PyEval_EvalCode:PyCodeObject*:co:0:
376PyEval_EvalCode:PyObject*:globals:0:
377PyEval_EvalCode:PyObject*:locals:0:
378
379PyFile_AsFile:FILE*:::
380PyFile_AsFile:PyFileObject*:p:0:
381
382PyFile_Check:int:::
383PyFile_Check:PyObject*:p:0:
384
385PyFile_FromFile:PyObject*::+1:
386PyFile_FromFile:FILE*:fp::
387PyFile_FromFile:char*:name::
388PyFile_FromFile:char*:mode::
389PyFile_FromFile:int(*:close)::
390
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000391PyFile_FromFileEx:PyObject*::+1:
392PyFile_FromFileEx:FILE*:fp::
393PyFile_FromFileEx:char*:name::
394PyFile_FromFileEx:char*:mode::
395PyFile_FromFileEx:int(*:close)::
396PyFile_FromFileEx:int:buffering::
397PyFile_FromFileEx:char*:encoding::
398PyFile_FromFileEx:char*:newline::
399
Georg Brandl116aa622007-08-15 14:28:22 +0000400PyFile_FromString:PyObject*::+1:
401PyFile_FromString:char*:name::
402PyFile_FromString:char*:mode::
403
404PyFile_GetLine:PyObject*::+1:
405PyFile_GetLine:PyObject*:p::
406PyFile_GetLine:int:n::
407
408PyFile_Name:PyObject*::0:
409PyFile_Name:PyObject*:p:0:
410
411PyFile_SetBufSize:void:::
412PyFile_SetBufSize:PyFileObject*:p:0:
413PyFile_SetBufSize:int:n::
414
415PyFile_SoftSpace:int:::
416PyFile_SoftSpace:PyFileObject*:p:0:
417PyFile_SoftSpace:int:newflag::
418
419PyFile_WriteObject:int:::
420PyFile_WriteObject:PyObject*:obj:0:
421PyFile_WriteObject:PyFileObject*:p:0:
422PyFile_WriteObject:int:flags::
423
424PyFile_WriteString:int:::
425PyFile_WriteString:const char*:s::
426PyFile_WriteString:PyFileObject*:p:0:
427PyFile_WriteString:int:flags::
428
429PyFloat_AS_DOUBLE:double:::
430PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
431
432PyFloat_AsDouble:double:::
433PyFloat_AsDouble:PyObject*:pyfloat:0:
434
435PyFloat_Check:int:::
436PyFloat_Check:PyObject*:p:0:
437
438PyFloat_FromDouble:PyObject*::+1:
439PyFloat_FromDouble:double:v::
440
441PyFloat_FromString:PyObject*::+1:
442PyFloat_FromString:PyObject*:str:0:
443
444PyFrozenSet_New:PyObject*::+1:
445PyFrozenSet_New:PyObject*:iterable:0:
446
447PyFunction_GetClosure:PyObject*::0:
448PyFunction_GetClosure:PyObject*:op:0:
449
450PyFunction_GetCode:PyObject*::0:
451PyFunction_GetCode:PyObject*:op:0:
452
453PyFunction_GetDefaults:PyObject*::0:
454PyFunction_GetDefaults:PyObject*:op:0:
455
456PyFunction_GetGlobals:PyObject*::0:
457PyFunction_GetGlobals:PyObject*:op:0:
458
459PyFunction_GetModule:PyObject*::0:
460PyFunction_GetModule:PyObject*:op:0:
461
462PyFunction_New:PyObject*::+1:
463PyFunction_New:PyObject*:code:+1:
464PyFunction_New:PyObject*:globals:+1:
465
466PyFunction_SetClosure:int:::
467PyFunction_SetClosure:PyObject*:op:0:
468PyFunction_SetClosure:PyObject*:closure:+1:
469
470PyFunction_SetDefaults:int:::
471PyFunction_SetDefaults:PyObject*:op:0:
472PyFunction_SetDefaults:PyObject*:defaults:+1:
473
474PyGen_New:PyObject*::+1:
475PyGen_New:PyFrameObject*:frame:0:
476
477Py_InitModule:PyObject*::0:
478Py_InitModule:char*:name::
479Py_InitModule:PyMethodDef[]:methods::
480
481Py_InitModule3:PyObject*::0:
482Py_InitModule3:char*:name::
483Py_InitModule3:PyMethodDef[]:methods::
484Py_InitModule3:char*:doc::
485
486Py_InitModule4:PyObject*::0:
487Py_InitModule4:char*:name::
488Py_InitModule4:PyMethodDef[]:methods::
489Py_InitModule4:char*:doc::
490Py_InitModule4:PyObject*:self::
491Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
492
493PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
494PyImport_AddModule:char*:name::
495
496PyImport_Cleanup:void:::
497
498PyImport_ExecCodeModule:PyObject*::+1:
499PyImport_ExecCodeModule:char*:name::
500PyImport_ExecCodeModule:PyObject*:co:0:
501
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000502PyImport_ExecCodeModuleEx:PyObject*::+1:
503PyImport_ExecCodeModuleEx:char*:name::
504PyImport_ExecCodeModuleEx:PyObject*:co:0:
505PyImport_ExecCodeModuleEx:char*:pathname::
506
Georg Brandl116aa622007-08-15 14:28:22 +0000507PyImport_GetMagicNumber:long:::
508
509PyImport_GetModuleDict:PyObject*::0:
510
511PyImport_Import:PyObject*::+1:
512PyImport_Import:PyObject*:name:0:
513
514PyImport_ImportFrozenModule:int:::
515PyImport_ImportFrozenModule:char*:::
516
517PyImport_ImportModule:PyObject*::+1:
518PyImport_ImportModule:char*:name::
519
520PyImport_ImportModuleEx:PyObject*::+1:
521PyImport_ImportModuleEx:char*:name::
522PyImport_ImportModuleEx:PyObject*:globals:0:???
523PyImport_ImportModuleEx:PyObject*:locals:0:???
524PyImport_ImportModuleEx:PyObject*:fromlist:0:???
525
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000526PyImport_ImportModuleLevel:PyObject*::+1:
527PyImport_ImportModuleLevel:char*:name::
528PyImport_ImportModuleLevel:PyObject*:globals:0:???
529PyImport_ImportModuleLevel:PyObject*:locals:0:???
530PyImport_ImportModuleLevel:PyObject*:fromlist:0:???
531PyImport_ImportModuleLevel:int:level::
532
Georg Brandl116aa622007-08-15 14:28:22 +0000533PyImport_ReloadModule:PyObject*::+1:
534PyImport_ReloadModule:PyObject*:m:0:
535
536PyInstance_New:PyObject*::+1:
537PyInstance_New:PyObject*:klass:+1:
538PyInstance_New:PyObject*:arg:0:
539PyInstance_New:PyObject*:kw:0:
540
541PyInstance_NewRaw:PyObject*::+1:
542PyInstance_NewRaw:PyObject*:klass:+1:
543PyInstance_NewRaw:PyObject*:dict:+1:
544
545PyInt_AS_LONG:long:::
546PyInt_AS_LONG:PyIntObject*:io:0:
547
548PyInt_AsLong:long:::
549PyInt_AsLong:PyObject*:io:0:
550
551PyInt_Check:int:::
552PyInt_Check:PyObject*:op:0:
553
554PyInt_FromLong:PyObject*::+1:
555PyInt_FromLong:long:ival::
556
557PyInt_FromString:PyObject*::+1:
558PyInt_FromString:char*:str:0:
559PyInt_FromString:char**:pend:0:
560PyInt_FromString:int:base:0:
561
562PyInt_FromSsize_t:PyObject*::+1:
563PyInt_FromSsize_t:Py_ssize_t:ival::
564
565PyInt_GetMax:long:::
566
567PyInterpreterState_Clear:void:::
568PyInterpreterState_Clear:PyInterpreterState*:interp::
569
570PyInterpreterState_Delete:void:::
571PyInterpreterState_Delete:PyInterpreterState*:interp::
572
573PyInterpreterState_New:PyInterpreterState*:::
574
575PyIter_Check:int:o:0:
576
577PyIter_Next:PyObject*::+1:
578PyIter_Next:PyObject*:o:0:
579
580PyList_Append:int:::
581PyList_Append:PyObject*:list:0:
582PyList_Append:PyObject*:item:+1:
583
584PyList_AsTuple:PyObject*::+1:
585PyList_AsTuple:PyObject*:list:0:
586
587PyList_Check:int:::
588PyList_Check:PyObject*:p:0:
589
590PyList_GET_ITEM:PyObject*::0:
591PyList_GET_ITEM:PyObject*:list:0:
592PyList_GET_ITEM:int:i:0:
593
594PyList_GET_SIZE:int:::
595PyList_GET_SIZE:PyObject*:list:0:
596
597PyList_GetItem:PyObject*::0:
598PyList_GetItem:PyObject*:list:0:
599PyList_GetItem:int:index::
600
601PyList_GetSlice:PyObject*::+1:
602PyList_GetSlice:PyObject*:list:0:
603PyList_GetSlice:int:low::
604PyList_GetSlice:int:high::
605
606PyList_Insert:int:::
607PyList_Insert:PyObject*:list:0:
608PyList_Insert:int:index::
609PyList_Insert:PyObject*:item:+1:
610
611PyList_New:PyObject*::+1:
612PyList_New:int:len::
613
614PyList_Reverse:int:::
615PyList_Reverse:PyObject*:list:0:
616
617PyList_SET_ITEM:void:::
618PyList_SET_ITEM:PyObject*:list:0:
619PyList_SET_ITEM:int:i::
620PyList_SET_ITEM:PyObject*:o:0:
621
622PyList_SetItem:int:::
623PyList_SetItem:PyObject*:list:0:
624PyList_SetItem:int:index::
625PyList_SetItem:PyObject*:item:0:
626
627PyList_SetSlice:int:::
628PyList_SetSlice:PyObject*:list:0:
629PyList_SetSlice:int:low::
630PyList_SetSlice:int:high::
631PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
632
633PyList_Size:int:::
634PyList_Size:PyObject*:list:0:
635
636PyList_Sort:int:::
637PyList_Sort:PyObject*:list:0:
638
639PyLong_AsDouble:double:::
640PyLong_AsDouble:PyObject*:pylong:0:
641
642PyLong_AsLong:long:::
643PyLong_AsLong:PyObject*:pylong:0:
644
645PyLong_AsUnsignedLong:unsigned long:::
646PyLong_AsUnsignedLong:PyObject*:pylong:0:
647
648PyLong_Check:int:::
649PyLong_Check:PyObject*:p:0:
650
651PyLong_FromDouble:PyObject*::+1:
652PyLong_FromDouble:double:v::
653
654PyLong_FromLong:PyObject*::+1:
655PyLong_FromLong:long:v::
656
657PyLong_FromLongLong:PyObject*::+1:
658PyLong_FromLongLong:long long:v::
659
660PyLong_FromUnsignedLongLong:PyObject*::+1:
661PyLong_FromUnsignedLongLong:unsigned long long:v::
662
663PyLong_FromString:PyObject*::+1:
664PyLong_FromString:char*:str::
665PyLong_FromString:char**:pend::
666PyLong_FromString:int:base::
667
668PyLong_FromUnicode:PyObject*::+1:
669PyLong_FromUnicode:Py_UNICODE:u::
670PyLong_FromUnicode:int:length::
671PyLong_FromUnicode:int:base::
672
673PyLong_FromUnsignedLong:PyObject*::+1:
674PyLong_FromUnsignedLong:unsignedlong:v::
675
676PyLong_FromVoidPtr:PyObject*::+1:
677PyLong_FromVoidPtr:void*:p::
678
679PyMapping_Check:int:::
680PyMapping_Check:PyObject*:o:0:
681
682PyMapping_DelItem:int:::
683PyMapping_DelItem:PyObject*:o:0:
684PyMapping_DelItem:PyObject*:key:0:
685
686PyMapping_DelItemString:int:::
687PyMapping_DelItemString:PyObject*:o:0:
688PyMapping_DelItemString:char*:key::
689
690PyMapping_GetItemString:PyObject*::+1:
691PyMapping_GetItemString:PyObject*:o:0:
692PyMapping_GetItemString:char*:key::
693
694PyMapping_HasKey:int:::
695PyMapping_HasKey:PyObject*:o:0:
696PyMapping_HasKey:PyObject*:key::
697
698PyMapping_HasKeyString:int:::
699PyMapping_HasKeyString:PyObject*:o:0:
700PyMapping_HasKeyString:char*:key::
701
702PyMapping_Items:PyObject*::+1:
703PyMapping_Items:PyObject*:o:0:
704
705PyMapping_Keys:PyObject*::+1:
706PyMapping_Keys:PyObject*:o:0:
707
708PyMapping_Length:int:::
709PyMapping_Length:PyObject*:o:0:
710
711PyMapping_SetItemString:int:::
712PyMapping_SetItemString:PyObject*:o:0:
713PyMapping_SetItemString:char*:key::
714PyMapping_SetItemString:PyObject*:v:+1:
715
716PyMapping_Values:PyObject*::+1:
717PyMapping_Values:PyObject*:o:0:
718
719PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
720PyMarshal_ReadLastObjectFromFile:FILE*:file::
721
722PyMarshal_ReadObjectFromFile:PyObject*::+1:
723PyMarshal_ReadObjectFromFile:FILE*:file::
724
725PyMarshal_ReadObjectFromString:PyObject*::+1:
726PyMarshal_ReadObjectFromString:char*:string::
727PyMarshal_ReadObjectFromString:int:len::
728
729PyMarshal_WriteObjectToString:PyObject*::+1:
730PyMarshal_WriteObjectToString:PyObject*:value:0:
731
732PyMethod_Class:PyObject*::0:
733PyMethod_Class:PyObject*:im:0:
734
735PyMethod_Function:PyObject*::0:
736PyMethod_Function:PyObject*:im:0:
737
738PyMethod_GET_CLASS:PyObject*::0:
739PyMethod_GET_CLASS:PyObject*:im:0:
740
741PyMethod_GET_FUNCTION:PyObject*::0:
742PyMethod_GET_FUNCTION:PyObject*:im:0:
743
744PyMethod_GET_SELF:PyObject*::0:
745PyMethod_GET_SELF:PyObject*:im:0:
746
747PyMethod_New:PyObject*::+1:
748PyMethod_New:PyObject*:func:0:
749PyMethod_New:PyObject*:self:0:
750PyMethod_New:PyObject*:class:0:
751
752PyMethod_Self:PyObject*::0:
753PyMethod_Self:PyObject*:im:0:
754
755PyModule_GetDict:PyObject*::0:
756PyModule_GetDict::PyObject* module:0:
757
758PyModule_GetFilename:char*:::
759PyModule_GetFilename:PyObject*:module:0:
760
761PyModule_GetName:char*:::
762PyModule_GetName:PyObject*:module:0:
763
764PyModule_New:PyObject*::+1:
765PyModule_New::char* name::
766
767PyNumber_Absolute:PyObject*::+1:
768PyNumber_Absolute:PyObject*:o:0:
769
770PyNumber_Add:PyObject*::+1:
771PyNumber_Add:PyObject*:o1:0:
772PyNumber_Add:PyObject*:o2:0:
773
774PyNumber_And:PyObject*::+1:
775PyNumber_And:PyObject*:o1:0:
776PyNumber_And:PyObject*:o2:0:
777
778PyNumber_Check:PyObject*:o:0:
779PyNumber_Check:int:::
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 Brandl116aa622007-08-15 14:28:22 +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
Christian Heimescbf3b5c2007-12-03 21:02:03 +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 Brandl116aa622007-08-15 14:28:22 +00001318PySys_SetArgv:int:::
1319PySys_SetArgv:int:argc::
1320PySys_SetArgv:char**:argv::
1321
Christian Heimescbf3b5c2007-12-03 21:02:03 +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 Brandl116aa622007-08-15 14:28:22 +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
Benjamin Peterson5e55b3e2010-02-03 02:35:45 +00001652PyUnicode_Tailmatch:int:::
Georg Brandl116aa622007-08-15 14:28:22 +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
Georg Brandl116aa622007-08-15 14:28:22 +00001743Py_GetBuildInfoconst:char*:::
1744
1745Py_GetCompilerconst:char*:::
1746
1747Py_GetCopyrightconst:char*:::
1748
1749Py_GetExecPrefix:char*:::
1750
1751Py_GetPath:char*:::
1752
1753Py_GetPlatformconst:char*:::
1754
1755Py_GetPrefix:char*:::
1756
1757Py_GetProgramFullPath:char*:::
1758
1759Py_GetProgramName:char*:::
1760
1761Py_GetVersionconst:char*:::
1762
1763Py_INCREF:void:::
1764Py_INCREF:PyObject*:o:+1:
1765
1766Py_Initialize:void:::
1767
1768Py_IsInitialized:int:::
1769
1770Py_NewInterpreter:PyThreadState*:::
1771
1772Py_SetProgramName:void:::
1773Py_SetProgramName:char*:name::
1774
1775Py_XDECREF:void:::
1776Py_XDECREF:PyObject*:o:-1:if o is not NULL
1777
1778Py_XINCREF:void:::
1779Py_XINCREF:PyObject*:o:+1:if o is not NULL
1780
1781_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1782_PyImport_FindExtension:char*:::
1783_PyImport_FindExtension:char*:::
1784
1785_PyImport_Fini:void:::
1786
1787_PyImport_FixupExtension:PyObject*:::???
1788_PyImport_FixupExtension:char*:::
1789_PyImport_FixupExtension:char*:::
1790
1791_PyImport_Init:void:::
1792
Georg Brandl116aa622007-08-15 14:28:22 +00001793_PyObject_New:PyObject*::+1:
1794_PyObject_New:PyTypeObject*:type:0:
1795
1796_PyObject_NewVar:PyObject*::+1:
1797_PyObject_NewVar:PyTypeObject*:type:0:
1798_PyObject_NewVar:int:size::
1799
1800_PyString_Resize:int:::
1801_PyString_Resize:PyObject**:string:+1:
1802_PyString_Resize:int:newsize::
1803
1804_PyTuple_Resize:int:::
1805_PyTuple_Resize:PyTupleObject**:p:+1:
1806_PyTuple_Resize:int:new::
1807
1808_Py_c_diff:Py_complex:::
1809_Py_c_diff:Py_complex:left::
1810_Py_c_diff:Py_complex:right::
1811
1812_Py_c_neg:Py_complex:::
1813_Py_c_neg:Py_complex:complex::
1814
1815_Py_c_pow:Py_complex:::
1816_Py_c_pow:Py_complex:num::
1817_Py_c_pow:Py_complex:exp::
1818
1819_Py_c_prod:Py_complex:::
1820_Py_c_prod:Py_complex:left::
1821_Py_c_prod:Py_complex:right::
1822
1823_Py_c_quot:Py_complex:::
1824_Py_c_quot:Py_complex:dividend::
1825_Py_c_quot:Py_complex:divisor::
1826
1827_Py_c_sum:Py_complex:::
1828_Py_c_sum:Py_complex:left::
1829_Py_c_sum:Py_complex:right::