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