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