blob: c7d7bd140af2942b18d881a84004d6e71f562446 [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
Petri Lehtinence770372011-10-23 21:03:33 +0300379PyException_GetTraceback:PyObject*::+1:
380
Georg Brandl116aa622007-08-15 14:28:22 +0000381PyFile_AsFile:FILE*:::
382PyFile_AsFile:PyFileObject*:p:0:
383
384PyFile_Check:int:::
385PyFile_Check:PyObject*:p:0:
386
387PyFile_FromFile:PyObject*::+1:
388PyFile_FromFile:FILE*:fp::
389PyFile_FromFile:char*:name::
390PyFile_FromFile:char*:mode::
391PyFile_FromFile:int(*:close)::
392
Guido van Rossumce3a72a2007-10-19 23:16:50 +0000393PyFile_FromFileEx:PyObject*::+1:
394PyFile_FromFileEx:FILE*:fp::
395PyFile_FromFileEx:char*:name::
396PyFile_FromFileEx:char*:mode::
397PyFile_FromFileEx:int(*:close)::
398PyFile_FromFileEx:int:buffering::
399PyFile_FromFileEx:char*:encoding::
400PyFile_FromFileEx:char*:newline::
401
Georg Brandl116aa622007-08-15 14:28:22 +0000402PyFile_FromString:PyObject*::+1:
403PyFile_FromString:char*:name::
404PyFile_FromString:char*:mode::
405
406PyFile_GetLine:PyObject*::+1:
407PyFile_GetLine:PyObject*:p::
408PyFile_GetLine:int:n::
409
410PyFile_Name:PyObject*::0:
411PyFile_Name:PyObject*:p:0:
412
413PyFile_SetBufSize:void:::
414PyFile_SetBufSize:PyFileObject*:p:0:
415PyFile_SetBufSize:int:n::
416
417PyFile_SoftSpace:int:::
418PyFile_SoftSpace:PyFileObject*:p:0:
419PyFile_SoftSpace:int:newflag::
420
421PyFile_WriteObject:int:::
422PyFile_WriteObject:PyObject*:obj:0:
423PyFile_WriteObject:PyFileObject*:p:0:
424PyFile_WriteObject:int:flags::
425
426PyFile_WriteString:int:::
427PyFile_WriteString:const char*:s::
428PyFile_WriteString:PyFileObject*:p:0:
429PyFile_WriteString:int:flags::
430
431PyFloat_AS_DOUBLE:double:::
432PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
433
434PyFloat_AsDouble:double:::
435PyFloat_AsDouble:PyObject*:pyfloat:0:
436
437PyFloat_Check:int:::
438PyFloat_Check:PyObject*:p:0:
439
440PyFloat_FromDouble:PyObject*::+1:
441PyFloat_FromDouble:double:v::
442
443PyFloat_FromString:PyObject*::+1:
444PyFloat_FromString:PyObject*:str:0:
445
446PyFrozenSet_New:PyObject*::+1:
447PyFrozenSet_New:PyObject*:iterable:0:
448
449PyFunction_GetClosure:PyObject*::0:
450PyFunction_GetClosure:PyObject*:op:0:
451
452PyFunction_GetCode:PyObject*::0:
453PyFunction_GetCode:PyObject*:op:0:
454
455PyFunction_GetDefaults:PyObject*::0:
456PyFunction_GetDefaults:PyObject*:op:0:
457
458PyFunction_GetGlobals:PyObject*::0:
459PyFunction_GetGlobals:PyObject*:op:0:
460
461PyFunction_GetModule:PyObject*::0:
462PyFunction_GetModule:PyObject*:op:0:
463
464PyFunction_New:PyObject*::+1:
465PyFunction_New:PyObject*:code:+1:
466PyFunction_New:PyObject*:globals:+1:
467
468PyFunction_SetClosure:int:::
469PyFunction_SetClosure:PyObject*:op:0:
470PyFunction_SetClosure:PyObject*:closure:+1:
471
472PyFunction_SetDefaults:int:::
473PyFunction_SetDefaults:PyObject*:op:0:
474PyFunction_SetDefaults:PyObject*:defaults:+1:
475
476PyGen_New:PyObject*::+1:
477PyGen_New:PyFrameObject*:frame:0:
478
479Py_InitModule:PyObject*::0:
480Py_InitModule:char*:name::
481Py_InitModule:PyMethodDef[]:methods::
482
483Py_InitModule3:PyObject*::0:
484Py_InitModule3:char*:name::
485Py_InitModule3:PyMethodDef[]:methods::
486Py_InitModule3:char*:doc::
487
488Py_InitModule4:PyObject*::0:
489Py_InitModule4:char*:name::
490Py_InitModule4:PyMethodDef[]:methods::
491Py_InitModule4:char*:doc::
492Py_InitModule4:PyObject*:self::
493Py_InitModule4:int:apiver::usually provided by Py_InitModule or Py_InitModule3
494
495PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
496PyImport_AddModule:char*:name::
497
498PyImport_Cleanup:void:::
499
500PyImport_ExecCodeModule:PyObject*::+1:
501PyImport_ExecCodeModule:char*:name::
502PyImport_ExecCodeModule:PyObject*:co:0:
503
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000504PyImport_ExecCodeModuleEx:PyObject*::+1:
505PyImport_ExecCodeModuleEx:char*:name::
506PyImport_ExecCodeModuleEx:PyObject*:co:0:
507PyImport_ExecCodeModuleEx:char*:pathname::
508
Georg Brandl116aa622007-08-15 14:28:22 +0000509PyImport_GetMagicNumber:long:::
510
511PyImport_GetModuleDict:PyObject*::0:
512
513PyImport_Import:PyObject*::+1:
514PyImport_Import:PyObject*:name:0:
515
516PyImport_ImportFrozenModule:int:::
517PyImport_ImportFrozenModule:char*:::
518
519PyImport_ImportModule:PyObject*::+1:
520PyImport_ImportModule:char*:name::
521
522PyImport_ImportModuleEx:PyObject*::+1:
523PyImport_ImportModuleEx:char*:name::
524PyImport_ImportModuleEx:PyObject*:globals:0:???
525PyImport_ImportModuleEx:PyObject*:locals:0:???
526PyImport_ImportModuleEx:PyObject*:fromlist:0:???
527
Benjamin Peterson08bf91c2010-04-11 16:12:57 +0000528PyImport_ImportModuleLevel:PyObject*::+1:
529PyImport_ImportModuleLevel:char*:name::
530PyImport_ImportModuleLevel:PyObject*:globals:0:???
531PyImport_ImportModuleLevel:PyObject*:locals:0:???
532PyImport_ImportModuleLevel:PyObject*:fromlist:0:???
533PyImport_ImportModuleLevel:int:level::
534
Georg Brandl116aa622007-08-15 14:28:22 +0000535PyImport_ReloadModule:PyObject*::+1:
536PyImport_ReloadModule:PyObject*:m:0:
537
538PyInstance_New:PyObject*::+1:
539PyInstance_New:PyObject*:klass:+1:
540PyInstance_New:PyObject*:arg:0:
541PyInstance_New:PyObject*:kw:0:
542
543PyInstance_NewRaw:PyObject*::+1:
544PyInstance_NewRaw:PyObject*:klass:+1:
545PyInstance_NewRaw:PyObject*:dict:+1:
546
547PyInt_AS_LONG:long:::
548PyInt_AS_LONG:PyIntObject*:io:0:
549
550PyInt_AsLong:long:::
551PyInt_AsLong:PyObject*:io:0:
552
553PyInt_Check:int:::
554PyInt_Check:PyObject*:op:0:
555
556PyInt_FromLong:PyObject*::+1:
557PyInt_FromLong:long:ival::
558
559PyInt_FromString:PyObject*::+1:
560PyInt_FromString:char*:str:0:
561PyInt_FromString:char**:pend:0:
562PyInt_FromString:int:base:0:
563
564PyInt_FromSsize_t:PyObject*::+1:
565PyInt_FromSsize_t:Py_ssize_t:ival::
566
567PyInt_GetMax:long:::
568
569PyInterpreterState_Clear:void:::
570PyInterpreterState_Clear:PyInterpreterState*:interp::
571
572PyInterpreterState_Delete:void:::
573PyInterpreterState_Delete:PyInterpreterState*:interp::
574
575PyInterpreterState_New:PyInterpreterState*:::
576
577PyIter_Check:int:o:0:
578
579PyIter_Next:PyObject*::+1:
580PyIter_Next:PyObject*:o:0:
581
582PyList_Append:int:::
583PyList_Append:PyObject*:list:0:
584PyList_Append:PyObject*:item:+1:
585
586PyList_AsTuple:PyObject*::+1:
587PyList_AsTuple:PyObject*:list:0:
588
589PyList_Check:int:::
590PyList_Check:PyObject*:p:0:
591
592PyList_GET_ITEM:PyObject*::0:
593PyList_GET_ITEM:PyObject*:list:0:
594PyList_GET_ITEM:int:i:0:
595
596PyList_GET_SIZE:int:::
597PyList_GET_SIZE:PyObject*:list:0:
598
599PyList_GetItem:PyObject*::0:
600PyList_GetItem:PyObject*:list:0:
601PyList_GetItem:int:index::
602
603PyList_GetSlice:PyObject*::+1:
604PyList_GetSlice:PyObject*:list:0:
605PyList_GetSlice:int:low::
606PyList_GetSlice:int:high::
607
608PyList_Insert:int:::
609PyList_Insert:PyObject*:list:0:
610PyList_Insert:int:index::
611PyList_Insert:PyObject*:item:+1:
612
613PyList_New:PyObject*::+1:
614PyList_New:int:len::
615
616PyList_Reverse:int:::
617PyList_Reverse:PyObject*:list:0:
618
619PyList_SET_ITEM:void:::
620PyList_SET_ITEM:PyObject*:list:0:
621PyList_SET_ITEM:int:i::
622PyList_SET_ITEM:PyObject*:o:0:
623
624PyList_SetItem:int:::
625PyList_SetItem:PyObject*:list:0:
626PyList_SetItem:int:index::
627PyList_SetItem:PyObject*:item:0:
628
629PyList_SetSlice:int:::
630PyList_SetSlice:PyObject*:list:0:
631PyList_SetSlice:int:low::
632PyList_SetSlice:int:high::
633PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
634
635PyList_Size:int:::
636PyList_Size:PyObject*:list:0:
637
638PyList_Sort:int:::
639PyList_Sort:PyObject*:list:0:
640
641PyLong_AsDouble:double:::
642PyLong_AsDouble:PyObject*:pylong:0:
643
644PyLong_AsLong:long:::
645PyLong_AsLong:PyObject*:pylong:0:
646
647PyLong_AsUnsignedLong:unsigned long:::
648PyLong_AsUnsignedLong:PyObject*:pylong:0:
649
650PyLong_Check:int:::
651PyLong_Check:PyObject*:p:0:
652
653PyLong_FromDouble:PyObject*::+1:
654PyLong_FromDouble:double:v::
655
656PyLong_FromLong:PyObject*::+1:
657PyLong_FromLong:long:v::
658
659PyLong_FromLongLong:PyObject*::+1:
660PyLong_FromLongLong:long long:v::
661
662PyLong_FromUnsignedLongLong:PyObject*::+1:
663PyLong_FromUnsignedLongLong:unsigned long long:v::
664
665PyLong_FromString:PyObject*::+1:
666PyLong_FromString:char*:str::
667PyLong_FromString:char**:pend::
668PyLong_FromString:int:base::
669
670PyLong_FromUnicode:PyObject*::+1:
671PyLong_FromUnicode:Py_UNICODE:u::
672PyLong_FromUnicode:int:length::
673PyLong_FromUnicode:int:base::
674
675PyLong_FromUnsignedLong:PyObject*::+1:
676PyLong_FromUnsignedLong:unsignedlong:v::
677
678PyLong_FromVoidPtr:PyObject*::+1:
679PyLong_FromVoidPtr:void*:p::
680
681PyMapping_Check:int:::
682PyMapping_Check:PyObject*:o:0:
683
684PyMapping_DelItem:int:::
685PyMapping_DelItem:PyObject*:o:0:
686PyMapping_DelItem:PyObject*:key:0:
687
688PyMapping_DelItemString:int:::
689PyMapping_DelItemString:PyObject*:o:0:
690PyMapping_DelItemString:char*:key::
691
692PyMapping_GetItemString:PyObject*::+1:
693PyMapping_GetItemString:PyObject*:o:0:
694PyMapping_GetItemString:char*:key::
695
696PyMapping_HasKey:int:::
697PyMapping_HasKey:PyObject*:o:0:
698PyMapping_HasKey:PyObject*:key::
699
700PyMapping_HasKeyString:int:::
701PyMapping_HasKeyString:PyObject*:o:0:
702PyMapping_HasKeyString:char*:key::
703
704PyMapping_Items:PyObject*::+1:
705PyMapping_Items:PyObject*:o:0:
706
707PyMapping_Keys:PyObject*::+1:
708PyMapping_Keys:PyObject*:o:0:
709
710PyMapping_Length:int:::
711PyMapping_Length:PyObject*:o:0:
712
713PyMapping_SetItemString:int:::
714PyMapping_SetItemString:PyObject*:o:0:
715PyMapping_SetItemString:char*:key::
716PyMapping_SetItemString:PyObject*:v:+1:
717
718PyMapping_Values:PyObject*::+1:
719PyMapping_Values:PyObject*:o:0:
720
721PyMarshal_ReadLastObjectFromFile:PyObject*::+1:
722PyMarshal_ReadLastObjectFromFile:FILE*:file::
723
724PyMarshal_ReadObjectFromFile:PyObject*::+1:
725PyMarshal_ReadObjectFromFile:FILE*:file::
726
727PyMarshal_ReadObjectFromString:PyObject*::+1:
728PyMarshal_ReadObjectFromString:char*:string::
729PyMarshal_ReadObjectFromString:int:len::
730
731PyMarshal_WriteObjectToString:PyObject*::+1:
732PyMarshal_WriteObjectToString:PyObject*:value:0:
733
734PyMethod_Class:PyObject*::0:
735PyMethod_Class:PyObject*:im:0:
736
737PyMethod_Function:PyObject*::0:
738PyMethod_Function:PyObject*:im:0:
739
740PyMethod_GET_CLASS:PyObject*::0:
741PyMethod_GET_CLASS:PyObject*:im:0:
742
743PyMethod_GET_FUNCTION:PyObject*::0:
744PyMethod_GET_FUNCTION:PyObject*:im:0:
745
746PyMethod_GET_SELF:PyObject*::0:
747PyMethod_GET_SELF:PyObject*:im:0:
748
749PyMethod_New:PyObject*::+1:
750PyMethod_New:PyObject*:func:0:
751PyMethod_New:PyObject*:self:0:
752PyMethod_New:PyObject*:class:0:
753
754PyMethod_Self:PyObject*::0:
755PyMethod_Self:PyObject*:im:0:
756
757PyModule_GetDict:PyObject*::0:
758PyModule_GetDict::PyObject* module:0:
759
760PyModule_GetFilename:char*:::
761PyModule_GetFilename:PyObject*:module:0:
762
763PyModule_GetName:char*:::
764PyModule_GetName:PyObject*:module:0:
765
766PyModule_New:PyObject*::+1:
767PyModule_New::char* name::
768
769PyNumber_Absolute:PyObject*::+1:
770PyNumber_Absolute:PyObject*:o:0:
771
772PyNumber_Add:PyObject*::+1:
773PyNumber_Add:PyObject*:o1:0:
774PyNumber_Add:PyObject*:o2:0:
775
776PyNumber_And:PyObject*::+1:
777PyNumber_And:PyObject*:o1:0:
778PyNumber_And:PyObject*:o2:0:
779
780PyNumber_Check:PyObject*:o:0:
781PyNumber_Check:int:::
782
783PyNumber_Divide:PyObject*::+1:
784PyNumber_Divide:PyObject*:o1:0:
785PyNumber_Divide:PyObject*:o2:0:
786
787PyNumber_Divmod:PyObject*::+1:
788PyNumber_Divmod:PyObject*:o1:0:
789PyNumber_Divmod:PyObject*:o2:0:
790
791PyNumber_Float:PyObject*::+1:
792PyNumber_Float:PyObject*:o:0:
793
794PyNumber_FloorDivide:PyObject*::+1:
795PyNumber_FloorDivide:PyObject*:v:0:
796PyNumber_FloorDivide:PyObject*:w:0:
797
798PyNumber_InPlaceAdd:PyObject*::+1:
799PyNumber_InPlaceAdd:PyObject*:v:0:
800PyNumber_InPlaceAdd:PyObject*:w:0:
801
802PyNumber_InPlaceAnd:PyObject*::+1:
803PyNumber_InPlaceAnd:PyObject*:v:0:
804PyNumber_InPlaceAnd:PyObject*:w:0:
805
806PyNumber_InPlaceDivide:PyObject*::+1:
807PyNumber_InPlaceDivide:PyObject*:v:0:
808PyNumber_InPlaceDivide:PyObject*:w:0:
809
810PyNumber_InPlaceFloorDivide:PyObject*::+1:
811PyNumber_InPlaceFloorDivide:PyObject*:v:0:
812PyNumber_InPlaceFloorDivide:PyObject*:w:0:
813
814PyNumber_InPlaceLshift:PyObject*::+1:
815PyNumber_InPlaceLshift:PyObject*:v:0:
816PyNumber_InPlaceLshift:PyObject*:w:0:
817
818PyNumber_InPlaceMultiply:PyObject*::+1:
819PyNumber_InPlaceMultiply:PyObject*:v:0:
820PyNumber_InPlaceMultiply:PyObject*:w:0:
821
822PyNumber_InPlaceOr:PyObject*::+1:
823PyNumber_InPlaceOr:PyObject*:v:0:
824PyNumber_InPlaceOr:PyObject*:w:0:
825
826PyNumber_InPlacePower:PyObject*::+1:
827PyNumber_InPlacePower:PyObject*:v:0:
828PyNumber_InPlacePower:PyObject*:w:0:
829PyNumber_InPlacePower:PyObject*:z:0:
830
831PyNumber_InPlaceRemainder:PyObject*::+1:
832PyNumber_InPlaceRemainder:PyObject*:v:0:
833PyNumber_InPlaceRemainder:PyObject*:w:0:
834
835PyNumber_InPlaceRshift:PyObject*::+1:
836PyNumber_InPlaceRshift:PyObject*:v:0:
837PyNumber_InPlaceRshift:PyObject*:w:0:
838
839PyNumber_InPlaceSubtract:PyObject*::+1:
840PyNumber_InPlaceSubtract:PyObject*:v:0:
841PyNumber_InPlaceSubtract:PyObject*:w:0:
842
843PyNumber_InPlaceTrueDivide:PyObject*::+1:
844PyNumber_InPlaceTrueDivide:PyObject*:v:0:
845PyNumber_InPlaceTrueDivide:PyObject*:w:0:
846
847PyNumber_InPlaceXor:PyObject*::+1:
848PyNumber_InPlaceXor:PyObject*:v:0:
849PyNumber_InPlaceXor:PyObject*:w:0:
850
Georg Brandl116aa622007-08-15 14:28:22 +0000851PyNumber_Invert:PyObject*::+1:
852PyNumber_Invert:PyObject*:o:0:
853
854PyNumber_Long:PyObject*::+1:
855PyNumber_Long:PyObject*:o:0:
856
857PyNumber_Lshift:PyObject*::+1:
858PyNumber_Lshift:PyObject*:o1:0:
859PyNumber_Lshift:PyObject*:o2:0:
860
861PyNumber_Multiply:PyObject*::+1:
862PyNumber_Multiply:PyObject*:o1:0:
863PyNumber_Multiply:PyObject*:o2:0:
864
865PyNumber_Negative:PyObject*::+1:
866PyNumber_Negative:PyObject*:o:0:
867
868PyNumber_Or:PyObject*::+1:
869PyNumber_Or:PyObject*:o1:0:
870PyNumber_Or:PyObject*:o2:0:
871
872PyNumber_Positive:PyObject*::+1:
873PyNumber_Positive:PyObject*:o:0:
874
875PyNumber_Power:PyObject*::+1:
876PyNumber_Power:PyObject*:o1:0:
877PyNumber_Power:PyObject*:o2:0:
878PyNumber_Power:PyObject*:o3:0:
879
880PyNumber_Remainder:PyObject*::+1:
881PyNumber_Remainder:PyObject*:o1:0:
882PyNumber_Remainder:PyObject*:o2:0:
883
884PyNumber_Rshift:PyObject*::+1:
885PyNumber_Rshift:PyObject*:o1:0:
886PyNumber_Rshift:PyObject*:o2:0:
887
888PyNumber_Subtract:PyObject*::+1:
889PyNumber_Subtract:PyObject*:o1:0:
890PyNumber_Subtract:PyObject*:o2:0:
891
892PyNumber_TrueDivide:PyObject*::+1:
893PyNumber_TrueDivide:PyObject*:v:0:
894PyNumber_TrueDivide:PyObject*:w:0:
895
896PyNumber_Xor:PyObject*::+1:
897PyNumber_Xor:PyObject*:o1:0:
898PyNumber_Xor:PyObject*:o2:0:
899
Georg Brandl116aa622007-08-15 14:28:22 +0000900PyObject_AsFileDescriptor:int:::
901PyObject_AsFileDescriptor:PyObject*:o:0:
902
903PyObject_Call:PyObject*::+1:
904PyObject_Call:PyObject*:callable_object:0:
905PyObject_Call:PyObject*:args:0:
906PyObject_Call:PyObject*:kw:0:
907
908PyObject_CallFunction:PyObject*::+1:
909PyObject_CallFunction:PyObject*:callable_object:0:
910PyObject_CallFunction:char*:format::
911PyObject_CallFunction::...::
912
913PyObject_CallFunctionObjArgs:PyObject*::+1:
914PyObject_CallFunctionObjArgs:PyObject*:callable:0:
915PyObject_CallFunctionObjArgs::...::
916
917PyObject_CallMethod:PyObject*::+1:
918PyObject_CallMethod:PyObject*:o:0:
919PyObject_CallMethod:char*:m::
920PyObject_CallMethod:char*:format::
921PyObject_CallMethod::...::
922
923PyObject_CallMethodObjArgs:PyObject*::+1:
924PyObject_CallMethodObjArgs:PyObject*:o:0:
925PyObject_CallMethodObjArgs:char*:name::
926PyObject_CallMethodObjArgs::...::
927
928PyObject_CallObject:PyObject*::+1:
929PyObject_CallObject:PyObject*:callable_object:0:
930PyObject_CallObject:PyObject*:args:0:
931
932PyObject_Cmp:int:::
933PyObject_Cmp:PyObject*:o1:0:
934PyObject_Cmp:PyObject*:o2:0:
935PyObject_Cmp:int*:result::
936
937PyObject_Compare:int:::
938PyObject_Compare:PyObject*:o1:0:
939PyObject_Compare:PyObject*:o2:0:
940
941PyObject_DelAttr:int:::
942PyObject_DelAttr:PyObject*:o:0:
943PyObject_DelAttr:PyObject*:attr_name:0:
944
945PyObject_DelAttrString:int:::
946PyObject_DelAttrString:PyObject*:o:0:
947PyObject_DelAttrString:char*:attr_name::
948
949PyObject_DelItem:int:::
950PyObject_DelItem:PyObject*:o:0:
951PyObject_DelItem:PyObject*:key:0:
952
953PyObject_Dir:PyObject*::+1:
954PyObject_Dir:PyObject*:o:0:
955
956PyObject_GetAttr:PyObject*::+1:
957PyObject_GetAttr:PyObject*:o:0:
958PyObject_GetAttr:PyObject*:attr_name:0:
959
960PyObject_GetAttrString:PyObject*::+1:
961PyObject_GetAttrString:PyObject*:o:0:
962PyObject_GetAttrString:char*:attr_name::
963
964PyObject_GetItem:PyObject*::+1:
965PyObject_GetItem:PyObject*:o:0:
966PyObject_GetItem:PyObject*:key:0:
967
968PyObject_GetIter:PyObject*::+1:
969PyObject_GetIter:PyObject*:o:0:
970
971PyObject_HasAttr:int:::
972PyObject_HasAttr:PyObject*:o:0:
973PyObject_HasAttr:PyObject*:attr_name:0:
974
975PyObject_HasAttrString:int:::
976PyObject_HasAttrString:PyObject*:o:0:
977PyObject_HasAttrString:char*:attr_name:0:
978
979PyObject_Hash:int:::
980PyObject_Hash:PyObject*:o:0:
981
982PyObject_IsTrue:int:::
983PyObject_IsTrue:PyObject*:o:0:
984
985PyObject_Init:PyObject*::0:
986PyObject_Init:PyObject*:op:0:
987
988PyObject_InitVar:PyVarObject*::0:
989PyObject_InitVar:PyVarObject*:op:0:
990
991PyObject_Length:int:::
992PyObject_Length:PyObject*:o:0:
993
994PyObject_NEW:PyObject*::+1:
995
996PyObject_New:PyObject*::+1:
997
998PyObject_NEW_VAR:PyObject*::+1:
999
1000PyObject_NewVar:PyObject*::+1:
1001
1002PyObject_Print:int:::
1003PyObject_Print:PyObject*:o:0:
1004PyObject_Print:FILE*:fp::
1005PyObject_Print:int:flags::
1006
1007PyObject_Repr:PyObject*::+1:
1008PyObject_Repr:PyObject*:o:0:
1009
1010PyObject_RichCompare:PyObject*::+1:
1011PyObject_RichCompare:PyObject*:o1:0:
1012PyObject_RichCompare:PyObject*:o2:0:
1013PyObject_RichCompare:int:opid::
1014
1015PyObject_RichCompareBool:int:::
1016PyObject_RichCompareBool:PyObject*:o1:0:
1017PyObject_RichCompareBool:PyObject*:o2:0:
1018PyObject_RichCompareBool:int:opid::
1019
1020PyObject_SetAttr:int:::
1021PyObject_SetAttr:PyObject*:o:0:
1022PyObject_SetAttr:PyObject*:attr_name:0:
1023PyObject_SetAttr:PyObject*:v:+1:
1024
1025PyObject_SetAttrString:int:::
1026PyObject_SetAttrString:PyObject*:o:0:
1027PyObject_SetAttrString:char*:attr_name::
1028PyObject_SetAttrString:PyObject*:v:+1:
1029
1030PyObject_SetItem:int:::
1031PyObject_SetItem:PyObject*:o:0:
1032PyObject_SetItem:PyObject*:key:0:
1033PyObject_SetItem:PyObject*:v:+1:
1034
1035PyObject_Str:PyObject*::+1:
1036PyObject_Str:PyObject*:o:0:
1037
1038PyObject_Type:PyObject*::+1:
1039PyObject_Type:PyObject*:o:0:
1040
1041PyObject_Unicode:PyObject*::+1:
1042PyObject_Unicode:PyObject*:o:0:
1043
1044PyParser_SimpleParseFile:struct _node*:::
1045PyParser_SimpleParseFile:FILE*:fp::
1046PyParser_SimpleParseFile:char*:filename::
1047PyParser_SimpleParseFile:int:start::
1048
1049PyParser_SimpleParseString:struct _node*:::
1050PyParser_SimpleParseString:char*:str::
1051PyParser_SimpleParseString:int:start::
1052
1053PyRun_AnyFile:int:::
1054PyRun_AnyFile:FILE*:fp::
1055PyRun_AnyFile:char*:filename::
1056
1057PyRun_File:PyObject*::+1:??? -- same as eval_code2()
1058PyRun_File:FILE*:fp::
1059PyRun_File:char*:filename::
1060PyRun_File:int:start::
1061PyRun_File:PyObject*:globals:0:
1062PyRun_File:PyObject*:locals:0:
1063
1064PyRun_FileEx:PyObject*::+1:??? -- same as eval_code2()
1065PyRun_FileEx:FILE*:fp::
1066PyRun_FileEx:char*:filename::
1067PyRun_FileEx:int:start::
1068PyRun_FileEx:PyObject*:globals:0:
1069PyRun_FileEx:PyObject*:locals:0:
1070PyRun_FileEx:int:closeit::
1071
1072PyRun_FileFlags:PyObject*::+1:??? -- same as eval_code2()
1073PyRun_FileFlags:FILE*:fp::
1074PyRun_FileFlags:char*:filename::
1075PyRun_FileFlags:int:start::
1076PyRun_FileFlags:PyObject*:globals:0:
1077PyRun_FileFlags:PyObject*:locals:0:
1078PyRun_FileFlags:PyCompilerFlags*:flags::
1079
1080PyRun_FileExFlags:PyObject*::+1:??? -- same as eval_code2()
1081PyRun_FileExFlags:FILE*:fp::
1082PyRun_FileExFlags:char*:filename::
1083PyRun_FileExFlags:int:start::
1084PyRun_FileExFlags:PyObject*:globals:0:
1085PyRun_FileExFlags:PyObject*:locals:0:
1086PyRun_FileExFlags:int:closeit::
1087PyRun_FileExFlags:PyCompilerFlags*:flags::
1088
1089PyRun_InteractiveLoop:int:::
1090PyRun_InteractiveLoop:FILE*:fp::
1091PyRun_InteractiveLoop:char*:filename::
1092
1093PyRun_InteractiveOne:int:::
1094PyRun_InteractiveOne:FILE*:fp::
1095PyRun_InteractiveOne:char*:filename::
1096
1097PyRun_SimpleFile:int:::
1098PyRun_SimpleFile:FILE*:fp::
1099PyRun_SimpleFile:char*:filename::
1100
1101PyRun_SimpleString:int:::
1102PyRun_SimpleString:char*:command::
1103
1104PyRun_String:PyObject*::+1:??? -- same as eval_code2()
1105PyRun_String:char*:str::
1106PyRun_String:int:start::
1107PyRun_String:PyObject*:globals:0:
1108PyRun_String:PyObject*:locals:0:
1109
1110PyRun_StringFlags:PyObject*::+1:??? -- same as eval_code2()
1111PyRun_StringFlags:char*:str::
1112PyRun_StringFlags:int:start::
1113PyRun_StringFlags:PyObject*:globals:0:
1114PyRun_StringFlags:PyObject*:locals:0:
1115PyRun_StringFlags:PyCompilerFlags*:flags::
1116
1117PySeqIter_New:PyObject*::+1:
1118PySeqIter_New:PyObject*:seq::
1119
1120PySequence_Check:int:::
1121PySequence_Check:PyObject*:o:0:
1122
1123PySequence_Concat:PyObject*::+1:
1124PySequence_Concat:PyObject*:o1:0:
1125PySequence_Concat:PyObject*:o2:0:
1126
1127PySequence_Count:int:::
1128PySequence_Count:PyObject*:o:0:
1129PySequence_Count:PyObject*:value:0:
1130
1131PySequence_DelItem:int:::
1132PySequence_DelItem:PyObject*:o:0:
1133PySequence_DelItem:int:i::
1134
1135PySequence_DelSlice:int:::
1136PySequence_DelSlice:PyObject*:o:0:
1137PySequence_DelSlice:int:i1::
1138PySequence_DelSlice:int:i2::
1139
1140PySequence_Fast:PyObject*::+1:
1141PySequence_Fast:PyObject*:v:0:
1142PySequence_Fast:const char*:m::
1143
1144PySequence_Fast_GET_ITEM:PyObject*::0:
1145PySequence_Fast_GET_ITEM:PyObject*:o:0:
1146PySequence_Fast_GET_ITEM:int:i::
1147
1148PySequence_GetItem:PyObject*::+1:
1149PySequence_GetItem:PyObject*:o:0:
1150PySequence_GetItem:int:i::
1151
1152PySequence_GetSlice:PyObject*::+1:
1153PySequence_GetSlice:PyObject*:o:0:
1154PySequence_GetSlice:int:i1::
1155PySequence_GetSlice:int:i2::
1156
1157PySequence_In:int:::
1158PySequence_In:PyObject*:o:0:
1159PySequence_In:PyObject*:value:0:
1160
1161PySequence_Index:int:::
1162PySequence_Index:PyObject*:o:0:
1163PySequence_Index:PyObject*:value:0:
1164
1165PySequence_InPlaceConcat:PyObject*::+1:
1166PySequence_InPlaceConcat:PyObject*:s:0:
1167PySequence_InPlaceConcat:PyObject*:o:0:
1168
1169PySequence_InPlaceRepeat:PyObject*::+1:
1170PySequence_InPlaceRepeat:PyObject*:s:0:
1171PySequence_InPlaceRepeat:PyObject*:o:0:
1172
1173PySequence_ITEM:PyObject*::+1:
1174PySequence_ITEM:PyObject*:o:0:
1175PySequence_ITEM:int:i::
1176
1177PySequence_Repeat:PyObject*::+1:
1178PySequence_Repeat:PyObject*:o:0:
1179PySequence_Repeat:int:count::
1180
1181PySequence_SetItem:int:::
1182PySequence_SetItem:PyObject*:o:0:
1183PySequence_SetItem:int:i::
1184PySequence_SetItem:PyObject*:v:+1:
1185
1186PySequence_SetSlice:int:::
1187PySequence_SetSlice:PyObject*:o:0:
1188PySequence_SetSlice:int:i1::
1189PySequence_SetSlice:int:i2::
1190PySequence_SetSlice:PyObject*:v:+1:
1191
1192PySequence_List:PyObject*::+1:
1193PySequence_List:PyObject*:o:0:
1194
1195PySequence_Tuple:PyObject*::+1:
1196PySequence_Tuple:PyObject*:o:0:
1197
1198PySet_Append:int:::
1199PySet_Append:PyObject*:set:0:
1200PySet_Append:PyObject*:key:+1:
1201
1202PySet_Contains:int:::
1203PySet_Contains:PyObject*:anyset:0:
1204PySet_Contains:PyObject*:key:0:
1205
1206PySet_Discard:int:::
1207PySet_Discard:PyObject*:set:0:
1208PySet_Discard:PyObject*:key:-1:no effect if key not found
1209
1210PySet_New:PyObject*::+1:
1211PySet_New:PyObject*:iterable:0:
1212
1213PySet_Pop:PyObject*::+1:or returns NULL and raises KeyError if set is empty
1214PySet_Pop:PyObject*:set:0:
1215
1216PySet_Size:int:::
1217PySet_Size:PyObject*:anyset:0:
1218
1219PySlice_Check:int:::
1220PySlice_Check:PyObject*:ob:0:
1221
1222PySlice_New:PyObject*::+1:
1223PySlice_New:PyObject*:start:0:
1224PySlice_New:PyObject*:stop:0:
1225PySlice_New:PyObject*:step:0:
1226
1227PyString_AS_STRING:char*:::
1228PyString_AS_STRING:PyObject*:string:0:
1229
1230PyString_AsDecodedObject:PyObject*::+1:
1231PyString_AsDecodedObject:PyObject*:str:0:
1232PyString_AsDecodedObject:const char*:encoding::
1233PyString_AsDecodedObject:const char*:errors::
1234
1235PyString_AsEncodedObject:PyObject*::+1:
1236PyString_AsEncodedObject:PyObject*:str:0:
1237PyString_AsEncodedObject:const char*:encoding::
1238PyString_AsEncodedObject:const char*:errors::
1239
1240PyString_AsString:char*:::
1241PyString_AsString:PyObject*:string:0:
1242
1243PyString_AsStringAndSize:int:::
1244PyString_AsStringAndSize:PyObject*:obj:0:
1245PyString_AsStringAndSize:char**:buffer::
1246PyString_AsStringAndSize:int*:length::
1247
1248PyString_Check:int:::
1249PyString_Check:PyObject*:o:0:
1250
1251PyString_Concat:void:::
1252PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
1253PyString_Concat:PyObject*:newpart:0:
1254
1255PyString_ConcatAndDel:void:::
1256PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
1257PyString_ConcatAndDel:PyObject*:newpart:-1:
1258
1259PyString_Format:PyObject*::+1:
1260PyString_Format:PyObject*:format:0:
1261PyString_Format:PyObject*:args:0:
1262
1263PyString_FromString:PyObject*::+1:
1264PyString_FromString:const char*:v::
1265
1266PyString_FromStringAndSize:PyObject*::+1:
1267PyString_FromStringAndSize:const char*:v::
1268PyString_FromStringAndSize:int:len::
1269
1270PyString_FromFormat:PyObject*::+1:
1271PyString_FromFormat:const char*:format::
1272PyString_FromFormat::...::
1273
1274PyString_FromFormatV:PyObject*::+1:
1275PyString_FromFormatV:const char*:format::
1276PyString_FromFormatV:va_list:vargs::
1277
1278PyString_GET_SIZE:int:::
1279PyString_GET_SIZE:PyObject*:string:0:
1280
1281PyString_InternFromString:PyObject*::+1:
1282PyString_InternFromString:const char*:v::
1283
1284PyString_InternInPlace:void:::
1285PyString_InternInPlace:PyObject**:string:+1:???
1286
1287PyString_Size:int:::
1288PyString_Size:PyObject*:string:0:
1289
1290PyString_Decode:PyObject*::+1:
1291PyString_Decode:const char*:s::
1292PyString_Decode:int:size::
1293PyString_Decode:const char*:encoding::
1294PyString_Decode:const char*:errors::
1295
1296PyString_Encode:PyObject*::+1:
1297PyString_Encode:const char*:s::
1298PyString_Encode:int:size::
1299PyString_Encode:const char*:encoding::
1300PyString_Encode:const char*:errors::
1301
1302PyString_AsEncodedString:PyObject*::+1:
1303PyString_AsEncodedString:PyObject*:str::
1304PyString_AsEncodedString:const char*:encoding::
1305PyString_AsEncodedString:const char*:errors::
1306
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001307PySys_AddWarnOption:void:::
1308PySys_AddWarnOption:char*:s::
1309
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001310PySys_AddXOption:void:::
1311PySys_AddXOption:const wchar_t*:s::
1312
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001313PySys_GetFile:FILE*:::
1314PySys_GetFile:char*:name::
1315PySys_GetFile:FILE*:def::
1316
1317PySys_GetObject:PyObject*::0:
1318PySys_GetObject:char*:name::
1319
Antoine Pitrou9583cac2010-10-21 13:42:28 +00001320PySys_GetXOptions:PyObject*::0:
1321
Georg Brandl116aa622007-08-15 14:28:22 +00001322PySys_SetArgv:int:::
1323PySys_SetArgv:int:argc::
1324PySys_SetArgv:char**:argv::
1325
Christian Heimescbf3b5c2007-12-03 21:02:03 +00001326PySys_SetObject:int:::
1327PySys_SetObject:char*:name::
1328PySys_SetObject:PyObject*:v:+1:
1329
1330PySys_ResetWarnOptions:void:::
1331
1332PySys_WriteStdout:void:::
1333PySys_WriteStdout:char*:format::
1334
1335PySys_WriteStderr:void:::
1336PySys_WriteStderr:char*:format::
1337
Georg Brandl116aa622007-08-15 14:28:22 +00001338PyThreadState_Clear:void:::
1339PyThreadState_Clear:PyThreadState*:tstate::
1340
1341PyThreadState_Delete:void:::
1342PyThreadState_Delete:PyThreadState*:tstate::
1343
1344PyThreadState_Get:PyThreadState*:::
1345
1346PyThreadState_GetDict:PyObject*::0:
1347
1348PyThreadState_New:PyThreadState*:::
1349PyThreadState_New:PyInterpreterState*:interp::
1350
1351PyThreadState_Swap:PyThreadState*:::
1352PyThreadState_Swap:PyThreadState*:tstate::
1353
1354PyTime_FromTime:PyObject*::+1:
1355PyTime_FromTime:int:hour::
1356PyTime_FromTime:int:minute::
1357PyTime_FromTime:int:second::
1358PyTime_FromTime:int:usecond::
1359
1360PyTuple_Check:int:::
1361PyTuple_Check:PyObject*:p:0:
1362
1363PyTuple_GET_ITEM:PyObject*::0:
1364PyTuple_GET_ITEM:PyTupleObject*:p:0:
1365PyTuple_GET_ITEM:int:pos::
1366
1367PyTuple_GetItem:PyObject*::0:
1368PyTuple_GetItem:PyTupleObject*:p:0:
1369PyTuple_GetItem:int:pos::
1370
1371PyTuple_GetSlice:PyObject*::+1:
1372PyTuple_GetSlice:PyTupleObject*:p:0:
1373PyTuple_GetSlice:int:low::
1374PyTuple_GetSlice:int:high::
1375
1376PyTuple_New:PyObject*::+1:
1377PyTuple_New:int:len::
1378
1379PyTuple_Pack:PyObject*::+1:
1380PyTuple_Pack:int:len::
1381PyTuple_Pack:PyObject*:...:0:
1382
1383PyTuple_SET_ITEM:void:::
1384PyTuple_SET_ITEM:PyTupleObject*:p:0:
1385PyTuple_SET_ITEM:int:pos::
1386PyTuple_SET_ITEM:PyObject*:o:0:
1387
1388PyTuple_SetItem:int:::
1389PyTuple_SetItem:PyTupleObject*:p:0:
1390PyTuple_SetItem:int:pos::
1391PyTuple_SetItem:PyObject*:o:0:
1392
1393PyTuple_Size:int:::
1394PyTuple_Size:PyTupleObject*:p:0:
1395
1396PyType_GenericAlloc:PyObject*::+1:
1397PyType_GenericAlloc:PyObject*:type:0:
1398PyType_GenericAlloc:int:nitems:0:
1399
1400PyType_GenericNew:PyObject*::+1:
1401PyType_GenericNew:PyObject*:type:0:
1402PyType_GenericNew:PyObject*:args:0:
1403PyType_GenericNew:PyObject*:kwds:0:
1404
1405PyUnicode_Check:int:::
1406PyUnicode_Check:PyObject*:o:0:
1407
1408PyUnicode_GET_SIZE:int:::
1409PyUnicode_GET_SIZE:PyObject*:o:0:
1410
1411PyUnicode_GET_DATA_SIZE:int:::
1412PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1413
1414PyUnicode_AS_UNICODE:Py_UNICODE*:::
1415PyUnicode_AS_UNICODE:PyObject*:o:0:
1416
1417PyUnicode_AS_DATA:const char*:::
1418PyUnicode_AS_DATA:PyObject*:o:0:
1419
1420Py_UNICODE_ISSPACE:int:::
1421Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1422
1423Py_UNICODE_ISLOWER:int:::
1424Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1425
1426Py_UNICODE_ISUPPER:int:::
1427Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1428
1429Py_UNICODE_ISTITLE:int:::
1430Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1431
1432Py_UNICODE_ISLINEBREAK:int:::
1433Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1434
1435Py_UNICODE_ISDECIMAL:int:::
1436Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1437
1438Py_UNICODE_ISDIGIT:int:::
1439Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1440
1441Py_UNICODE_ISNUMERIC:int:::
1442Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1443
1444Py_UNICODE_TOLOWER:Py_UNICODE:::
1445Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1446
1447Py_UNICODE_TOUPPER:Py_UNICODE:::
1448Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1449
1450Py_UNICODE_TOTITLE:Py_UNICODE:::
1451Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1452
1453Py_UNICODE_TODECIMAL:int:::
1454Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1455
1456Py_UNICODE_TODIGIT:int:::
1457Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1458
1459Py_UNICODE_TONUMERIC:double:::
1460Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1461
1462PyUnicode_FromUnicode:PyObject*::+1:
1463PyUnicode_FromUnicode:const Py_UNICODE*:u::
1464PyUnicode_FromUnicode:int:size::
1465
1466PyUnicode_AsUnicode:Py_UNICODE*:::
1467PyUnicode_AsUnicode:PyObject :*unicode:0:
1468
1469PyUnicode_GetSize:int:::
1470PyUnicode_GetSize:PyObject :*unicode:0:
1471
1472PyUnicode_FromObject:PyObject*::+1:
1473PyUnicode_FromObject:PyObject*:*obj:0:
1474
1475PyUnicode_FromEncodedObject:PyObject*::+1:
1476PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1477PyUnicode_FromEncodedObject:const char*:encoding::
1478PyUnicode_FromEncodedObject:const char*:errors::
1479
1480PyUnicode_FromWideChar:PyObject*::+1:
1481PyUnicode_FromWideChar:const wchar_t*:w::
1482PyUnicode_FromWideChar:int:size::
1483
1484PyUnicode_AsWideChar:int:::
1485PyUnicode_AsWideChar:PyObject*:*unicode:0:
1486PyUnicode_AsWideChar:wchar_t*:w::
1487PyUnicode_AsWideChar:int:size::
1488
1489PyUnicode_Decode:PyObject*::+1:
1490PyUnicode_Decode:const char*:s::
1491PyUnicode_Decode:int:size::
1492PyUnicode_Decode:const char*:encoding::
1493PyUnicode_Decode:const char*:errors::
1494
1495PyUnicode_DecodeUTF16Stateful:PyObject*::+1:
1496PyUnicode_DecodeUTF16Stateful:const char*:s::
1497PyUnicode_DecodeUTF16Stateful:int:size::
1498PyUnicode_DecodeUTF16Stateful:const char*:errors::
1499PyUnicode_DecodeUTF16Stateful:int*:byteorder::
1500PyUnicode_DecodeUTF16Stateful:int*:consumed::
1501
1502PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
1503PyUnicode_DecodeUTF8Stateful:const char*:s::
1504PyUnicode_DecodeUTF8Stateful:int:size::
1505PyUnicode_DecodeUTF8Stateful:const char*:errors::
1506PyUnicode_DecodeUTF8Stateful:int*:consumed::
1507
1508PyUnicode_Encode:PyObject*::+1:
1509PyUnicode_Encode:const Py_UNICODE*:s::
1510PyUnicode_Encode:int:size::
1511PyUnicode_Encode:const char*:encoding::
1512PyUnicode_Encode:const char*:errors::
1513
1514PyUnicode_AsEncodedString:PyObject*::+1:
1515PyUnicode_AsEncodedString:PyObject*:unicode::
1516PyUnicode_AsEncodedString:const char*:encoding::
1517PyUnicode_AsEncodedString:const char*:errors::
1518
1519PyUnicode_DecodeUTF8:PyObject*::+1:
1520PyUnicode_DecodeUTF8:const char*:s::
1521PyUnicode_DecodeUTF8:int:size::
1522PyUnicode_DecodeUTF8:const char*:errors::
1523
1524PyUnicode_EncodeUTF8:PyObject*::+1:
1525PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
1526PyUnicode_EncodeUTF8:int:size::
1527PyUnicode_EncodeUTF8:const char*:errors::
1528
1529PyUnicode_AsUTF8String:PyObject*::+1:
1530PyUnicode_AsUTF8String:PyObject*:unicode::
1531
1532PyUnicode_DecodeUTF16:PyObject*::+1:
1533PyUnicode_DecodeUTF16:const char*:s::
1534PyUnicode_DecodeUTF16:int:size::
1535PyUnicode_DecodeUTF16:const char*:errors::
1536PyUnicode_DecodeUTF16:int*:byteorder::
1537
1538PyUnicode_EncodeUTF16:PyObject*::+1:
1539PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
1540PyUnicode_EncodeUTF16:int:size::
1541PyUnicode_EncodeUTF16:const char*:errors::
1542PyUnicode_EncodeUTF16:int:byteorder::
1543
1544PyUnicode_AsUTF16String:PyObject*::+1:
1545PyUnicode_AsUTF16String:PyObject*:unicode::
1546
1547PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
1548PyUnicode_DecodeUnicodeEscape:const char*:s::
1549PyUnicode_DecodeUnicodeEscape:int:size::
1550PyUnicode_DecodeUnicodeEscape:const char*:errors::
1551
1552PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
1553PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
1554PyUnicode_EncodeUnicodeEscape:int:size::
1555PyUnicode_EncodeUnicodeEscape:const char*:errors::
1556
1557PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
1558PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
1559
1560PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
1561PyUnicode_DecodeRawUnicodeEscape:const char*:s::
1562PyUnicode_DecodeRawUnicodeEscape:int:size::
1563PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
1564
1565PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
1566PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
1567PyUnicode_EncodeRawUnicodeEscape:int:size::
1568PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
1569
1570PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
1571PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
1572
1573PyUnicode_DecodeLatin1:PyObject*::+1:
1574PyUnicode_DecodeLatin1:const char*:s::
1575PyUnicode_DecodeLatin1:int:size::
1576PyUnicode_DecodeLatin1:const char*:errors::
1577
1578PyUnicode_EncodeLatin1:PyObject*::+1:
1579PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
1580PyUnicode_EncodeLatin1:int:size::
1581PyUnicode_EncodeLatin1:const char*:errors::
1582
1583PyUnicode_AsLatin1String:PyObject*::+1:
1584PyUnicode_AsLatin1String:PyObject*:unicode::
1585
1586PyUnicode_DecodeASCII:PyObject*::+1:
1587PyUnicode_DecodeASCII:const char*:s::
1588PyUnicode_DecodeASCII:int:size::
1589PyUnicode_DecodeASCII:const char*:errors::
1590
1591PyUnicode_EncodeASCII:PyObject*::+1:
1592PyUnicode_EncodeASCII:const Py_UNICODE*:s::
1593PyUnicode_EncodeASCII:int:size::
1594PyUnicode_EncodeASCII:const char*:errors::
1595
1596PyUnicode_AsASCIIString:PyObject*::+1:
1597PyUnicode_AsASCIIString:PyObject*:unicode::
1598
1599PyUnicode_DecodeCharmap:PyObject*::+1:
1600PyUnicode_DecodeCharmap:const char*:s::
1601PyUnicode_DecodeCharmap:int:size::
1602PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1603PyUnicode_DecodeCharmap:const char*:errors::
1604
1605PyUnicode_EncodeCharmap:PyObject*::+1:
1606PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
1607PyUnicode_EncodeCharmap:int:size::
1608PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1609PyUnicode_EncodeCharmap:const char*:errors::
1610
1611PyUnicode_AsCharmapString:PyObject*::+1:
1612PyUnicode_AsCharmapString:PyObject*:unicode:0:
1613PyUnicode_AsCharmapString:PyObject*:mapping:0:
1614
1615PyUnicode_TranslateCharmap:PyObject*::+1:
1616PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1617PyUnicode_TranslateCharmap:int:size::
1618PyUnicode_TranslateCharmap:PyObject*:table:0:
1619PyUnicode_TranslateCharmap:const char*:errors::
1620
1621PyUnicode_DecodeMBCS:PyObject*::+1:
1622PyUnicode_DecodeMBCS:const char*:s::
1623PyUnicode_DecodeMBCS:int:size::
1624PyUnicode_DecodeMBCS:const char*:errors::
1625
1626PyUnicode_EncodeMBCS:PyObject*::+1:
1627PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
1628PyUnicode_EncodeMBCS:int:size::
1629PyUnicode_EncodeMBCS:const char*:errors::
1630
1631PyUnicode_AsMBCSString:PyObject*::+1:
1632PyUnicode_AsMBCSString:PyObject*:unicode::
1633
1634PyUnicode_Concat:PyObject*::+1:
1635PyUnicode_Concat:PyObject*:left:0:
1636PyUnicode_Concat:PyObject*:right:0:
1637
1638PyUnicode_Split:PyObject*::+1:
1639PyUnicode_Split:PyObject*:left:0:
1640PyUnicode_Split:PyObject*:right:0:
1641PyUnicode_Split:int:maxsplit::
1642
1643PyUnicode_Splitlines:PyObject*::+1:
1644PyUnicode_Splitlines:PyObject*:s:0:
1645PyUnicode_Splitlines:int:maxsplit::
1646
1647PyUnicode_Translate:PyObject*::+1:
1648PyUnicode_Translate:PyObject*:str:0:
1649PyUnicode_Translate:PyObject*:table:0:
1650PyUnicode_Translate:const char*:errors::
1651
1652PyUnicode_Join:PyObject*::+1:
1653PyUnicode_Join:PyObject*:separator:0:
1654PyUnicode_Join:PyObject*:seq:0:
1655
Benjamin Peterson5e55b3e2010-02-03 02:35:45 +00001656PyUnicode_Tailmatch:int:::
Georg Brandl116aa622007-08-15 14:28:22 +00001657PyUnicode_Tailmatch:PyObject*:str:0:
1658PyUnicode_Tailmatch:PyObject*:substr:0:
1659PyUnicode_Tailmatch:int:start::
1660PyUnicode_Tailmatch:int:end::
1661PyUnicode_Tailmatch:int:direction::
1662
1663PyUnicode_Find:int:::
1664PyUnicode_Find:PyObject*:str:0:
1665PyUnicode_Find:PyObject*:substr:0:
1666PyUnicode_Find:int:start::
1667PyUnicode_Find:int:end::
1668PyUnicode_Find:int:direction::
1669
1670PyUnicode_Count:int:::
1671PyUnicode_Count:PyObject*:str:0:
1672PyUnicode_Count:PyObject*:substr:0:
1673PyUnicode_Count:int:start::
1674PyUnicode_Count:int:end::
1675
1676PyUnicode_Replace:PyObject*::+1:
1677PyUnicode_Replace:PyObject*:str:0:
1678PyUnicode_Replace:PyObject*:substr:0:
1679PyUnicode_Replace:PyObject*:replstr:0:
1680PyUnicode_Replace:int:maxcount::
1681
1682PyUnicode_Compare:int:::
1683PyUnicode_Compare:PyObject*:left:0:
1684PyUnicode_Compare:PyObject*:right:0:
1685
1686PyUnicode_Format:PyObject*::+1:
1687PyUnicode_Format:PyObject*:format:0:
1688PyUnicode_Format:PyObject*:args:0:
1689
1690PyUnicode_Contains:int:::
1691PyUnicode_Contains:PyObject*:container:0:
1692PyUnicode_Contains:PyObject*:element:0:
1693
1694PyWeakref_GET_OBJECT:PyObject*::0:
1695PyWeakref_GET_OBJECT:PyObject*:ref:0:
1696
1697PyWeakref_GetObject:PyObject*::0:
1698PyWeakref_GetObject:PyObject*:ref:0:
1699
1700PyWeakref_NewProxy:PyObject*::+1:
1701PyWeakref_NewProxy:PyObject*:ob:0:
1702PyWeakref_NewProxy:PyObject*:callback:0:
1703
1704PyWeakref_NewRef:PyObject*::+1:
1705PyWeakref_NewRef:PyObject*:ob:0:
1706PyWeakref_NewRef:PyObject*:callback:0:
1707
1708PyWrapper_New:PyObject*::+1:
1709PyWrapper_New:PyObject*:d:0:
1710PyWrapper_New:PyObject*:self:0:
1711
1712Py_AtExit:int:::
1713Py_AtExit:void (*)():func::
1714
1715Py_BuildValue:PyObject*::+1:
1716Py_BuildValue:char*:format::
1717
1718Py_CompileString:PyObject*::+1:
1719Py_CompileString:char*:str::
1720Py_CompileString:char*:filename::
1721Py_CompileString:int:start::
1722
1723Py_CompileStringFlags:PyObject*::+1:
1724Py_CompileStringFlags:char*:str::
1725Py_CompileStringFlags:char*:filename::
1726Py_CompileStringFlags:int:start::
1727Py_CompileStringFlags:PyCompilerFlags*:flags::
1728
1729Py_DECREF:void:::
1730Py_DECREF:PyObject*:o:-1:
1731
1732Py_EndInterpreter:void:::
1733Py_EndInterpreter:PyThreadState*:tstate::
1734
1735Py_Exit:void:::
1736Py_Exit:int:status::
1737
1738Py_FatalError:void:::
1739Py_FatalError:char*:message::
1740
1741Py_FdIsInteractive:int:::
1742Py_FdIsInteractive:FILE*:fp::
1743Py_FdIsInteractive:char*:filename::
1744
1745Py_Finalize:void:::
1746
Georg Brandl116aa622007-08-15 14:28:22 +00001747Py_GetBuildInfoconst:char*:::
1748
1749Py_GetCompilerconst:char*:::
1750
1751Py_GetCopyrightconst:char*:::
1752
1753Py_GetExecPrefix:char*:::
1754
1755Py_GetPath:char*:::
1756
1757Py_GetPlatformconst:char*:::
1758
1759Py_GetPrefix:char*:::
1760
1761Py_GetProgramFullPath:char*:::
1762
1763Py_GetProgramName:char*:::
1764
1765Py_GetVersionconst:char*:::
1766
1767Py_INCREF:void:::
1768Py_INCREF:PyObject*:o:+1:
1769
1770Py_Initialize:void:::
1771
1772Py_IsInitialized:int:::
1773
1774Py_NewInterpreter:PyThreadState*:::
1775
1776Py_SetProgramName:void:::
1777Py_SetProgramName:char*:name::
1778
1779Py_XDECREF:void:::
1780Py_XDECREF:PyObject*:o:-1:if o is not NULL
1781
1782Py_XINCREF:void:::
1783Py_XINCREF:PyObject*:o:+1:if o is not NULL
1784
1785_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1786_PyImport_FindExtension:char*:::
1787_PyImport_FindExtension:char*:::
1788
1789_PyImport_Fini:void:::
1790
1791_PyImport_FixupExtension:PyObject*:::???
1792_PyImport_FixupExtension:char*:::
1793_PyImport_FixupExtension:char*:::
1794
1795_PyImport_Init:void:::
1796
Georg Brandl116aa622007-08-15 14:28:22 +00001797_PyObject_New:PyObject*::+1:
1798_PyObject_New:PyTypeObject*:type:0:
1799
1800_PyObject_NewVar:PyObject*::+1:
1801_PyObject_NewVar:PyTypeObject*:type:0:
1802_PyObject_NewVar:int:size::
1803
1804_PyString_Resize:int:::
1805_PyString_Resize:PyObject**:string:+1:
1806_PyString_Resize:int:newsize::
1807
1808_PyTuple_Resize:int:::
1809_PyTuple_Resize:PyTupleObject**:p:+1:
1810_PyTuple_Resize:int:new::
1811
1812_Py_c_diff:Py_complex:::
1813_Py_c_diff:Py_complex:left::
1814_Py_c_diff:Py_complex:right::
1815
1816_Py_c_neg:Py_complex:::
1817_Py_c_neg:Py_complex:complex::
1818
1819_Py_c_pow:Py_complex:::
1820_Py_c_pow:Py_complex:num::
1821_Py_c_pow:Py_complex:exp::
1822
1823_Py_c_prod:Py_complex:::
1824_Py_c_prod:Py_complex:left::
1825_Py_c_prod:Py_complex:right::
1826
1827_Py_c_quot:Py_complex:::
1828_Py_c_quot:Py_complex:dividend::
1829_Py_c_quot:Py_complex:divisor::
1830
1831_Py_c_sum:Py_complex:::
1832_Py_c_sum:Py_complex:left::
1833_Py_c_sum:Py_complex:right::