blob: b3006fcd0aadd39403e6730b9d993fb69df6d541 [file] [log] [blame]
Jeremy Hyltona12c7a72000-03-30 22:27:31 +00001# Created by Skip Montanaro <skip@mojam.com>.
Fred Drake805bf1b1999-10-20 16:03:38 +00002
Fred Drake7b7dc6b1999-10-20 15:06:24 +00003# 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
Fred Drake83945952000-04-10 18:29:21 +000019# 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.
Fred Drake7b7dc6b1999-10-20 15:06:24 +000023
24# The parameter names are as they appear in the API manual, not the source
25# code.
26
Fred Drakeeb725cd2000-04-03 15:06:40 +000027PyBuffer_FromObject:PyObject*::+1:
28PyBuffer_FromObject:PyObject*:base:+1:
29PyBuffer_FromObject:int:offset::
30PyBuffer_FromObject:int:size::
31
32PyBuffer_FromReadWriteObject:PyObject*::+1:
33PyBuffer_FromReadWriteObject:PyObject*:base:+1:
34PyBuffer_FromReadWriteObject:int:offset::
35PyBuffer_FromReadWriteObject:int:size::
36
37PyBuffer_FromMemory:PyObject*::+1:
38PyBuffer_FromMemory:void*:ptr::
39PyBuffer_FromMemory:int:size::
40
41PyBuffer_FromReadWriteMemory:PyObject*::+1:
42PyBuffer_FromReadWriteMemory:void*:ptr::
43PyBuffer_FromReadWriteMemory:int:size::
44
45PyBuffer_New:PyObject*::+1:
46PyBuffer_New:int:size::
47
Fred Drake7b7dc6b1999-10-20 15:06:24 +000048PyCObject_AsVoidPtr:void*:::
49PyCObject_AsVoidPtr:PyObject*:self:0:
50
51PyCObject_FromVoidPtr:PyObject*::+1:
52PyCObject_FromVoidPtr:void*:cobj::
53PyCObject_FromVoidPtr::void (* destr)(void* )::
54
55PyCObject_FromVoidPtrAndDesc:PyObject*::+1:
56PyCObject_FromVoidPtrAndDesc:void*:cobj::
57PyCObject_FromVoidPtrAndDesc:void*:desc::
58PyCObject_FromVoidPtrAndDesc:void(*)(void*,void*):destr::
59
60PyCObject_GetDesc:void*:::
61PyCObject_GetDesc:PyObject*:self:0:
62
63PyCallable_Check:int:::
64PyCallable_Check:PyObject*:o:0:
65
66PyComplex_AsCComplex:Py_complex:::
67PyComplex_AsCComplex:PyObject*:op:0:
68
69PyComplex_Check:int:::
70PyComplex_Check:PyObject*:p:0:
71
72PyComplex_FromCComplex:PyObject*::+1:
73PyComplex_FromCComplex::Py_complex v::
74
75PyComplex_FromDoubles:PyObject*::+1:
76PyComplex_FromDoubles::double real::
77PyComplex_FromDoubles::double imag::
78
79PyComplex_ImagAsDouble:double:::
80PyComplex_ImagAsDouble:PyObject*:op:0:
81
82PyComplex_RealAsDouble:double:::
83PyComplex_RealAsDouble:PyObject*:op:0:
84
85PyDict_Check:int:::
86PyDict_Check:PyObject*:p:0:
87
88PyDict_Clear:void:::
89PyDict_Clear:PyDictObject*:p:0:
90
91PyDict_DelItem:int:::
92PyDict_DelItem:PyDictObject*:p:0:
93PyDict_DelItem:PyObject*:key:0:
94
95PyDict_DelItemString:int:::
96PyDict_DelItemString:PyDictObject*:p:0:
97PyDict_DelItemString:char*:key::
98
Fred Drake805bf1b1999-10-20 16:03:38 +000099PyDict_GetItem:PyObject*::0:0
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000100PyDict_GetItem:PyDictObject*:p:0:
101PyDict_GetItem:PyObject*:key:0:
102
Fred Drake805bf1b1999-10-20 16:03:38 +0000103PyDict_GetItemString:PyObject*::0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000104PyDict_GetItemString:PyDictObject*:p:0:
105PyDict_GetItemString:char*:key::
106
107PyDict_Items:PyObject*::+1:
108PyDict_Items:PyDictObject*:p:0:
109
110PyDict_Keys:PyObject*::+1:
111PyDict_Keys:PyDictObject*:p:0:
112
113PyDict_New:PyObject*::+1:
114
Jeremy Hyltona12c7a72000-03-30 22:27:31 +0000115PyDict_Copy:PyObject*::+1:
116PyDict_Copy:PyObject*:p:0:
117
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000118PyDict_Next:int:::
119PyDict_Next:PyDictObject*:p:0:
120PyDict_Next:int:ppos::
121PyDict_Next:PyObject**:pkey:0:
122PyDict_Next:PyObject**:pvalue:0:
123
124PyDict_SetItem:int:::
125PyDict_SetItem:PyDictObject*:p:0:
126PyDict_SetItem:PyObject*:key:+1:
127PyDict_SetItem:PyObject*:val:+1:
128
129PyDict_SetItemString:int:::
130PyDict_SetItemString:PyDictObject*:p:0:
131PyDict_SetItemString:char*:key::
132PyDict_SetItemString:PyObject*:val:+1:
133
134PyDict_Size:int:::
135PyDict_Size:PyDictObject*:p::
136
137PyDict_Values:PyObject*::+1:
138PyDict_Values:PyDictObject*:p:0:
139
140PyErr_BadArgument:int:::
141
142PyErr_BadInternalCall:void:::
143
144PyErr_CheckSignals:int:::
145
146PyErr_Clear:void:::
147
148PyErr_ExceptionMatches:int:::
149PyErr_ExceptionMatches:PyObject*:exc:0:
150
151PyErr_Fetch:void:::
152PyErr_Fetch:PyObject**:ptype:0:
153PyErr_Fetch:PyObject**:pvalue:0:
154PyErr_Fetch:PyObject**:ptraceback:0:
155
156PyErr_GivenExceptionMatches:int:::
157PyErr_GivenExceptionMatches:PyObject*:given:0:
158PyErr_GivenExceptionMatches:PyObject*:exc:0:
159
160PyErr_NewException:PyObject*::+1:
161PyErr_NewException:char*:name::
162PyErr_NewException:PyObject*:base:0:
163PyErr_NewException:PyObject*:dict:0:
164
Fred Drakedb2764d2000-04-10 18:25:09 +0000165PyErr_NoMemory:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000166
167PyErr_NormalizeException:void:::
168PyErr_NormalizeException:PyObject**:exc::???
169PyErr_NormalizeException:PyObject**:val::???
170PyErr_NormalizeException:PyObject**:tb::???
171
172PyErr_Occurred:PyObject*::0:
173
174PyErr_Print:void:::
175
176PyErr_Restore:void:::
177PyErr_Restore:PyObject*:type:0:
178PyErr_Restore:PyObject*:value:0:
179PyErr_Restore:PyObject*:traceback:0:
180
Fred Drakedb2764d2000-04-10 18:25:09 +0000181PyErr_SetFromErrno:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000182PyErr_SetFromErrno:PyObject*:type:0:
183
184PyErr_SetInterrupt:void:::
185
186PyErr_SetNone:void:::
187PyErr_SetNone:PyObject*:type:+1:
188
189PyErr_SetObject:void:::
190PyErr_SetObject:PyObject*:type:+1:
191PyErr_SetObject:PyObject*:value:+1:
192
193PyErr_SetString:void:::
194PyErr_SetString:PyObject*:type:+1:
195PyErr_SetString:char*:message::
196
Jeremy Hylton98605b52000-04-10 18:40:57 +0000197PyErr_Format:PyObject*::null:
198PyErr_Format:PyObject*:exception:+1:
199PyErr_Format:char*:format::
200PyErr_Format::...::
201
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000202PyEval_AcquireLock:void:::
203
204PyEval_AcquireThread:void:::
205PyEval_AcquireThread:PyThreadState*:tstate::
206
207PyEval_InitThreads:void:::
208
209PyEval_ReleaseLock:void:::
210
211PyEval_ReleaseThread:void:::
212PyEval_ReleaseThread:PyThreadState*:tstate::
213
214PyEval_RestoreThread:void:::
215PyEval_RestoreThread:PyThreadState*:tstate::
216
217PyEval_SaveThread:PyThreadState*:::
218
219PyFile_AsFile:FILE*:::
220PyFile_AsFile:PyFileObject*:p:0:
221
222PyFile_Check:int:::
223PyFile_Check:PyObject*:p:0:
224
225PyFile_FromFile:PyObject*::+1:
226PyFile_FromFile:FILE*:fp::
227PyFile_FromFile:char*:name::
228PyFile_FromFile:char*:mode::
229PyFile_FromFile:int(*:close)::
230
231PyFile_FromString:PyObject*::+1:
232PyFile_FromString:char*:name::
233PyFile_FromString:char*:mode::
234
235PyFile_GetLine:PyObject*::+1:
236PyFile_GetLine:PyObject*:p::
237PyFile_GetLine:int:n::
238
239PyFile_Name:PyObject*::0:
240PyFile_Name:PyObject*:p:0:
241
242PyFile_SetBufSize:void:::
243PyFile_SetBufSize:PyFileObject*:p:0:
244PyFile_SetBufSize:int:n::
245
246PyFile_SoftSpace:int:::
247PyFile_SoftSpace:PyFileObject*:p:0:
248PyFile_SoftSpace:int:newflag::
249
250PyFile_WriteObject:int:::
251PyFile_WriteObject:PyObject*:obj:0:
252PyFile_WriteObject:PyFileObject*:p:0:
253PyFile_WriteObject:int:flags::
254
255PyFile_WriteString:int:::
256PyFile_WriteString:char*:s::
257PyFile_WriteString:PyFileObject*:p:0:
258PyFile_WriteString:int:flags::
259
260PyFloat_AS_DOUBLE:double:::
261PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
262
263PyFloat_AsDouble:double:::
264PyFloat_AsDouble:PyObject*:pyfloat:0:
265
266PyFloat_Check:int:::
267PyFloat_Check:PyObject*:p:0:
268
269PyFloat_FromDouble:PyObject*::+1:
270PyFloat_FromDouble:double:v::
271
Fred Drake805bf1b1999-10-20 16:03:38 +0000272PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000273PyImport_AddModule:char*:name::
274
275PyImport_Cleanup:void:::
276
277PyImport_ExecCodeModule:PyObject*::+1:
278PyImport_ExecCodeModule:char*:name::
279PyImport_ExecCodeModule:PyObject*:co:0:
280
281PyImport_GetMagicNumber:long:::
282
283PyImport_GetModuleDict:PyObject*::0:
284
285PyImport_Import:PyObject*::+1:
286PyImport_Import:PyObject*:name:0:
287
288PyImport_ImportFrozenModule:int:::
289PyImport_ImportFrozenModule:char*:::
290
Fred Drakeeb725cd2000-04-03 15:06:40 +0000291PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000292PyImport_ImportModule:char*:name::
293
Fred Drakeeb725cd2000-04-03 15:06:40 +0000294PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000295PyImport_ImportModuleEx:char*:name::
296PyImport_ImportModuleEx:PyObject*:globals:0:???
297PyImport_ImportModuleEx:PyObject*:locals:0:???
298PyImport_ImportModuleEx:PyObject*:fromlist:0:???
299
Fred Drakeeb725cd2000-04-03 15:06:40 +0000300PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000301PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000302
303PyInt_AS_LONG:long:::
304PyInt_AS_LONG:PyIntObject*:io:0:
305
306PyInt_AsLong:long:::
307PyInt_AsLong:PyObject*:io:0:
308
309PyInt_Check:int:::
310PyInt_Check:PyObject*::0:
311
312PyInt_FromLong:PyObject*::+1:
313PyInt_FromLong:long:ival::
314
315PyInt_GetMax:long:::
316
317PyInterpreterState_Clear:void:::
318PyInterpreterState_Clear:PyInterpreterState*:interp::
319
320PyInterpreterState_Delete:void:::
321PyInterpreterState_Delete:PyInterpreterState*:interp::
322
323PyInterpreterState_New:PyInterpreterState*:::
324
325PyList_Append:int:::
326PyList_Append:PyObject*:list:0:
327PyList_Append:PyObject*:item:+1:
328
329PyList_AsTuple:PyObject*::+1:
330PyList_AsTuple:PyObject*:list:0:
331
332PyList_Check:int:::
333PyList_Check:PyObject*:p:0:
334
335PyList_GET_ITEM:PyObject*::0:
336PyList_GET_ITEM:PyObject*:list:0:
337PyList_GET_ITEM:int:i:0:
338
339PyList_GET_SIZE:int:::
340PyList_GET_SIZE:PyObject*:list:0:
341
342PyList_GetItem:PyObject*::0:
343PyList_GetItem:PyObject*:list:0:
344PyList_GetItem:int:index::
345
346PyList_GetSlice:PyObject*::+1:
347PyList_GetSlice:PyObject*:list:0:
348PyList_GetSlice:int:low::
349PyList_GetSlice:int:high::
350
351PyList_Insert:int:::
352PyList_Insert:PyObject*:list:0:
353PyList_Insert:int:index::
354PyList_Insert:PyObject*:item:+1:
355
356PyList_New:PyObject*::+1:
357PyList_New:int:len::
358
359PyList_Reverse:int:::
360PyList_Reverse:PyObject*:list:0:
361
362PyList_SET_ITEM:PyObject*::0:
363PyList_SET_ITEM:PyObject*:list:0:
364PyList_SET_ITEM:int:i::
365PyList_SET_ITEM:PyObject*:o:0:
366
367PyList_SetItem:int:::
368PyList_SetItem:PyObject*:list:0:
369PyList_SetItem:int:index::
370PyList_SetItem:PyObject*:item:0:
371
372PyList_SetSlice:int:::
373PyList_SetSlice:PyObject*:list:0:
374PyList_SetSlice:int:low::
375PyList_SetSlice:int:high::
376PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
377
378PyList_Size:int:::
379PyList_Size:PyObject*:list:0:
380
381PyList_Sort:int:::
382PyList_Sort:PyObject*:list:0:
383
384PyLong_AsDouble:double:::
385PyLong_AsDouble:PyObject*:pylong:0:
386
387PyLong_AsLong:long:::
388PyLong_AsLong:PyObject*:pylong:0:
389
390PyLong_AsUnsignedLong:unsigned long:::
391PyLong_AsUnsignedLong:PyObject*:pylong:0:
392
393PyLong_Check:int:::
394PyLong_Check:PyObject*:p:0:
395
396PyLong_FromDouble:PyObject*::+1:
397PyLong_FromDouble:double:v::
398
399PyLong_FromLong:PyObject*::+1:
400PyLong_FromLong:long:v::
401
402PyLong_FromString:PyObject*::+1:
403PyLong_FromString:char*:str::
404PyLong_FromString:char**:pend::
405PyLong_FromString:int:base::
406
407PyLong_FromUnsignedLong:PyObject*::+1:
408PyLong_FromUnsignedLong:unsignedlong:v::
409
410PyMapping_Check:int:::
411PyMapping_Check:PyObject*:o:0:
412
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000413PyMapping_DelItem:int:::
414PyMapping_DelItem:PyObject*:o:0:
415PyMapping_DelItem:PyObject*:key:0:
416
417PyMapping_DelItemString:int:::
418PyMapping_DelItemString:PyObject*:o:0:
419PyMapping_DelItemString:char*:key::
420
421PyMapping_GetItemString:PyObject*::+1:
422PyMapping_GetItemString:PyObject*:o:0:
423PyMapping_GetItemString:char*:key::
424
425PyMapping_HasKey:int:::
426PyMapping_HasKey:PyObject*:o:0:
427PyMapping_HasKey:PyObject*:key::
428
429PyMapping_HasKeyString:int:::
430PyMapping_HasKeyString:PyObject*:o:0:
431PyMapping_HasKeyString:char*:key::
432
433PyMapping_Items:PyObject*::+1:
434PyMapping_Items:PyObject*:o:0:
435
436PyMapping_Keys:PyObject*::+1:
437PyMapping_Keys:PyObject*:o:0:
438
439PyMapping_Length:int:::
440PyMapping_Length:PyObject*:o:0:
441
442PyMapping_SetItemString:int:::
443PyMapping_SetItemString:PyObject*:o:0:
444PyMapping_SetItemString:char*:key::
445PyMapping_SetItemString:PyObject*:v:+1:
446
447PyMapping_Values:PyObject*::+1:
448PyMapping_Values:PyObject*:o:0:
449
450PyModule_GetDict:PyObject*::0:
451PyModule_GetDict::PyObject* module:0:
452
453PyModule_GetFilename:char*:::
454PyModule_GetFilename:PyObject*:module:0:
455
456PyModule_GetName:char*:::
457PyModule_GetName:PyObject*:module:0:
458
459PyModule_New:PyObject*::+1:
460PyModule_New::char* name::
461
462PyNumber_Absolute:PyObject*::+1:
463PyNumber_Absolute:PyObject*:o:0:
464
465PyNumber_Add:PyObject*::+1:
466PyNumber_Add:PyObject*:o1:0:
467PyNumber_Add:PyObject*:o2:0:
468
469PyNumber_And:PyObject*::+1:
470PyNumber_And:PyObject*:o1:0:
471PyNumber_And:PyObject*:o2:0:
472
473PyNumber_Check:PyObject*:o:0:
474PyNumber_Check:int:::
475
476PyNumber_Coerce:int:::
477PyNumber_Coerce:PyObject**:p1:+1:
478PyNumber_Coerce:PyObject**:p2:+1:
479
480PyNumber_Divide:PyObject*::+1:
481PyNumber_Divide:PyObject*:o1:0:
482PyNumber_Divide:PyObject*:o2:0:
483
484PyNumber_Divmod:PyObject*::+1:
485PyNumber_Divmod:PyObject*:o1:0:
486PyNumber_Divmod:PyObject*:o2:0:
487
488PyNumber_Float:PyObject*::+1:
489PyNumber_Float:PyObject*:o:0:
490
491PyNumber_Int:PyObject*::+1:
492PyNumber_Int:PyObject*:o:0:
493
494PyNumber_Invert:PyObject*::+1:
495PyNumber_Invert:PyObject*:o:0:
496
497PyNumber_Long:PyObject*::+1:
498PyNumber_Long:PyObject*:o:0:
499
500PyNumber_Lshift:PyObject*::+1:
501PyNumber_Lshift:PyObject*:o1:0:
502PyNumber_Lshift:PyObject*:o2:0:
503
504PyNumber_Multiply:PyObject*::+1:
505PyNumber_Multiply:PyObject*:o1:0:
506PyNumber_Multiply:PyObject*:o2:0:
507
508PyNumber_Negative:PyObject*::+1:
509PyNumber_Negative:PyObject*:o:0:
510
511PyNumber_Or:PyObject*::+1:
512PyNumber_Or:PyObject*:o1:0:
513PyNumber_Or:PyObject*:o2:0:
514
515PyNumber_Positive:PyObject*::+1:
516PyNumber_Positive:PyObject*:o:0:
517
518PyNumber_Power:PyObject*::+1:
519PyNumber_Power:PyObject*:o1:0:
520PyNumber_Power:PyObject*:o2:0:
521PyNumber_Power:PyObject*:o3:0:
522
523PyNumber_Remainder:PyObject*::+1:
524PyNumber_Remainder:PyObject*:o1:0:
525PyNumber_Remainder:PyObject*:o2:0:
526
527PyNumber_Rshift:PyObject*::+1:
528PyNumber_Rshift:PyObject*:o1:0:
529PyNumber_Rshift:PyObject*:o2:0:
530
531PyNumber_Subtract:PyObject*::+1:
532PyNumber_Subtract:PyObject*:o1:0:
533PyNumber_Subtract:PyObject*:o2:0:
534
535PyNumber_Xor:PyObject*::+1:
536PyNumber_Xor:PyObject*:o1:0:
537PyNumber_Xor:PyObject*:o2:0:
538
539PyOS_GetLastModificationTime:long:::
540PyOS_GetLastModificationTime:char*:filename::
541
542PyObject_CallFunction:PyObject*::+1:
543PyObject_CallFunction:PyObject*:callable_object:0:
544PyObject_CallFunction:char*:format::
545PyObject_CallFunction::...::
546
547PyObject_CallMethod:PyObject*::+1:
548PyObject_CallMethod:PyObject*:o:0:
549PyObject_CallMethod:char*:m::
550PyObject_CallMethod:char*:format::
551PyObject_CallMethod::...::
552
553PyObject_CallObject:PyObject*::+1:
554PyObject_CallObject:PyObject*:callable_object:0:
555PyObject_CallObject:PyObject*:args:0:
556
557PyObject_Cmp:int:::
558PyObject_Cmp:PyObject*:o1:0:
559PyObject_Cmp:PyObject*:o2:0:
560PyObject_Cmp:int*:result::
561
562PyObject_Compare:int:::
563PyObject_Compare:PyObject*:o1:0:
564PyObject_Compare:PyObject*:o2:0:
565
566PyObject_DelAttr:int:::
567PyObject_DelAttr:PyObject*:o:0:
568PyObject_DelAttr:PyObject*:attr_name:0:
569
570PyObject_DelAttrString:int:::
571PyObject_DelAttrString:PyObject*:o:0:
572PyObject_DelAttrString:char*:attr_name::
573
574PyObject_DelItem:int:::
575PyObject_DelItem:PyObject*:o:0:
576PyObject_DelItem:PyObject*:key:0:
577
578PyObject_GetAttr:PyObject*::+1:
579PyObject_GetAttr:PyObject*:o:0:
580PyObject_GetAttr:PyObject*:attr_name:0:
581
582PyObject_GetAttrString:PyObject*::+1:
583PyObject_GetAttrString:PyObject*:o:0:
584PyObject_GetAttrString:char*:attr_name::
585
586PyObject_GetItem:PyObject*::+1:
587PyObject_GetItem:PyObject*:o:0:
588PyObject_GetItem:PyObject*:key:0:
589
590PyObject_HasAttr:int:::
591PyObject_HasAttr:PyObject*:o:0:
592PyObject_HasAttr:PyObject*:attr_name:0:
593
594PyObject_HasAttrString:int:::
595PyObject_HasAttrString:PyObject*:o:0:
596PyObject_HasAttrString:char*:attr_name:0:
597
598PyObject_Hash:int:::
599PyObject_Hash:PyObject*:o:0:
600
601PyObject_IsTrue:int:::
602PyObject_IsTrue:PyObject*:o:0:
603
604PyObject_Length:int:::
605PyObject_Length:PyObject*:o:0:
606
607PyObject_Print:int:::
608PyObject_Print:PyObject*:o:0:
609PyObject_Print:FILE*:fp::
610PyObject_Print:int:flags::
611
612PyObject_Repr:PyObject*::+1:
613PyObject_Repr:PyObject*:o:0:
614
615PyObject_SetAttr:int:::
616PyObject_SetAttr:PyObject*:o:0:
617PyObject_SetAttr:PyObject*:attr_name:0:
618PyObject_SetAttr:PyObject*:v:+1:
619
620PyObject_SetAttrString:int:::
621PyObject_SetAttrString:PyObject*:o:0:
622PyObject_SetAttrString:char*:attr_name::
623PyObject_SetAttrString:PyObject*:v:+1:
624
625PyObject_SetItem:int:::
626PyObject_SetItem:PyObject*:o:0:
627PyObject_SetItem:PyObject*:key:0:
628PyObject_SetItem:PyObject*:v:+1:
629
630PyObject_Str:PyObject*::+1:
631PyObject_Str:PyObject*:o:0:
632
633PyObject_Type:PyObject*::+1:
634PyObject_Type:PyObject*:o:0:
635
Fred Drake805bf1b1999-10-20 16:03:38 +0000636PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000637PyParser_SimpleParseFile:FILE*:fp::
638PyParser_SimpleParseFile:char*:filename::
639PyParser_SimpleParseFile:int:start::
640
Fred Drake805bf1b1999-10-20 16:03:38 +0000641PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000642PyParser_SimpleParseString:char*:str::
643PyParser_SimpleParseString:int:start::
644
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000645PyRun_AnyFile:int:::
646PyRun_AnyFile:FILE*:fp::
647PyRun_AnyFile:char*:filename::
648
Fred Drake805bf1b1999-10-20 16:03:38 +0000649PyRun_File:PyObject*::1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000650PyRun_File:FILE*:fp::
651PyRun_File:char*:filename::
652PyRun_File:int:start::
653PyRun_File:PyObject*:globals:0:
654PyRun_File:PyObject*:locals:0:
655
656PyRun_InteractiveLoop:int:::
657PyRun_InteractiveLoop:FILE*:fp::
658PyRun_InteractiveLoop:char*:filename::
659
660PyRun_InteractiveOne:int:::
661PyRun_InteractiveOne:FILE*:fp::
662PyRun_InteractiveOne:char*:filename::
663
664PyRun_SimpleFile:int:::
665PyRun_SimpleFile:FILE*:fp::
666PyRun_SimpleFile:char*:filename::
667
668PyRun_SimpleString:int:::
669PyRun_SimpleString:char*:command::
670
Fred Drake805bf1b1999-10-20 16:03:38 +0000671PyRun_String:PyObject*::1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000672PyRun_String:char*:str::
673PyRun_String:int:start::
674PyRun_String:PyObject*:globals:0:
675PyRun_String:PyObject*:locals:0:
676
677PySequence_Check:int:::
678PySequence_Check:PyObject*:o:0:
679
680PySequence_Concat:PyObject*::+1:
681PySequence_Concat:PyObject*:o1:0:
682PySequence_Concat:PyObject*:o2:0:
683
684PySequence_Count:int:::
685PySequence_Count:PyObject*:o:0:
686PySequence_Count:PyObject*:value:0:
687
688PySequence_DelItem:int:::
689PySequence_DelItem:PyObject*:o:0:
690PySequence_DelItem:int:i::
691
692PySequence_DelSlice:int:::
693PySequence_DelSlice:PyObject*:o:0:
694PySequence_DelSlice:int:i1::
695PySequence_DelSlice:int:i2::
696
697PySequence_GetItem:PyObject*::+1:
698PySequence_GetItem:PyObject*:o:0:
699PySequence_GetItem:int:i::
700
701PySequence_GetSlice:PyObject*::+1:
702PySequence_GetSlice:PyObject*:o:0:
703PySequence_GetSlice:int:i1::
704PySequence_GetSlice:int:i2::
705
706PySequence_In:int:::
707PySequence_In:PyObject*:o:0:
708PySequence_In:PyObject*:value:0:
709
710PySequence_Index:int:::
711PySequence_Index:PyObject*:o:0:
712PySequence_Index:PyObject*:value:0:
713
714PySequence_Repeat:PyObject*::+1:
715PySequence_Repeat:PyObject*:o:0:
716PySequence_Repeat:int:count::
717
718PySequence_SetItem:int:::
719PySequence_SetItem:PyObject*:o:0:
720PySequence_SetItem:int:i::
721PySequence_SetItem:PyObject*:v:+1:
722
723PySequence_SetSlice:int:::
724PySequence_SetSlice:PyObject*:o:0:
725PySequence_SetSlice:int:i1::
726PySequence_SetSlice:int:i2::
727PySequence_SetSlice:PyObject*:v:+1:
728
729PySequence_Tuple:PyObject*::+1:
730PySequence_Tuple:PyObject*:o:0:
731
732PyString_AS_STRING:char*:::
733PyString_AS_STRING:PyObject*:string:0:
734
735PyString_AsString:char*:::
736PyString_AsString:PyObject*:string:0:
737
738PyString_Check:int:::
739PyString_Check:PyObject*:o:0:
740
741PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000742PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000743PyString_Concat:PyObject*:newpart:0:
744
745PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000746PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000747PyString_ConcatAndDel:PyObject*:newpart:-1:
748
749PyString_Format:PyObject*::+1:
750PyString_Format:PyObject*:format:0:
751PyString_Format:PyObject*:args:0:
752
753PyString_FromString:PyObject*::+1:
754PyString_FromString:const char*:v::
755
756PyString_FromStringAndSize:PyObject*::+1:
757PyString_FromStringAndSize:const char*:v::
758PyString_FromStringAndSize:int:len::
759
760PyString_GET_SIZE:int:::
761PyString_GET_SIZE:PyObject*:string:0:
762
763PyString_InternFromString:PyObject*::+1:
764PyString_InternFromString:const char*:v::
765
766PyString_InternInPlace:void:::
767PyString_InternInPlace:PyObject**:string:+1:???
768
769PyString_Size:int:::
770PyString_Size:PyObject*:string:0:
771
772PySys_SetArgv:int:::
773PySys_SetArgv:int:argc::
774PySys_SetArgv:char**:argv::
775
776PyThreadState_Clear:void:::
777PyThreadState_Clear:PyThreadState*:tstate::
778
779PyThreadState_Delete:void:::
780PyThreadState_Delete:PyThreadState*:tstate::
781
782PyThreadState_Get:PyThreadState*:::
783
784PyThreadState_New:PyThreadState*:::
785PyThreadState_New:PyInterpreterState*:interp::
786
787PyThreadState_Swap:PyThreadState*:::
788PyThreadState_Swap:PyThreadState*:tstate::
789
790PyTuple_Check:int:::
791PyTuple_Check:PyObject*:p:0:
792
793PyTuple_GET_ITEM:PyObject*::0:
794PyTuple_GET_ITEM:PyTupleObject*:p:0:
795PyTuple_GET_ITEM:int:pos::
796
797PyTuple_GetItem:PyObject*::0:
798PyTuple_GetItem:PyTupleObject*:p:0:
799PyTuple_GetItem:int:pos::
800
801PyTuple_GetSlice:PyObject*::+1:
802PyTuple_GetSlice:PyTupleObject*:p:0:
803PyTuple_GetSlice:int:low::
804PyTuple_GetSlice:int:high::
805
806PyTuple_New:PyObject*::+1:
807PyTuple_New:int:len::
808
809PyTuple_SET_ITEM:void:::
810PyTuple_SET_ITEM:PyTupleObject*:p:0:
811PyTuple_SET_ITEM:int:pos::
812PyTuple_SET_ITEM:PyObject*:o:0:
813
814PyTuple_SetItem:int:::
815PyTuple_SetItem:PyTupleObject*:p:0:
816PyTuple_SetItem:int:pos::
817PyTuple_SetItem:PyObject*:o:0:
818
819PyTuple_Size:int:::
820PyTuple_Size:PyTupleObject*:p:0:
821
822Py_AtExit:int:::
823Py_AtExit:void (*)():func::
824
825Py_CompileString:PyObject*::+1:
826Py_CompileString:char*:str::
827Py_CompileString:char*:filename::
828Py_CompileString:int:start::
829
830Py_DECREF:void:::
831Py_DECREF:PyObject*:o:-1:
832
833Py_EndInterpreter:void:::
834Py_EndInterpreter:PyThreadState*:tstate::
835
836Py_Exit:void:::
837Py_Exit:int:status::
838
839Py_FatalError:void:::
840Py_FatalError:char*:message::
841
842Py_FdIsInteractive:int:::
843Py_FdIsInteractive:FILE*:fp::
844Py_FdIsInteractive:char*:filename::
845
846Py_Finalize:void:::
847
Fred Drake8520cc22000-04-10 19:38:24 +0000848Py_FindMethod:PyObject*::+1:
849Py_FindMethod:PyMethodDef[]:methods::
850Py_FindMethod:PyObject*:self:+1:
851Py_FindMethod:char*:name::
852
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000853Py_GetBuildInfoconst:char*:::
854
855Py_GetCompilerconst:char*:::
856
857Py_GetCopyrightconst:char*:::
858
859Py_GetExecPrefix:char*:::
860
861Py_GetPath:char*:::
862
863Py_GetPlatformconst:char*:::
864
865Py_GetPrefix:char*:::
866
867Py_GetProgramFullPath:char*:::
868
869Py_GetProgramName:char*:::
870
871Py_GetVersionconst:char*:::
872
873Py_INCREF:void:::
874Py_INCREF:PyObject*:o:+1:
875
876Py_Initialize:void:::
877
878Py_IsInitialized:int:::
879
880Py_NewInterpreter:PyThreadState*:::
881
882Py_SetProgramName:void:::
883Py_SetProgramName:char*:name::
884
885Py_XDECREF:void:::
886Py_XDECREF:PyObject*:o:-1:if o is not NULL
887
888Py_XINCREF:void:::
889Py_XINCREF:PyObject*:o:+1:if o is not NULL
890
891_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
892_PyImport_FindExtension:char*:::
893_PyImport_FindExtension:char*:::
894
895_PyImport_Fini:void:::
896
897_PyImport_FixupExtension:PyObject*:::???
898_PyImport_FixupExtension:char*:::
899_PyImport_FixupExtension:char*:::
900
901_PyImport_Init:void:::
902
903_PyObject_New:PyObject*::+1:
904_PyObject_New:PyTypeObject*:type:0:
905
906_PyObject_NewVar:PyObject*::+1:
907_PyObject_NewVar:PyTypeObject*:type:0:
908_PyObject_NewVar:int:size::
909
910_PyString_Resize:int:::
911_PyString_Resize:PyObject**:string:+1:
912_PyString_Resize:int:newsize::
913
914_PyTuple_Resize:int:::
915_PyTuple_Resize:PyTupleObject**:p:+1:
916_PyTuple_Resize:int:new::
917_PyTuple_Resize:int:last_is_sticky::
918
919_Py_c_diff:Py_complex:::
920_Py_c_diff:Py_complex:left::
921_Py_c_diff:Py_complex:right::
922
923_Py_c_neg:Py_complex:::
924_Py_c_neg:Py_complex:complex::
925
926_Py_c_pow:Py_complex:::
927_Py_c_pow:Py_complex:num::
928_Py_c_pow:Py_complex:exp::
929
930_Py_c_prod:Py_complex:::
931_Py_c_prod:Py_complex:left::
932_Py_c_prod:Py_complex:right::
933
934_Py_c_quot:Py_complex:::
935_Py_c_quot:Py_complex:dividend::
936_Py_c_quot:Py_complex:divisor::
937
938_Py_c_sum:Py_complex:::
939_Py_c_sum:Py_complex:left::
940_Py_c_sum:Py_complex:right::