blob: f2a87670dbd237b5e83ac423a624f1c0ff109248 [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
Georg Brandl116aa622007-08-15 14:28:22 +0000849PyNumber_Invert:PyObject*::+1:
850PyNumber_Invert:PyObject*:o:0:
851
852PyNumber_Long:PyObject*::+1:
853PyNumber_Long:PyObject*:o:0:
854
855PyNumber_Lshift:PyObject*::+1:
856PyNumber_Lshift:PyObject*:o1:0:
857PyNumber_Lshift:PyObject*:o2:0:
858
859PyNumber_Multiply:PyObject*::+1:
860PyNumber_Multiply:PyObject*:o1:0:
861PyNumber_Multiply:PyObject*:o2:0:
862
863PyNumber_Negative:PyObject*::+1:
864PyNumber_Negative:PyObject*:o:0:
865
866PyNumber_Or:PyObject*::+1:
867PyNumber_Or:PyObject*:o1:0:
868PyNumber_Or:PyObject*:o2:0:
869
870PyNumber_Positive:PyObject*::+1:
871PyNumber_Positive:PyObject*:o:0:
872
873PyNumber_Power:PyObject*::+1:
874PyNumber_Power:PyObject*:o1:0:
875PyNumber_Power:PyObject*:o2:0:
876PyNumber_Power:PyObject*:o3:0:
877
878PyNumber_Remainder:PyObject*::+1:
879PyNumber_Remainder:PyObject*:o1:0:
880PyNumber_Remainder:PyObject*:o2:0:
881
882PyNumber_Rshift:PyObject*::+1:
883PyNumber_Rshift:PyObject*:o1:0:
884PyNumber_Rshift:PyObject*:o2:0:
885
886PyNumber_Subtract:PyObject*::+1:
887PyNumber_Subtract:PyObject*:o1:0:
888PyNumber_Subtract:PyObject*:o2:0:
889
890PyNumber_TrueDivide:PyObject*::+1:
891PyNumber_TrueDivide:PyObject*:v:0:
892PyNumber_TrueDivide:PyObject*:w:0:
893
894PyNumber_Xor:PyObject*::+1:
895PyNumber_Xor:PyObject*:o1:0:
896PyNumber_Xor:PyObject*:o2:0:
897
Georg Brandl116aa622007-08-15 14:28:22 +0000898PyObject_AsFileDescriptor:int:::
899PyObject_AsFileDescriptor:PyObject*:o:0:
900
901PyObject_Call:PyObject*::+1:
902PyObject_Call:PyObject*:callable_object:0:
903PyObject_Call:PyObject*:args:0:
904PyObject_Call:PyObject*:kw:0:
905
906PyObject_CallFunction:PyObject*::+1:
907PyObject_CallFunction:PyObject*:callable_object:0:
908PyObject_CallFunction:char*:format::
909PyObject_CallFunction::...::
910
911PyObject_CallFunctionObjArgs:PyObject*::+1:
912PyObject_CallFunctionObjArgs:PyObject*:callable:0:
913PyObject_CallFunctionObjArgs::...::
914
915PyObject_CallMethod:PyObject*::+1:
916PyObject_CallMethod:PyObject*:o:0:
917PyObject_CallMethod:char*:m::
918PyObject_CallMethod:char*:format::
919PyObject_CallMethod::...::
920
921PyObject_CallMethodObjArgs:PyObject*::+1:
922PyObject_CallMethodObjArgs:PyObject*:o:0:
923PyObject_CallMethodObjArgs:char*:name::
924PyObject_CallMethodObjArgs::...::
925
926PyObject_CallObject:PyObject*::+1:
927PyObject_CallObject:PyObject*:callable_object:0:
928PyObject_CallObject:PyObject*:args:0:
929
930PyObject_Cmp:int:::
931PyObject_Cmp:PyObject*:o1:0:
932PyObject_Cmp:PyObject*:o2:0:
933PyObject_Cmp:int*:result::
934
935PyObject_Compare:int:::
936PyObject_Compare:PyObject*:o1:0:
937PyObject_Compare:PyObject*:o2:0:
938
939PyObject_DelAttr:int:::
940PyObject_DelAttr:PyObject*:o:0:
941PyObject_DelAttr:PyObject*:attr_name:0:
942
943PyObject_DelAttrString:int:::
944PyObject_DelAttrString:PyObject*:o:0:
945PyObject_DelAttrString:char*:attr_name::
946
947PyObject_DelItem:int:::
948PyObject_DelItem:PyObject*:o:0:
949PyObject_DelItem:PyObject*:key:0:
950
951PyObject_Dir:PyObject*::+1:
952PyObject_Dir:PyObject*:o:0:
953
954PyObject_GetAttr:PyObject*::+1:
955PyObject_GetAttr:PyObject*:o:0:
956PyObject_GetAttr:PyObject*:attr_name:0:
957
958PyObject_GetAttrString:PyObject*::+1:
959PyObject_GetAttrString:PyObject*:o:0:
960PyObject_GetAttrString:char*:attr_name::
961
962PyObject_GetItem:PyObject*::+1:
963PyObject_GetItem:PyObject*:o:0:
964PyObject_GetItem:PyObject*:key:0:
965
966PyObject_GetIter:PyObject*::+1:
967PyObject_GetIter:PyObject*:o:0:
968
969PyObject_HasAttr:int:::
970PyObject_HasAttr:PyObject*:o:0:
971PyObject_HasAttr:PyObject*:attr_name:0:
972
973PyObject_HasAttrString:int:::
974PyObject_HasAttrString:PyObject*:o:0:
975PyObject_HasAttrString:char*:attr_name:0:
976
977PyObject_Hash:int:::
978PyObject_Hash:PyObject*:o:0:
979
980PyObject_IsTrue:int:::
981PyObject_IsTrue:PyObject*:o:0:
982
983PyObject_Init:PyObject*::0:
984PyObject_Init:PyObject*:op:0:
985
986PyObject_InitVar:PyVarObject*::0:
987PyObject_InitVar:PyVarObject*:op:0:
988
989PyObject_Length:int:::
990PyObject_Length:PyObject*:o:0:
991
992PyObject_NEW:PyObject*::+1:
993
994PyObject_New:PyObject*::+1:
995
996PyObject_NEW_VAR:PyObject*::+1:
997
998PyObject_NewVar:PyObject*::+1:
999
1000PyObject_Print:int:::
1001PyObject_Print:PyObject*:o:0:
1002PyObject_Print:FILE*:fp::
1003PyObject_Print:int:flags::
1004
1005PyObject_Repr:PyObject*::+1:
1006PyObject_Repr:PyObject*:o:0:
1007
1008PyObject_RichCompare:PyObject*::+1:
1009PyObject_RichCompare:PyObject*:o1:0:
1010PyObject_RichCompare:PyObject*:o2:0:
1011PyObject_RichCompare:int:opid::
1012
1013PyObject_RichCompareBool:int:::
1014PyObject_RichCompareBool:PyObject*:o1:0:
1015PyObject_RichCompareBool:PyObject*:o2:0:
1016PyObject_RichCompareBool:int:opid::
1017
1018PyObject_SetAttr:int:::
1019PyObject_SetAttr:PyObject*:o:0:
1020PyObject_SetAttr:PyObject*:attr_name:0:
1021PyObject_SetAttr:PyObject*:v:+1:
1022
1023PyObject_SetAttrString:int:::
1024PyObject_SetAttrString:PyObject*:o:0:
1025PyObject_SetAttrString:char*:attr_name::
1026PyObject_SetAttrString:PyObject*:v:+1:
1027
1028PyObject_SetItem:int:::
1029PyObject_SetItem:PyObject*:o:0:
1030PyObject_SetItem:PyObject*:key:0:
1031PyObject_SetItem:PyObject*:v:+1:
1032
1033PyObject_Str:PyObject*::+1:
1034PyObject_Str:PyObject*:o:0:
1035
1036PyObject_Type:PyObject*::+1:
1037PyObject_Type:PyObject*:o:0:
1038
1039PyObject_Unicode:PyObject*::+1:
1040PyObject_Unicode:PyObject*:o:0:
1041
1042PyParser_SimpleParseFile:struct _node*:::
1043PyParser_SimpleParseFile:FILE*:fp::
1044PyParser_SimpleParseFile:char*:filename::
1045PyParser_SimpleParseFile:int:start::
1046
1047PyParser_SimpleParseString:struct _node*:::
1048PyParser_SimpleParseString:char*:str::
1049PyParser_SimpleParseString:int:start::
1050
1051PyRun_AnyFile:int:::
1052PyRun_AnyFile:FILE*:fp::
1053PyRun_AnyFile:char*:filename::
1054
1055PyRun_File:PyObject*::+1:??? -- same as eval_code2()
1056PyRun_File:FILE*:fp::
1057PyRun_File:char*:filename::
1058PyRun_File:int:start::
1059PyRun_File:PyObject*:globals:0:
1060PyRun_File:PyObject*:locals:0:
1061
1062PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1063PyRun_FileEx:FILE*:fp::
1064PyRun_FileEx:char*:filename::
1065PyRun_FileEx:int:start::
1066PyRun_FileEx:PyObject*:globals:0:
1067PyRun_FileEx:PyObject*:locals:0:
1068PyRun_FileEx:int:closeit::
1069
1070PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1071PyRun_FileFlags:FILE*:fp::
1072PyRun_FileFlags:char*:filename::
1073PyRun_FileFlags:int:start::
1074PyRun_FileFlags:PyObject*:globals:0:
1075PyRun_FileFlags:PyObject*:locals:0:
1076PyRun_FileFlags:PyCompilerFlags*:flags::
1077
1078PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1079PyRun_FileExFlags:FILE*:fp::
1080PyRun_FileExFlags:char*:filename::
1081PyRun_FileExFlags:int:start::
1082PyRun_FileExFlags:PyObject*:globals:0:
1083PyRun_FileExFlags:PyObject*:locals:0:
1084PyRun_FileExFlags:int:closeit::
1085PyRun_FileExFlags:PyCompilerFlags*:flags::
1086
1087PyRun_InteractiveLoop:int:::
1088PyRun_InteractiveLoop:FILE*:fp::
1089PyRun_InteractiveLoop:char*:filename::
1090
1091PyRun_InteractiveOne:int:::
1092PyRun_InteractiveOne:FILE*:fp::
1093PyRun_InteractiveOne:char*:filename::
1094
1095PyRun_SimpleFile:int:::
1096PyRun_SimpleFile:FILE*:fp::
1097PyRun_SimpleFile:char*:filename::
1098
1099PyRun_SimpleString:int:::
1100PyRun_SimpleString:char*:command::
1101
1102PyRun_String:PyObject*::+1:??? -- same as eval_code2()
1103PyRun_String:char*:str::
1104PyRun_String:int:start::
1105PyRun_String:PyObject*:globals:0:
1106PyRun_String:PyObject*:locals:0:
1107
1108PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
1109PyRun_StringFlags:char*:str::
1110PyRun_StringFlags:int:start::
1111PyRun_StringFlags:PyObject*:globals:0:
1112PyRun_StringFlags:PyObject*:locals:0:
1113PyRun_StringFlags:PyCompilerFlags*:flags::
1114
1115PySeqIter_New:PyObject*::+1:
1116PySeqIter_New:PyObject*:seq::
1117
1118PySequence_Check:int:::
1119PySequence_Check:PyObject*:o:0:
1120
1121PySequence_Concat:PyObject*::+1:
1122PySequence_Concat:PyObject*:o1:0:
1123PySequence_Concat:PyObject*:o2:0:
1124
1125PySequence_Count:int:::
1126PySequence_Count:PyObject*:o:0:
1127PySequence_Count:PyObject*:value:0:
1128
1129PySequence_DelItem:int:::
1130PySequence_DelItem:PyObject*:o:0:
1131PySequence_DelItem:int:i::
1132
1133PySequence_DelSlice:int:::
1134PySequence_DelSlice:PyObject*:o:0:
1135PySequence_DelSlice:int:i1::
1136PySequence_DelSlice:int:i2::
1137
1138PySequence_Fast:PyObject*::+1:
1139PySequence_Fast:PyObject*:v:0:
1140PySequence_Fast:const char*:m::
1141
1142PySequence_Fast_GET_ITEM:PyObject*::0:
1143PySequence_Fast_GET_ITEM:PyObject*:o:0:
1144PySequence_Fast_GET_ITEM:int:i::
1145
1146PySequence_GetItem:PyObject*::+1:
1147PySequence_GetItem:PyObject*:o:0:
1148PySequence_GetItem:int:i::
1149
1150PySequence_GetSlice:PyObject*::+1:
1151PySequence_GetSlice:PyObject*:o:0:
1152PySequence_GetSlice:int:i1::
1153PySequence_GetSlice:int:i2::
1154
1155PySequence_In:int:::
1156PySequence_In:PyObject*:o:0:
1157PySequence_In:PyObject*:value:0:
1158
1159PySequence_Index:int:::
1160PySequence_Index:PyObject*:o:0:
1161PySequence_Index:PyObject*:value:0:
1162
1163PySequence_InPlaceConcat:PyObject*::+1:
1164PySequence_InPlaceConcat:PyObject*:s:0:
1165PySequence_InPlaceConcat:PyObject*:o:0:
1166
1167PySequence_InPlaceRepeat:PyObject*::+1:
1168PySequence_InPlaceRepeat:PyObject*:s:0:
1169PySequence_InPlaceRepeat:PyObject*:o:0:
1170
1171PySequence_ITEM:PyObject*::+1:
1172PySequence_ITEM:PyObject*:o:0:
1173PySequence_ITEM:int:i::
1174
1175PySequence_Repeat:PyObject*::+1:
1176PySequence_Repeat:PyObject*:o:0:
1177PySequence_Repeat:int:count::
1178
1179PySequence_SetItem:int:::
1180PySequence_SetItem:PyObject*:o:0:
1181PySequence_SetItem:int:i::
1182PySequence_SetItem:PyObject*:v:+1:
1183
1184PySequence_SetSlice:int:::
1185PySequence_SetSlice:PyObject*:o:0:
1186PySequence_SetSlice:int:i1::
1187PySequence_SetSlice:int:i2::
1188PySequence_SetSlice:PyObject*:v:+1:
1189
1190PySequence_List:PyObject*::+1:
1191PySequence_List:PyObject*:o:0:
1192
1193PySequence_Tuple:PyObject*::+1:
1194PySequence_Tuple:PyObject*:o:0:
1195
1196PySet_Append:int:::
1197PySet_Append:PyObject*:set:0:
1198PySet_Append:PyObject*:key:+1:
1199
1200PySet_Contains:int:::
1201PySet_Contains:PyObject*:anyset:0:
1202PySet_Contains:PyObject*:key:0:
1203
1204PySet_Discard:int:::
1205PySet_Discard:PyObject*:set:0:
1206PySet_Discard:PyObject*:key:-1:no effect if key not found
1207
1208PySet_New:PyObject*::+1:
1209PySet_New:PyObject*:iterable:0:
1210
1211PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
1212PySet_Pop:PyObject*:set:0:
1213
1214PySet_Size:int:::
1215PySet_Size:PyObject*:anyset:0:
1216
1217PySlice_Check:int:::
1218PySlice_Check:PyObject*:ob:0:
1219
1220PySlice_New:PyObject*::+1:
1221PySlice_New:PyObject*:start:0:
1222PySlice_New:PyObject*:stop:0:
1223PySlice_New:PyObject*:step:0:
1224
1225PyString_AS_STRING:char*:::
1226PyString_AS_STRING:PyObject*:string:0:
1227
1228PyString_AsDecodedObject:PyObject*::+1:
1229PyString_AsDecodedObject:PyObject*:str:0:
1230PyString_AsDecodedObject:const char*:encoding::
1231PyString_AsDecodedObject:const char*:errors::
1232
1233PyString_AsEncodedObject:PyObject*::+1:
1234PyString_AsEncodedObject:PyObject*:str:0:
1235PyString_AsEncodedObject:const char*:encoding::
1236PyString_AsEncodedObject:const char*:errors::
1237
1238PyString_AsString:char*:::
1239PyString_AsString:PyObject*:string:0:
1240
1241PyString_AsStringAndSize:int:::
1242PyString_AsStringAndSize:PyObject*:obj:0:
1243PyString_AsStringAndSize:char**:buffer::
1244PyString_AsStringAndSize:int*:length::
1245
1246PyString_Check:int:::
1247PyString_Check:PyObject*:o:0:
1248
1249PyString_Concat:void:::
1250PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
1251PyString_Concat:PyObject*:newpart:0:
1252
1253PyString_ConcatAndDel:void:::
1254PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
1255PyString_ConcatAndDel:PyObject*:newpart:-1:
1256
1257PyString_Format:PyObject*::+1:
1258PyString_Format:PyObject*:format:0:
1259PyString_Format:PyObject*:args:0:
1260
1261PyString_FromString:PyObject*::+1:
1262PyString_FromString:const char*:v::
1263
1264PyString_FromStringAndSize:PyObject*::+1:
1265PyString_FromStringAndSize:const char*:v::
1266PyString_FromStringAndSize:int:len::
1267
1268PyString_FromFormat:PyObject*::+1:
1269PyString_FromFormat:const char*:format::
1270PyString_FromFormat::...::
1271
1272PyString_FromFormatV:PyObject*::+1:
1273PyString_FromFormatV:const char*:format::
1274PyString_FromFormatV:va_list:vargs::
1275
1276PyString_GET_SIZE:int:::
1277PyString_GET_SIZE:PyObject*:string:0:
1278
1279PyString_InternFromString:PyObject*::+1:
1280PyString_InternFromString:const char*:v::
1281
1282PyString_InternInPlace:void:::
1283PyString_InternInPlace:PyObject**:string:+1:???
1284
1285PyString_Size:int:::
1286PyString_Size:PyObject*:string:0:
1287
1288PyString_Decode:PyObject*::+1:
1289PyString_Decode:const char*:s::
1290PyString_Decode:int:size::
1291PyString_Decode:const char*:encoding::
1292PyString_Decode:const char*:errors::
1293
1294PyString_Encode:PyObject*::+1:
1295PyString_Encode:const char*:s::
1296PyString_Encode:int:size::
1297PyString_Encode:const char*:encoding::
1298PyString_Encode:const char*:errors::
1299
1300PyString_AsEncodedString:PyObject*::+1:
1301PyString_AsEncodedString:PyObject*:str::
1302PyString_AsEncodedString:const char*:encoding::
1303PyString_AsEncodedString:const char*:errors::
1304
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001305PySys_AddWarnOption:void:::
1306PySys_AddWarnOption:char*:s::
1307
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001308PySys_AddXOption:void:::
1309PySys_AddXOption:const wchar_t*:s::
1310
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001311PySys_GetFile:FILE*:::
1312PySys_GetFile:char*:name::
1313PySys_GetFile:FILE*:def::
1314
1315PySys_GetObject:PyObject*::0:
1316PySys_GetObject:char*:name::
1317
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001318PySys_GetXOptions:PyObject*::0:
1319
Georg Brandl116aa622007-08-15 14:28:22 +00001320PySys_SetArgv:int:::
1321PySys_SetArgv:int:argc::
1322PySys_SetArgv:char**:argv::
1323
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001324PySys_SetObject:int:::
1325PySys_SetObject:char*:name::
1326PySys_SetObject:PyObject*:v:+1:
1327
1328PySys_ResetWarnOptions:void:::
1329
1330PySys_WriteStdout:void:::
1331PySys_WriteStdout:char*:format::
1332
1333PySys_WriteStderr:void:::
1334PySys_WriteStderr:char*:format::
1335
Georg Brandl116aa622007-08-15 14:28:22 +00001336PyThreadState_Clear:void:::
1337PyThreadState_Clear:PyThreadState*:tstate::
1338
1339PyThreadState_Delete:void:::
1340PyThreadState_Delete:PyThreadState*:tstate::
1341
1342PyThreadState_Get:PyThreadState*:::
1343
1344PyThreadState_GetDict:PyObject*::0:
1345
1346PyThreadState_New:PyThreadState*:::
1347PyThreadState_New:PyInterpreterState*:interp::
1348
1349PyThreadState_Swap:PyThreadState*:::
1350PyThreadState_Swap:PyThreadState*:tstate::
1351
1352PyTime_FromTime:PyObject*::+1:
1353PyTime_FromTime:int:hour::
1354PyTime_FromTime:int:minute::
1355PyTime_FromTime:int:second::
1356PyTime_FromTime:int:usecond::
1357
1358PyTuple_Check:int:::
1359PyTuple_Check:PyObject*:p:0:
1360
1361PyTuple_GET_ITEM:PyObject*::0:
1362PyTuple_GET_ITEM:PyTupleObject*:p:0:
1363PyTuple_GET_ITEM:int:pos::
1364
1365PyTuple_GetItem:PyObject*::0:
1366PyTuple_GetItem:PyTupleObject*:p:0:
1367PyTuple_GetItem:int:pos::
1368
1369PyTuple_GetSlice:PyObject*::+1:
1370PyTuple_GetSlice:PyTupleObject*:p:0:
1371PyTuple_GetSlice:int:low::
1372PyTuple_GetSlice:int:high::
1373
1374PyTuple_New:PyObject*::+1:
1375PyTuple_New:int:len::
1376
1377PyTuple_Pack:PyObject*::+1:
1378PyTuple_Pack:int:len::
1379PyTuple_Pack:PyObject*:...:0:
1380
1381PyTuple_SET_ITEM:void:::
1382PyTuple_SET_ITEM:PyTupleObject*:p:0:
1383PyTuple_SET_ITEM:int:pos::
1384PyTuple_SET_ITEM:PyObject*:o:0:
1385
1386PyTuple_SetItem:int:::
1387PyTuple_SetItem:PyTupleObject*:p:0:
1388PyTuple_SetItem:int:pos::
1389PyTuple_SetItem:PyObject*:o:0:
1390
1391PyTuple_Size:int:::
1392PyTuple_Size:PyTupleObject*:p:0:
1393
1394PyType_GenericAlloc:PyObject*::+1:
1395PyType_GenericAlloc:PyObject*:type:0:
1396PyType_GenericAlloc:int:nitems:0:
1397
1398PyType_GenericNew:PyObject*::+1:
1399PyType_GenericNew:PyObject*:type:0:
1400PyType_GenericNew:PyObject*:args:0:
1401PyType_GenericNew:PyObject*:kwds:0:
1402
1403PyUnicode_Check:int:::
1404PyUnicode_Check:PyObject*:o:0:
1405
1406PyUnicode_GET_SIZE:int:::
1407PyUnicode_GET_SIZE:PyObject*:o:0:
1408
1409PyUnicode_GET_DATA_SIZE:int:::
1410PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1411
1412PyUnicode_AS_UNICODE:Py_UNICODE*:::
1413PyUnicode_AS_UNICODE:PyObject*:o:0:
1414
1415PyUnicode_AS_DATA:const char*:::
1416PyUnicode_AS_DATA:PyObject*:o:0:
1417
1418Py_UNICODE_ISSPACE:int:::
1419Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1420
1421Py_UNICODE_ISLOWER:int:::
1422Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1423
1424Py_UNICODE_ISUPPER:int:::
1425Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1426
1427Py_UNICODE_ISTITLE:int:::
1428Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1429
1430Py_UNICODE_ISLINEBREAK:int:::
1431Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1432
1433Py_UNICODE_ISDECIMAL:int:::
1434Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1435
1436Py_UNICODE_ISDIGIT:int:::
1437Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1438
1439Py_UNICODE_ISNUMERIC:int:::
1440Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1441
1442Py_UNICODE_TOLOWER:Py_UNICODE:::
1443Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1444
1445Py_UNICODE_TOUPPER:Py_UNICODE:::
1446Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1447
1448Py_UNICODE_TOTITLE:Py_UNICODE:::
1449Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1450
1451Py_UNICODE_TODECIMAL:int:::
1452Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1453
1454Py_UNICODE_TODIGIT:int:::
1455Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1456
1457Py_UNICODE_TONUMERIC:double:::
1458Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1459
1460PyUnicode_FromUnicode:PyObject*::+1:
1461PyUnicode_FromUnicode:const Py_UNICODE*:u::
1462PyUnicode_FromUnicode:int:size::
1463
1464PyUnicode_AsUnicode:Py_UNICODE*:::
1465PyUnicode_AsUnicode:PyObject :*unicode:0:
1466
1467PyUnicode_GetSize:int:::
1468PyUnicode_GetSize:PyObject :*unicode:0:
1469
1470PyUnicode_FromObject:PyObject*::+1:
1471PyUnicode_FromObject:PyObject*:*obj:0:
1472
1473PyUnicode_FromEncodedObject:PyObject*::+1:
1474PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1475PyUnicode_FromEncodedObject:const char*:encoding::
1476PyUnicode_FromEncodedObject:const char*:errors::
1477
1478PyUnicode_FromWideChar:PyObject*::+1:
1479PyUnicode_FromWideChar:const wchar_t*:w::
1480PyUnicode_FromWideChar:int:size::
1481
1482PyUnicode_AsWideChar:int:::
1483PyUnicode_AsWideChar:PyObject*:*unicode:0:
1484PyUnicode_AsWideChar:wchar_t*:w::
1485PyUnicode_AsWideChar:int:size::
1486
1487PyUnicode_Decode:PyObject*::+1:
1488PyUnicode_Decode:const char*:s::
1489PyUnicode_Decode:int:size::
1490PyUnicode_Decode:const char*:encoding::
1491PyUnicode_Decode:const char*:errors::
1492
1493PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1494PyUnicode_DecodeUTF16Stateful:const char*:s::
1495PyUnicode_DecodeUTF16Stateful:int:size::
1496PyUnicode_DecodeUTF16Stateful:const char*:errors::
1497PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1498PyUnicode_DecodeUTF16Stateful:int*:consumed::
1499
1500PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1501PyUnicode_DecodeUTF8Stateful:const char*:s::
1502PyUnicode_DecodeUTF8Stateful:int:size::
1503PyUnicode_DecodeUTF8Stateful:const char*:errors::
1504PyUnicode_DecodeUTF8Stateful:int*:consumed::
1505
1506PyUnicode_Encode:PyObject*::+1:
1507PyUnicode_Encode:const Py_UNICODE*:s::
1508PyUnicode_Encode:int:size::
1509PyUnicode_Encode:const char*:encoding::
1510PyUnicode_Encode:const char*:errors::
1511
1512PyUnicode_AsEncodedString:PyObject*::+1:
1513PyUnicode_AsEncodedString:PyObject*:unicode::
1514PyUnicode_AsEncodedString:const char*:encoding::
1515PyUnicode_AsEncodedString:const char*:errors::
1516
1517PyUnicode_DecodeUTF8:PyObject*::+1:
1518PyUnicode_DecodeUTF8:const char*:s::
1519PyUnicode_DecodeUTF8:int:size::
1520PyUnicode_DecodeUTF8:const char*:errors::
1521
1522PyUnicode_EncodeUTF8:PyObject*::+1:
1523PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1524PyUnicode_EncodeUTF8:int:size::
1525PyUnicode_EncodeUTF8:const char*:errors::
1526
1527PyUnicode_AsUTF8String:PyObject*::+1:
1528PyUnicode_AsUTF8String:PyObject*:unicode::
1529
1530PyUnicode_DecodeUTF16:PyObject*::+1:
1531PyUnicode_DecodeUTF16:const char*:s::
1532PyUnicode_DecodeUTF16:int:size::
1533PyUnicode_DecodeUTF16:const char*:errors::
1534PyUnicode_DecodeUTF16:int*:byteorder::
1535
1536PyUnicode_EncodeUTF16:PyObject*::+1:
1537PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1538PyUnicode_EncodeUTF16:int:size::
1539PyUnicode_EncodeUTF16:const char*:errors::
1540PyUnicode_EncodeUTF16:int:byteorder::
1541
1542PyUnicode_AsUTF16String:PyObject*::+1:
1543PyUnicode_AsUTF16String:PyObject*:unicode::
1544
1545PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1546PyUnicode_DecodeUnicodeEscape:const char*:s::
1547PyUnicode_DecodeUnicodeEscape:int:size::
1548PyUnicode_DecodeUnicodeEscape:const char*:errors::
1549
1550PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1551PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1552PyUnicode_EncodeUnicodeEscape:int:size::
1553PyUnicode_EncodeUnicodeEscape:const char*:errors::
1554
1555PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1556PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1557
1558PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1559PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1560PyUnicode_DecodeRawUnicodeEscape:int:size::
1561PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1562
1563PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1564PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1565PyUnicode_EncodeRawUnicodeEscape:int:size::
1566PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1567
1568PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1569PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1570
1571PyUnicode_DecodeLatin1:PyObject*::+1:
1572PyUnicode_DecodeLatin1:const char*:s::
1573PyUnicode_DecodeLatin1:int:size::
1574PyUnicode_DecodeLatin1:const char*:errors::
1575
1576PyUnicode_EncodeLatin1:PyObject*::+1:
1577PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1578PyUnicode_EncodeLatin1:int:size::
1579PyUnicode_EncodeLatin1:const char*:errors::
1580
1581PyUnicode_AsLatin1String:PyObject*::+1:
1582PyUnicode_AsLatin1String:PyObject*:unicode::
1583
1584PyUnicode_DecodeASCII:PyObject*::+1:
1585PyUnicode_DecodeASCII:const char*:s::
1586PyUnicode_DecodeASCII:int:size::
1587PyUnicode_DecodeASCII:const char*:errors::
1588
1589PyUnicode_EncodeASCII:PyObject*::+1:
1590PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1591PyUnicode_EncodeASCII:int:size::
1592PyUnicode_EncodeASCII:const char*:errors::
1593
1594PyUnicode_AsASCIIString:PyObject*::+1:
1595PyUnicode_AsASCIIString:PyObject*:unicode::
1596
1597PyUnicode_DecodeCharmap:PyObject*::+1:
1598PyUnicode_DecodeCharmap:const char*:s::
1599PyUnicode_DecodeCharmap:int:size::
1600PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1601PyUnicode_DecodeCharmap:const char*:errors::
1602
1603PyUnicode_EncodeCharmap:PyObject*::+1:
1604PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1605PyUnicode_EncodeCharmap:int:size::
1606PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1607PyUnicode_EncodeCharmap:const char*:errors::
1608
1609PyUnicode_AsCharmapString:PyObject*::+1:
1610PyUnicode_AsCharmapString:PyObject*:unicode:0:
1611PyUnicode_AsCharmapString:PyObject*:mapping:0:
1612
1613PyUnicode_TranslateCharmap:PyObject*::+1:
1614PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1615PyUnicode_TranslateCharmap:int:size::
1616PyUnicode_TranslateCharmap:PyObject*:table:0:
1617PyUnicode_TranslateCharmap:const char*:errors::
1618
1619PyUnicode_DecodeMBCS:PyObject*::+1:
1620PyUnicode_DecodeMBCS:const char*:s::
1621PyUnicode_DecodeMBCS:int:size::
1622PyUnicode_DecodeMBCS:const char*:errors::
1623
1624PyUnicode_EncodeMBCS:PyObject*::+1:
1625PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1626PyUnicode_EncodeMBCS:int:size::
1627PyUnicode_EncodeMBCS:const char*:errors::
1628
1629PyUnicode_AsMBCSString:PyObject*::+1:
1630PyUnicode_AsMBCSString:PyObject*:unicode::
1631
1632PyUnicode_Concat:PyObject*::+1:
1633PyUnicode_Concat:PyObject*:left:0:
1634PyUnicode_Concat:PyObject*:right:0:
1635
1636PyUnicode_Split:PyObject*::+1:
1637PyUnicode_Split:PyObject*:left:0:
1638PyUnicode_Split:PyObject*:right:0:
1639PyUnicode_Split:int:maxsplit::
1640
1641PyUnicode_Splitlines:PyObject*::+1:
1642PyUnicode_Splitlines:PyObject*:s:0:
1643PyUnicode_Splitlines:int:maxsplit::
1644
1645PyUnicode_Translate:PyObject*::+1:
1646PyUnicode_Translate:PyObject*:str:0:
1647PyUnicode_Translate:PyObject*:table:0:
1648PyUnicode_Translate:const char*:errors::
1649
1650PyUnicode_Join:PyObject*::+1:
1651PyUnicode_Join:PyObject*:separator:0:
1652PyUnicode_Join:PyObject*:seq:0:
1653
Benjamin Peterson5e55b3e2010-02-03 02:35:45 +00001654PyUnicode_Tailmatch:int:::
Georg Brandl116aa622007-08-15 14:28:22 +00001655PyUnicode_Tailmatch:PyObject*:str:0:
1656PyUnicode_Tailmatch:PyObject*:substr:0:
1657PyUnicode_Tailmatch:int:start::
1658PyUnicode_Tailmatch:int:end::
1659PyUnicode_Tailmatch:int:direction::
1660
1661PyUnicode_Find:int:::
1662PyUnicode_Find:PyObject*:str:0:
1663PyUnicode_Find:PyObject*:substr:0:
1664PyUnicode_Find:int:start::
1665PyUnicode_Find:int:end::
1666PyUnicode_Find:int:direction::
1667
1668PyUnicode_Count:int:::
1669PyUnicode_Count:PyObject*:str:0:
1670PyUnicode_Count:PyObject*:substr:0:
1671PyUnicode_Count:int:start::
1672PyUnicode_Count:int:end::
1673
1674PyUnicode_Replace:PyObject*::+1:
1675PyUnicode_Replace:PyObject*:str:0:
1676PyUnicode_Replace:PyObject*:substr:0:
1677PyUnicode_Replace:PyObject*:replstr:0:
1678PyUnicode_Replace:int:maxcount::
1679
1680PyUnicode_Compare:int:::
1681PyUnicode_Compare:PyObject*:left:0:
1682PyUnicode_Compare:PyObject*:right:0:
1683
1684PyUnicode_Format:PyObject*::+1:
1685PyUnicode_Format:PyObject*:format:0:
1686PyUnicode_Format:PyObject*:args:0:
1687
1688PyUnicode_Contains:int:::
1689PyUnicode_Contains:PyObject*:container:0:
1690PyUnicode_Contains:PyObject*:element:0:
1691
1692PyWeakref_GET_OBJECT:PyObject*::0:
1693PyWeakref_GET_OBJECT:PyObject*:ref:0:
1694
1695PyWeakref_GetObject:PyObject*::0:
1696PyWeakref_GetObject:PyObject*:ref:0:
1697
1698PyWeakref_NewProxy:PyObject*::+1:
1699PyWeakref_NewProxy:PyObject*:ob:0:
1700PyWeakref_NewProxy:PyObject*:callback:0:
1701
1702PyWeakref_NewRef:PyObject*::+1:
1703PyWeakref_NewRef:PyObject*:ob:0:
1704PyWeakref_NewRef:PyObject*:callback:0:
1705
1706PyWrapper_New:PyObject*::+1:
1707PyWrapper_New:PyObject*:d:0:
1708PyWrapper_New:PyObject*:self:0:
1709
1710Py_AtExit:int:::
1711Py_AtExit:void (*)():func::
1712
1713Py_BuildValue:PyObject*::+1:
1714Py_BuildValue:char*:format::
1715
1716Py_CompileString:PyObject*::+1:
1717Py_CompileString:char*:str::
1718Py_CompileString:char*:filename::
1719Py_CompileString:int:start::
1720
1721Py_CompileStringFlags:PyObject*::+1:
1722Py_CompileStringFlags:char*:str::
1723Py_CompileStringFlags:char*:filename::
1724Py_CompileStringFlags:int:start::
1725Py_CompileStringFlags:PyCompilerFlags*:flags::
1726
1727Py_DECREF:void:::
1728Py_DECREF:PyObject*:o:-1:
1729
1730Py_EndInterpreter:void:::
1731Py_EndInterpreter:PyThreadState*:tstate::
1732
1733Py_Exit:void:::
1734Py_Exit:int:status::
1735
1736Py_FatalError:void:::
1737Py_FatalError:char*:message::
1738
1739Py_FdIsInteractive:int:::
1740Py_FdIsInteractive:FILE*:fp::
1741Py_FdIsInteractive:char*:filename::
1742
1743Py_Finalize:void:::
1744
Georg Brandl116aa622007-08-15 14:28:22 +00001745Py_GetBuildInfoconst:char*:::
1746
1747Py_GetCompilerconst:char*:::
1748
1749Py_GetCopyrightconst:char*:::
1750
1751Py_GetExecPrefix:char*:::
1752
1753Py_GetPath:char*:::
1754
1755Py_GetPlatformconst:char*:::
1756
1757Py_GetPrefix:char*:::
1758
1759Py_GetProgramFullPath:char*:::
1760
1761Py_GetProgramName:char*:::
1762
1763Py_GetVersionconst:char*:::
1764
1765Py_INCREF:void:::
1766Py_INCREF:PyObject*:o:+1:
1767
1768Py_Initialize:void:::
1769
1770Py_IsInitialized:int:::
1771
1772Py_NewInterpreter:PyThreadState*:::
1773
1774Py_SetProgramName:void:::
1775Py_SetProgramName:char*:name::
1776
1777Py_XDECREF:void:::
1778Py_XDECREF:PyObject*:o:-1:if o is not NULL
1779
1780Py_XINCREF:void:::
1781Py_XINCREF:PyObject*:o:+1:if o is not NULL
1782
1783_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1784_PyImport_FindExtension:char*:::
1785_PyImport_FindExtension:char*:::
1786
1787_PyImport_Fini:void:::
1788
1789_PyImport_FixupExtension:PyObject*:::???
1790_PyImport_FixupExtension:char*:::
1791_PyImport_FixupExtension:char*:::
1792
1793_PyImport_Init:void:::
1794
Georg Brandl116aa622007-08-15 14:28:22 +00001795_PyObject_New:PyObject*::+1:
1796_PyObject_New:PyTypeObject*:type:0:
1797
1798_PyObject_NewVar:PyObject*::+1:
1799_PyObject_NewVar:PyTypeObject*:type:0:
1800_PyObject_NewVar:int:size::
1801
1802_PyString_Resize:int:::
1803_PyString_Resize:PyObject**:string:+1:
1804_PyString_Resize:int:newsize::
1805
1806_PyTuple_Resize:int:::
1807_PyTuple_Resize:PyTupleObject**:p:+1:
1808_PyTuple_Resize:int:new::
1809
1810_Py_c_diff:Py_complex:::
1811_Py_c_diff:Py_complex:left::
1812_Py_c_diff:Py_complex:right::
1813
1814_Py_c_neg:Py_complex:::
1815_Py_c_neg:Py_complex:complex::
1816
1817_Py_c_pow:Py_complex:::
1818_Py_c_pow:Py_complex:num::
1819_Py_c_pow:Py_complex:exp::
1820
1821_Py_c_prod:Py_complex:::
1822_Py_c_prod:Py_complex:left::
1823_Py_c_prod:Py_complex:right::
1824
1825_Py_c_quot:Py_complex:::
1826_Py_c_quot:Py_complex:dividend::
1827_Py_c_quot:Py_complex:divisor::
1828
1829_Py_c_sum:Py_complex:::
1830_Py_c_sum:Py_complex:left::
1831_Py_c_sum:Py_complex:right::