blob: aace6950bb68895727ae34d26519b1997f422b29 [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:::
Fred Drake34c391d2000-08-15 04:36:16 +0000177PyErr_Restore:PyObject*:type:-1:
178PyErr_Restore:PyObject*:value:-1:
179PyErr_Restore:PyObject*:traceback:-1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000180
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
Fred Drake4ca744c2000-08-12 03:39:47 +0000219PyEval_EvalCode:PyObject*::+1:
220PyEval_EvalCode:PyCodeObject*:co:0:
221PyEval_EvalCode:PyObject*:globals:0:
222PyEval_EvalCode:PyObject*:locals:0:
223
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000224PyFile_AsFile:FILE*:::
225PyFile_AsFile:PyFileObject*:p:0:
226
227PyFile_Check:int:::
228PyFile_Check:PyObject*:p:0:
229
230PyFile_FromFile:PyObject*::+1:
231PyFile_FromFile:FILE*:fp::
232PyFile_FromFile:char*:name::
233PyFile_FromFile:char*:mode::
234PyFile_FromFile:int(*:close)::
235
236PyFile_FromString:PyObject*::+1:
237PyFile_FromString:char*:name::
238PyFile_FromString:char*:mode::
239
240PyFile_GetLine:PyObject*::+1:
241PyFile_GetLine:PyObject*:p::
242PyFile_GetLine:int:n::
243
244PyFile_Name:PyObject*::0:
245PyFile_Name:PyObject*:p:0:
246
247PyFile_SetBufSize:void:::
248PyFile_SetBufSize:PyFileObject*:p:0:
249PyFile_SetBufSize:int:n::
250
251PyFile_SoftSpace:int:::
252PyFile_SoftSpace:PyFileObject*:p:0:
253PyFile_SoftSpace:int:newflag::
254
255PyFile_WriteObject:int:::
256PyFile_WriteObject:PyObject*:obj:0:
257PyFile_WriteObject:PyFileObject*:p:0:
258PyFile_WriteObject:int:flags::
259
260PyFile_WriteString:int:::
261PyFile_WriteString:char*:s::
262PyFile_WriteString:PyFileObject*:p:0:
263PyFile_WriteString:int:flags::
264
265PyFloat_AS_DOUBLE:double:::
266PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
267
268PyFloat_AsDouble:double:::
269PyFloat_AsDouble:PyObject*:pyfloat:0:
270
271PyFloat_Check:int:::
272PyFloat_Check:PyObject*:p:0:
273
274PyFloat_FromDouble:PyObject*::+1:
275PyFloat_FromDouble:double:v::
276
Fred Drakeee814bf2000-11-28 22:34:32 +0000277Py_InitModule:PyObject*::0:
278Py_InitModule:name:char*::
279Py_InitModule:methods:PyMethodDef[]::
280
281Py_InitModule3:PyObject*::0:
282Py_InitModule3:name:char*::
283Py_InitModule3:methods:PyMethodDef[]::
284Py_InitModule3:doc:char*::
285
286Py_InitModule4:PyObject*::0:
287Py_InitModule4:name:char*::
288Py_InitModule4:methods:PyMethodDef[]::
289Py_InitModule4:doc:char*::
290Py_InitModule4:self:PyObject*::
291Py_InitModule4:apiver:int::usually provided by Py_InitModule or Py_InitModule3
292
Fred Drake805bf1b1999-10-20 16:03:38 +0000293PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000294PyImport_AddModule:char*:name::
295
296PyImport_Cleanup:void:::
297
298PyImport_ExecCodeModule:PyObject*::+1:
299PyImport_ExecCodeModule:char*:name::
300PyImport_ExecCodeModule:PyObject*:co:0:
301
302PyImport_GetMagicNumber:long:::
303
304PyImport_GetModuleDict:PyObject*::0:
305
306PyImport_Import:PyObject*::+1:
307PyImport_Import:PyObject*:name:0:
308
309PyImport_ImportFrozenModule:int:::
310PyImport_ImportFrozenModule:char*:::
311
Fred Drakeeb725cd2000-04-03 15:06:40 +0000312PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000313PyImport_ImportModule:char*:name::
314
Fred Drakeeb725cd2000-04-03 15:06:40 +0000315PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000316PyImport_ImportModuleEx:char*:name::
317PyImport_ImportModuleEx:PyObject*:globals:0:???
318PyImport_ImportModuleEx:PyObject*:locals:0:???
319PyImport_ImportModuleEx:PyObject*:fromlist:0:???
320
Fred Drakeeb725cd2000-04-03 15:06:40 +0000321PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000322PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000323
324PyInt_AS_LONG:long:::
325PyInt_AS_LONG:PyIntObject*:io:0:
326
327PyInt_AsLong:long:::
328PyInt_AsLong:PyObject*:io:0:
329
330PyInt_Check:int:::
331PyInt_Check:PyObject*::0:
332
333PyInt_FromLong:PyObject*::+1:
334PyInt_FromLong:long:ival::
335
336PyInt_GetMax:long:::
337
338PyInterpreterState_Clear:void:::
339PyInterpreterState_Clear:PyInterpreterState*:interp::
340
341PyInterpreterState_Delete:void:::
342PyInterpreterState_Delete:PyInterpreterState*:interp::
343
344PyInterpreterState_New:PyInterpreterState*:::
345
346PyList_Append:int:::
347PyList_Append:PyObject*:list:0:
348PyList_Append:PyObject*:item:+1:
349
350PyList_AsTuple:PyObject*::+1:
351PyList_AsTuple:PyObject*:list:0:
352
353PyList_Check:int:::
354PyList_Check:PyObject*:p:0:
355
356PyList_GET_ITEM:PyObject*::0:
357PyList_GET_ITEM:PyObject*:list:0:
358PyList_GET_ITEM:int:i:0:
359
360PyList_GET_SIZE:int:::
361PyList_GET_SIZE:PyObject*:list:0:
362
363PyList_GetItem:PyObject*::0:
364PyList_GetItem:PyObject*:list:0:
365PyList_GetItem:int:index::
366
367PyList_GetSlice:PyObject*::+1:
368PyList_GetSlice:PyObject*:list:0:
369PyList_GetSlice:int:low::
370PyList_GetSlice:int:high::
371
372PyList_Insert:int:::
373PyList_Insert:PyObject*:list:0:
374PyList_Insert:int:index::
375PyList_Insert:PyObject*:item:+1:
376
377PyList_New:PyObject*::+1:
378PyList_New:int:len::
379
380PyList_Reverse:int:::
381PyList_Reverse:PyObject*:list:0:
382
383PyList_SET_ITEM:PyObject*::0:
384PyList_SET_ITEM:PyObject*:list:0:
385PyList_SET_ITEM:int:i::
386PyList_SET_ITEM:PyObject*:o:0:
387
388PyList_SetItem:int:::
389PyList_SetItem:PyObject*:list:0:
390PyList_SetItem:int:index::
391PyList_SetItem:PyObject*:item:0:
392
393PyList_SetSlice:int:::
394PyList_SetSlice:PyObject*:list:0:
395PyList_SetSlice:int:low::
396PyList_SetSlice:int:high::
397PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
398
399PyList_Size:int:::
400PyList_Size:PyObject*:list:0:
401
402PyList_Sort:int:::
403PyList_Sort:PyObject*:list:0:
404
405PyLong_AsDouble:double:::
406PyLong_AsDouble:PyObject*:pylong:0:
407
408PyLong_AsLong:long:::
409PyLong_AsLong:PyObject*:pylong:0:
410
411PyLong_AsUnsignedLong:unsigned long:::
412PyLong_AsUnsignedLong:PyObject*:pylong:0:
413
414PyLong_Check:int:::
415PyLong_Check:PyObject*:p:0:
416
417PyLong_FromDouble:PyObject*::+1:
418PyLong_FromDouble:double:v::
419
420PyLong_FromLong:PyObject*::+1:
421PyLong_FromLong:long:v::
422
423PyLong_FromString:PyObject*::+1:
424PyLong_FromString:char*:str::
425PyLong_FromString:char**:pend::
426PyLong_FromString:int:base::
427
428PyLong_FromUnsignedLong:PyObject*::+1:
429PyLong_FromUnsignedLong:unsignedlong:v::
430
431PyMapping_Check:int:::
432PyMapping_Check:PyObject*:o:0:
433
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000434PyMapping_DelItem:int:::
435PyMapping_DelItem:PyObject*:o:0:
436PyMapping_DelItem:PyObject*:key:0:
437
438PyMapping_DelItemString:int:::
439PyMapping_DelItemString:PyObject*:o:0:
440PyMapping_DelItemString:char*:key::
441
442PyMapping_GetItemString:PyObject*::+1:
443PyMapping_GetItemString:PyObject*:o:0:
444PyMapping_GetItemString:char*:key::
445
446PyMapping_HasKey:int:::
447PyMapping_HasKey:PyObject*:o:0:
448PyMapping_HasKey:PyObject*:key::
449
450PyMapping_HasKeyString:int:::
451PyMapping_HasKeyString:PyObject*:o:0:
452PyMapping_HasKeyString:char*:key::
453
454PyMapping_Items:PyObject*::+1:
455PyMapping_Items:PyObject*:o:0:
456
457PyMapping_Keys:PyObject*::+1:
458PyMapping_Keys:PyObject*:o:0:
459
460PyMapping_Length:int:::
461PyMapping_Length:PyObject*:o:0:
462
463PyMapping_SetItemString:int:::
464PyMapping_SetItemString:PyObject*:o:0:
465PyMapping_SetItemString:char*:key::
466PyMapping_SetItemString:PyObject*:v:+1:
467
468PyMapping_Values:PyObject*::+1:
469PyMapping_Values:PyObject*:o:0:
470
471PyModule_GetDict:PyObject*::0:
472PyModule_GetDict::PyObject* module:0:
473
474PyModule_GetFilename:char*:::
475PyModule_GetFilename:PyObject*:module:0:
476
477PyModule_GetName:char*:::
478PyModule_GetName:PyObject*:module:0:
479
480PyModule_New:PyObject*::+1:
481PyModule_New::char* name::
482
483PyNumber_Absolute:PyObject*::+1:
484PyNumber_Absolute:PyObject*:o:0:
485
486PyNumber_Add:PyObject*::+1:
487PyNumber_Add:PyObject*:o1:0:
488PyNumber_Add:PyObject*:o2:0:
489
490PyNumber_And:PyObject*::+1:
491PyNumber_And:PyObject*:o1:0:
492PyNumber_And:PyObject*:o2:0:
493
494PyNumber_Check:PyObject*:o:0:
495PyNumber_Check:int:::
496
497PyNumber_Coerce:int:::
498PyNumber_Coerce:PyObject**:p1:+1:
499PyNumber_Coerce:PyObject**:p2:+1:
500
501PyNumber_Divide:PyObject*::+1:
502PyNumber_Divide:PyObject*:o1:0:
503PyNumber_Divide:PyObject*:o2:0:
504
505PyNumber_Divmod:PyObject*::+1:
506PyNumber_Divmod:PyObject*:o1:0:
507PyNumber_Divmod:PyObject*:o2:0:
508
509PyNumber_Float:PyObject*::+1:
510PyNumber_Float:PyObject*:o:0:
511
Fred Drake1fa93652000-09-22 18:19:37 +0000512PyNumber_InPlaceAdd:PyObject*::+1:
513PyNumber_InPlaceAdd:PyObject*:v:0:
514PyNumber_InPlaceAdd:PyObject*:w:0:
515
516PyNumber_InPlaceAnd:PyObject*::+1:
517PyNumber_InPlaceAnd:PyObject*:v:0:
518PyNumber_InPlaceAnd:PyObject*:w:0:
519
520PyNumber_InPlaceDivide:PyObject*::+1:
521PyNumber_InPlaceDivide:PyObject*:v:0:
522PyNumber_InPlaceDivide:PyObject*:w:0:
523
524PyNumber_InPlaceLshift:PyObject*::+1:
525PyNumber_InPlaceLshift:PyObject*:v:0:
526PyNumber_InPlaceLshift:PyObject*:w:0:
527
528PyNumber_InPlaceMultiply:PyObject*::+1:
529PyNumber_InPlaceMultiply:PyObject*:v:0:
530PyNumber_InPlaceMultiply:PyObject*:w:0:
531
532PyNumber_InPlaceOr:PyObject*::+1:
533PyNumber_InPlaceOr:PyObject*:v:0:
534PyNumber_InPlaceOr:PyObject*:w:0:
535
536PyNumber_InPlacePower:PyObject*::+1:
537PyNumber_InPlacePower:PyObject*:v:0:
538PyNumber_InPlacePower:PyObject*:w:0:
539PyNumber_InPlacePower:PyObject*:z:0:
540
541PyNumber_InPlaceRemainder:PyObject*::+1:
542PyNumber_InPlaceRemainder:PyObject*:v:0:
543PyNumber_InPlaceRemainder:PyObject*:w:0:
544
545PyNumber_InPlaceRshift:PyObject*::+1:
546PyNumber_InPlaceRshift:PyObject*:v:0:
547PyNumber_InPlaceRshift:PyObject*:w:0:
548
549PyNumber_InPlaceSubtract:PyObject*::+1:
550PyNumber_InPlaceSubtract:PyObject*:v:0:
551PyNumber_InPlaceSubtract:PyObject*:w:0:
552
553PyNumber_InPlaceXor:PyObject*::+1:
554PyNumber_InPlaceXor:PyObject*:v:0:
555PyNumber_InPlaceXor:PyObject*:w:0:
556
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000557PyNumber_Int:PyObject*::+1:
558PyNumber_Int:PyObject*:o:0:
559
560PyNumber_Invert:PyObject*::+1:
561PyNumber_Invert:PyObject*:o:0:
562
563PyNumber_Long:PyObject*::+1:
564PyNumber_Long:PyObject*:o:0:
565
566PyNumber_Lshift:PyObject*::+1:
567PyNumber_Lshift:PyObject*:o1:0:
568PyNumber_Lshift:PyObject*:o2:0:
569
570PyNumber_Multiply:PyObject*::+1:
571PyNumber_Multiply:PyObject*:o1:0:
572PyNumber_Multiply:PyObject*:o2:0:
573
574PyNumber_Negative:PyObject*::+1:
575PyNumber_Negative:PyObject*:o:0:
576
577PyNumber_Or:PyObject*::+1:
578PyNumber_Or:PyObject*:o1:0:
579PyNumber_Or:PyObject*:o2:0:
580
581PyNumber_Positive:PyObject*::+1:
582PyNumber_Positive:PyObject*:o:0:
583
584PyNumber_Power:PyObject*::+1:
585PyNumber_Power:PyObject*:o1:0:
586PyNumber_Power:PyObject*:o2:0:
587PyNumber_Power:PyObject*:o3:0:
588
589PyNumber_Remainder:PyObject*::+1:
590PyNumber_Remainder:PyObject*:o1:0:
591PyNumber_Remainder:PyObject*:o2:0:
592
593PyNumber_Rshift:PyObject*::+1:
594PyNumber_Rshift:PyObject*:o1:0:
595PyNumber_Rshift:PyObject*:o2:0:
596
597PyNumber_Subtract:PyObject*::+1:
598PyNumber_Subtract:PyObject*:o1:0:
599PyNumber_Subtract:PyObject*:o2:0:
600
601PyNumber_Xor:PyObject*::+1:
602PyNumber_Xor:PyObject*:o1:0:
603PyNumber_Xor:PyObject*:o2:0:
604
605PyOS_GetLastModificationTime:long:::
606PyOS_GetLastModificationTime:char*:filename::
607
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000608PyObject_AsFileDescriptor:int:::
609PyObject_AsFileDescriptor:PyObject*:o:0:
610
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000611PyObject_CallFunction:PyObject*::+1:
612PyObject_CallFunction:PyObject*:callable_object:0:
613PyObject_CallFunction:char*:format::
614PyObject_CallFunction::...::
615
616PyObject_CallMethod:PyObject*::+1:
617PyObject_CallMethod:PyObject*:o:0:
618PyObject_CallMethod:char*:m::
619PyObject_CallMethod:char*:format::
620PyObject_CallMethod::...::
621
622PyObject_CallObject:PyObject*::+1:
623PyObject_CallObject:PyObject*:callable_object:0:
624PyObject_CallObject:PyObject*:args:0:
625
626PyObject_Cmp:int:::
627PyObject_Cmp:PyObject*:o1:0:
628PyObject_Cmp:PyObject*:o2:0:
629PyObject_Cmp:int*:result::
630
631PyObject_Compare:int:::
632PyObject_Compare:PyObject*:o1:0:
633PyObject_Compare:PyObject*:o2:0:
634
635PyObject_DelAttr:int:::
636PyObject_DelAttr:PyObject*:o:0:
637PyObject_DelAttr:PyObject*:attr_name:0:
638
639PyObject_DelAttrString:int:::
640PyObject_DelAttrString:PyObject*:o:0:
641PyObject_DelAttrString:char*:attr_name::
642
643PyObject_DelItem:int:::
644PyObject_DelItem:PyObject*:o:0:
645PyObject_DelItem:PyObject*:key:0:
646
647PyObject_GetAttr:PyObject*::+1:
648PyObject_GetAttr:PyObject*:o:0:
649PyObject_GetAttr:PyObject*:attr_name:0:
650
651PyObject_GetAttrString:PyObject*::+1:
652PyObject_GetAttrString:PyObject*:o:0:
653PyObject_GetAttrString:char*:attr_name::
654
655PyObject_GetItem:PyObject*::+1:
656PyObject_GetItem:PyObject*:o:0:
657PyObject_GetItem:PyObject*:key:0:
658
659PyObject_HasAttr:int:::
660PyObject_HasAttr:PyObject*:o:0:
661PyObject_HasAttr:PyObject*:attr_name:0:
662
663PyObject_HasAttrString:int:::
664PyObject_HasAttrString:PyObject*:o:0:
665PyObject_HasAttrString:char*:attr_name:0:
666
667PyObject_Hash:int:::
668PyObject_Hash:PyObject*:o:0:
669
670PyObject_IsTrue:int:::
671PyObject_IsTrue:PyObject*:o:0:
672
Fred Drakef913e542000-09-12 20:17:17 +0000673PyObject_Init:PyObject*::0:
674PyObject_Init:PyObject*:op:0:
675
676PyObject_InitVar:PyVarObject*::0:
677PyObject_InitVar:PyVarObject*:op:0:
678
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000679PyObject_Length:int:::
680PyObject_Length:PyObject*:o:0:
681
682PyObject_Print:int:::
683PyObject_Print:PyObject*:o:0:
684PyObject_Print:FILE*:fp::
685PyObject_Print:int:flags::
686
687PyObject_Repr:PyObject*::+1:
688PyObject_Repr:PyObject*:o:0:
689
690PyObject_SetAttr:int:::
691PyObject_SetAttr:PyObject*:o:0:
692PyObject_SetAttr:PyObject*:attr_name:0:
693PyObject_SetAttr:PyObject*:v:+1:
694
695PyObject_SetAttrString:int:::
696PyObject_SetAttrString:PyObject*:o:0:
697PyObject_SetAttrString:char*:attr_name::
698PyObject_SetAttrString:PyObject*:v:+1:
699
700PyObject_SetItem:int:::
701PyObject_SetItem:PyObject*:o:0:
702PyObject_SetItem:PyObject*:key:0:
703PyObject_SetItem:PyObject*:v:+1:
704
705PyObject_Str:PyObject*::+1:
706PyObject_Str:PyObject*:o:0:
707
708PyObject_Type:PyObject*::+1:
709PyObject_Type:PyObject*:o:0:
710
Fred Drake805bf1b1999-10-20 16:03:38 +0000711PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000712PyParser_SimpleParseFile:FILE*:fp::
713PyParser_SimpleParseFile:char*:filename::
714PyParser_SimpleParseFile:int:start::
715
Fred Drake805bf1b1999-10-20 16:03:38 +0000716PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000717PyParser_SimpleParseString:char*:str::
718PyParser_SimpleParseString:int:start::
719
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000720PyRun_AnyFile:int:::
721PyRun_AnyFile:FILE*:fp::
722PyRun_AnyFile:char*:filename::
723
Fred Drake4ca744c2000-08-12 03:39:47 +0000724PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000725PyRun_File:FILE*:fp::
726PyRun_File:char*:filename::
727PyRun_File:int:start::
728PyRun_File:PyObject*:globals:0:
729PyRun_File:PyObject*:locals:0:
730
731PyRun_InteractiveLoop:int:::
732PyRun_InteractiveLoop:FILE*:fp::
733PyRun_InteractiveLoop:char*:filename::
734
735PyRun_InteractiveOne:int:::
736PyRun_InteractiveOne:FILE*:fp::
737PyRun_InteractiveOne:char*:filename::
738
739PyRun_SimpleFile:int:::
740PyRun_SimpleFile:FILE*:fp::
741PyRun_SimpleFile:char*:filename::
742
743PyRun_SimpleString:int:::
744PyRun_SimpleString:char*:command::
745
Fred Drake4ca744c2000-08-12 03:39:47 +0000746PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000747PyRun_String:char*:str::
748PyRun_String:int:start::
749PyRun_String:PyObject*:globals:0:
750PyRun_String:PyObject*:locals:0:
751
752PySequence_Check:int:::
753PySequence_Check:PyObject*:o:0:
754
755PySequence_Concat:PyObject*::+1:
756PySequence_Concat:PyObject*:o1:0:
757PySequence_Concat:PyObject*:o2:0:
758
759PySequence_Count:int:::
760PySequence_Count:PyObject*:o:0:
761PySequence_Count:PyObject*:value:0:
762
763PySequence_DelItem:int:::
764PySequence_DelItem:PyObject*:o:0:
765PySequence_DelItem:int:i::
766
767PySequence_DelSlice:int:::
768PySequence_DelSlice:PyObject*:o:0:
769PySequence_DelSlice:int:i1::
770PySequence_DelSlice:int:i2::
771
Fred Drake81cccb72000-09-12 15:22:05 +0000772PySequence_Fast:PyObject*::+1:
773PySequence_Fast:PyObject*:v:0:
774PySequence_Fast:const char*:m::
775
776PySequence_Fast_GET_ITEM:PyObject*::0:
777PySequence_Fast_GET_ITEM:PyObject*:o:0:
778PySequence_Fast_GET_ITEM:int:i::
779
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000780PySequence_GetItem:PyObject*::+1:
781PySequence_GetItem:PyObject*:o:0:
782PySequence_GetItem:int:i::
783
784PySequence_GetSlice:PyObject*::+1:
785PySequence_GetSlice:PyObject*:o:0:
786PySequence_GetSlice:int:i1::
787PySequence_GetSlice:int:i2::
788
789PySequence_In:int:::
790PySequence_In:PyObject*:o:0:
791PySequence_In:PyObject*:value:0:
792
793PySequence_Index:int:::
794PySequence_Index:PyObject*:o:0:
795PySequence_Index:PyObject*:value:0:
796
Fred Drake1fa93652000-09-22 18:19:37 +0000797PySequence_InPlaceConcat:PyObject*::+1:
798PySequence_InPlaceConcat:PyObject*:s:0:
799PySequence_InPlaceConcat:PyObject*:o:0:
800
801PySequence_InPlaceRepeat:PyObject*::+1:
802PySequence_InPlaceRepeat:PyObject*:s:0:
803PySequence_InPlaceRepeat:PyObject*:o:0:
804
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000805PySequence_Repeat:PyObject*::+1:
806PySequence_Repeat:PyObject*:o:0:
807PySequence_Repeat:int:count::
808
809PySequence_SetItem:int:::
810PySequence_SetItem:PyObject*:o:0:
811PySequence_SetItem:int:i::
812PySequence_SetItem:PyObject*:v:+1:
813
814PySequence_SetSlice:int:::
815PySequence_SetSlice:PyObject*:o:0:
816PySequence_SetSlice:int:i1::
817PySequence_SetSlice:int:i2::
818PySequence_SetSlice:PyObject*:v:+1:
819
Fred Drake1c2d06a2000-06-16 20:00:04 +0000820PySequence_List:PyObject*::+1:
821PySequence_List:PyObject*:o:0:
822
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000823PySequence_Tuple:PyObject*::+1:
824PySequence_Tuple:PyObject*:o:0:
825
826PyString_AS_STRING:char*:::
827PyString_AS_STRING:PyObject*:string:0:
828
829PyString_AsString:char*:::
830PyString_AsString:PyObject*:string:0:
831
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +0000832PyString_AsStringAndSize:int:::
833PyString_AsStringAndSize:PyObject*:obj:0:
834PyString_AsStringAndSize:char**:buffer::
835PyString_AsStringAndSize:int*:length::
836
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000837PyString_Check:int:::
838PyString_Check:PyObject*:o:0:
839
840PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000841PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000842PyString_Concat:PyObject*:newpart:0:
843
844PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000845PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000846PyString_ConcatAndDel:PyObject*:newpart:-1:
847
848PyString_Format:PyObject*::+1:
849PyString_Format:PyObject*:format:0:
850PyString_Format:PyObject*:args:0:
851
852PyString_FromString:PyObject*::+1:
853PyString_FromString:const char*:v::
854
855PyString_FromStringAndSize:PyObject*::+1:
856PyString_FromStringAndSize:const char*:v::
857PyString_FromStringAndSize:int:len::
858
859PyString_GET_SIZE:int:::
860PyString_GET_SIZE:PyObject*:string:0:
861
862PyString_InternFromString:PyObject*::+1:
863PyString_InternFromString:const char*:v::
864
865PyString_InternInPlace:void:::
866PyString_InternInPlace:PyObject**:string:+1:???
867
868PyString_Size:int:::
869PyString_Size:PyObject*:string:0:
870
Marc-André Lemburg47073202000-07-07 15:48:54 +0000871PyString_Decode:PyObject*::+1:
872PyString_Decode:const char*:s::
873PyString_Decode:int:size::
874PyString_Decode:const char*:encoding::
875PyString_Decode:const char*:errors::
876
877PyString_Encode:PyObject*::+1:
878PyString_Encode:const char*:s::
879PyString_Encode:int:size::
880PyString_Encode:const char*:encoding::
881PyString_Encode:const char*:errors::
882
883PyString_AsEncodedString:PyObject*::+1:
884PyString_AsEncodedString:PyObject*:str::
885PyString_AsEncodedString:const char*:encoding::
886PyString_AsEncodedString:const char*:errors::
887
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000888PySys_SetArgv:int:::
889PySys_SetArgv:int:argc::
890PySys_SetArgv:char**:argv::
891
892PyThreadState_Clear:void:::
893PyThreadState_Clear:PyThreadState*:tstate::
894
895PyThreadState_Delete:void:::
896PyThreadState_Delete:PyThreadState*:tstate::
897
898PyThreadState_Get:PyThreadState*:::
899
900PyThreadState_New:PyThreadState*:::
901PyThreadState_New:PyInterpreterState*:interp::
902
903PyThreadState_Swap:PyThreadState*:::
904PyThreadState_Swap:PyThreadState*:tstate::
905
906PyTuple_Check:int:::
907PyTuple_Check:PyObject*:p:0:
908
909PyTuple_GET_ITEM:PyObject*::0:
910PyTuple_GET_ITEM:PyTupleObject*:p:0:
911PyTuple_GET_ITEM:int:pos::
912
913PyTuple_GetItem:PyObject*::0:
914PyTuple_GetItem:PyTupleObject*:p:0:
915PyTuple_GetItem:int:pos::
916
917PyTuple_GetSlice:PyObject*::+1:
918PyTuple_GetSlice:PyTupleObject*:p:0:
919PyTuple_GetSlice:int:low::
920PyTuple_GetSlice:int:high::
921
922PyTuple_New:PyObject*::+1:
923PyTuple_New:int:len::
924
925PyTuple_SET_ITEM:void:::
926PyTuple_SET_ITEM:PyTupleObject*:p:0:
927PyTuple_SET_ITEM:int:pos::
928PyTuple_SET_ITEM:PyObject*:o:0:
929
930PyTuple_SetItem:int:::
931PyTuple_SetItem:PyTupleObject*:p:0:
932PyTuple_SetItem:int:pos::
933PyTuple_SetItem:PyObject*:o:0:
934
935PyTuple_Size:int:::
936PyTuple_Size:PyTupleObject*:p:0:
937
Fred Drake992fe5a2000-06-16 21:04:15 +0000938PyUnicode_Check:int:::
939PyUnicode_Check:PyObject*:o:0:
940
941PyUnicode_GET_SIZE:int:::
942PyUnicode_GET_SIZE:PyObject*:o:0:
943
944PyUnicode_GET_DATA_SIZE:int:::
945PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
946
947PyUnicode_AS_UNICODE:Py_UNICODE*:::
948PyUnicode_AS_UNICODE:PyObject*:o:0:
949
950PyUnicode_AS_DATA:const char*:::
951PyUnicode_AS_DATA:PyObject*:o:0:
952
953Py_UNICODE_ISSPACE:int:::
954Py_UNICODE_ISSPACE:Py_UNICODE:ch::
955
956Py_UNICODE_ISLOWER:int:::
957Py_UNICODE_ISLOWER:Py_UNICODE:ch::
958
959Py_UNICODE_ISUPPER:int:::
960Py_UNICODE_ISUPPER:Py_UNICODE:ch::
961
962Py_UNICODE_ISTITLE:int:::
963Py_UNICODE_ISTITLE:Py_UNICODE:ch::
964
965Py_UNICODE_ISLINEBREAK:int:::
966Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
967
968Py_UNICODE_ISDECIMAL:int:::
969Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
970
971Py_UNICODE_ISDIGIT:int:::
972Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
973
974Py_UNICODE_ISNUMERIC:int:::
975Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
976
977Py_UNICODE_TOLOWER:Py_UNICODE:::
978Py_UNICODE_TOLOWER:Py_UNICODE:ch::
979
980Py_UNICODE_TOUPPER:Py_UNICODE:::
981Py_UNICODE_TOUPPER:Py_UNICODE:ch::
982
983Py_UNICODE_TOTITLE:Py_UNICODE:::
984Py_UNICODE_TOTITLE:Py_UNICODE:ch::
985
986Py_UNICODE_TODECIMAL:int:::
987Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
988
989Py_UNICODE_TODIGIT:int:::
990Py_UNICODE_TODIGIT:Py_UNICODE:ch::
991
992Py_UNICODE_TONUMERIC:double:::
993Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
994
995PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000996PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +0000997PyUnicode_FromUnicode:int:size::
998
999PyUnicode_AsUnicode:Py_UNICODE*:::
1000PyUnicode_AsUnicode:PyObject :*unicode:0:
1001
1002PyUnicode_GetSize:int:::
1003PyUnicode_GetSize:PyObject :*unicode:0:
1004
1005PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001006PyUnicode_FromObject:PyObject*:*obj:0:
1007
1008PyUnicode_FromEncodedObject:PyObject*::+1:
1009PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1010PyUnicode_FromEncodedObject:const char*:encoding::
1011PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001012
1013PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001014PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001015PyUnicode_FromWideChar:int:size::
1016
1017PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001018PyUnicode_AsWideChar:PyObject*:*unicode:0:
1019PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001020PyUnicode_AsWideChar:int:size::
1021
1022PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001023PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001024PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001025PyUnicode_Decode:const char*:encoding::
1026PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001027
1028PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001029PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001030PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001031PyUnicode_Encode:const char*:encoding::
1032PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001033
1034PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001035PyUnicode_AsEncodedString:PyObject*:unicode::
1036PyUnicode_AsEncodedString:const char*:encoding::
1037PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001038
1039PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001040PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001041PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001042PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001043
1044PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001045PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001046PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001047PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001048
1049PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001050PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001051
1052PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001053PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001054PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001055PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001056PyUnicode_DecodeUTF16:int*:byteorder::
1057
1058PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001059PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001060PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001061PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001062PyUnicode_EncodeUTF16:int:byteorder::
1063
1064PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001065PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001066
1067PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001068PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001069PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001070PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001071
1072PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001073PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001074PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001075PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001076
1077PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001078PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001079
1080PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001081PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001082PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001083PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001084
1085PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001086PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001087PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001088PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001089
1090PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001091PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001092
1093PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001094PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001095PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001096PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001097
1098PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001099PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001100PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001101PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001102
1103PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001104PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001105
1106PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001107PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001108PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001109PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001110
1111PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001112PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001113PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001114PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001115
1116PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001117PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001118
1119PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001120PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001121PyUnicode_DecodeCharmap:int:size::
1122PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001123PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001124
1125PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001126PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001127PyUnicode_EncodeCharmap:int:size::
1128PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001129PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001130
1131PyUnicode_AsCharmapString:PyObject*::+1:
1132PyUnicode_AsCharmapString:PyObject*:unicode:0:
1133PyUnicode_AsCharmapString:PyObject*:mapping:0:
1134
1135PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001136PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001137PyUnicode_TranslateCharmap:int:size::
1138PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001139PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001140
1141PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001142PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001143PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001144PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001145
1146PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001147PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001148PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001149PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001150
1151PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001152PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001153
1154PyUnicode_Concat:PyObject*::+1:
1155PyUnicode_Concat:PyObject*:left:0:
1156PyUnicode_Concat:PyObject*:right:0:
1157
1158PyUnicode_Split:PyObject*::+1:
1159PyUnicode_Split:PyObject*:left:0:
1160PyUnicode_Split:PyObject*:right:0:
1161PyUnicode_Split:int:maxsplit::
1162
1163PyUnicode_Splitlines:PyObject*::+1:
1164PyUnicode_Splitlines:PyObject*:s:0:
1165PyUnicode_Splitlines:int:maxsplit::
1166
1167PyUnicode_Translate:PyObject*::+1:
1168PyUnicode_Translate:PyObject*:str:0:
1169PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001170PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001171
1172PyUnicode_Join:PyObject*::+1:
1173PyUnicode_Join:PyObject*:separator:0:
1174PyUnicode_Join:PyObject*:seq:0:
1175
1176PyUnicode_Tailmatch:PyObject*::+1:
1177PyUnicode_Tailmatch:PyObject*:str:0:
1178PyUnicode_Tailmatch:PyObject*:substr:0:
1179PyUnicode_Tailmatch:int:start::
1180PyUnicode_Tailmatch:int:end::
1181PyUnicode_Tailmatch:int:direction::
1182
1183PyUnicode_Find:PyObject*::+1:
1184PyUnicode_Find:PyObject*:str:0:
1185PyUnicode_Find:PyObject*:substr:0:
1186PyUnicode_Find:int:start::
1187PyUnicode_Find:int:end::
1188PyUnicode_Find:int:direction::
1189
1190PyUnicode_Count:PyObject*::+1:
1191PyUnicode_Count:PyObject*:str:0:
1192PyUnicode_Count:PyObject*:substr:0:
1193PyUnicode_Count:int:start::
1194PyUnicode_Count:int:end::
1195
1196PyUnicode_Replace:PyObject*::+1:
1197PyUnicode_Replace:PyObject*:str:0:
1198PyUnicode_Replace:PyObject*:substr:0:
1199PyUnicode_Replace:PyObject*:replstr:0:
1200PyUnicode_Replace:int:maxcount::
1201
1202PyUnicode_Compare:int:::
1203PyUnicode_Compare:PyObject*:left:0:
1204PyUnicode_Compare:PyObject*:right:0:
1205
1206PyUnicode_Format:PyObject*::+1:
1207PyUnicode_Format:PyObject*:format:0:
1208PyUnicode_Format:PyObject*:args:0:
1209
1210PyUnicode_Contains:int:::
1211PyUnicode_Contains:PyObject*:container:0:
1212PyUnicode_Contains:PyObject*:element:0:
1213
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001214Py_AtExit:int:::
1215Py_AtExit:void (*)():func::
1216
1217Py_CompileString:PyObject*::+1:
1218Py_CompileString:char*:str::
1219Py_CompileString:char*:filename::
1220Py_CompileString:int:start::
1221
1222Py_DECREF:void:::
1223Py_DECREF:PyObject*:o:-1:
1224
1225Py_EndInterpreter:void:::
1226Py_EndInterpreter:PyThreadState*:tstate::
1227
1228Py_Exit:void:::
1229Py_Exit:int:status::
1230
1231Py_FatalError:void:::
1232Py_FatalError:char*:message::
1233
1234Py_FdIsInteractive:int:::
1235Py_FdIsInteractive:FILE*:fp::
1236Py_FdIsInteractive:char*:filename::
1237
1238Py_Finalize:void:::
1239
Fred Drake8520cc22000-04-10 19:38:24 +00001240Py_FindMethod:PyObject*::+1:
1241Py_FindMethod:PyMethodDef[]:methods::
1242Py_FindMethod:PyObject*:self:+1:
1243Py_FindMethod:char*:name::
1244
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001245Py_GetBuildInfoconst:char*:::
1246
1247Py_GetCompilerconst:char*:::
1248
1249Py_GetCopyrightconst:char*:::
1250
1251Py_GetExecPrefix:char*:::
1252
1253Py_GetPath:char*:::
1254
1255Py_GetPlatformconst:char*:::
1256
1257Py_GetPrefix:char*:::
1258
1259Py_GetProgramFullPath:char*:::
1260
1261Py_GetProgramName:char*:::
1262
1263Py_GetVersionconst:char*:::
1264
1265Py_INCREF:void:::
1266Py_INCREF:PyObject*:o:+1:
1267
1268Py_Initialize:void:::
1269
1270Py_IsInitialized:int:::
1271
1272Py_NewInterpreter:PyThreadState*:::
1273
1274Py_SetProgramName:void:::
1275Py_SetProgramName:char*:name::
1276
1277Py_XDECREF:void:::
1278Py_XDECREF:PyObject*:o:-1:if o is not NULL
1279
1280Py_XINCREF:void:::
1281Py_XINCREF:PyObject*:o:+1:if o is not NULL
1282
1283_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1284_PyImport_FindExtension:char*:::
1285_PyImport_FindExtension:char*:::
1286
1287_PyImport_Fini:void:::
1288
1289_PyImport_FixupExtension:PyObject*:::???
1290_PyImport_FixupExtension:char*:::
1291_PyImport_FixupExtension:char*:::
1292
1293_PyImport_Init:void:::
1294
Fred Drakef913e542000-09-12 20:17:17 +00001295_PyObject_Del:void:::
1296_PyObject_Del:PyObject*:op:0:
1297
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001298_PyObject_New:PyObject*::+1:
1299_PyObject_New:PyTypeObject*:type:0:
1300
Fred Drakef913e542000-09-12 20:17:17 +00001301_PyObject_NewVar:PyVarObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001302_PyObject_NewVar:PyTypeObject*:type:0:
1303_PyObject_NewVar:int:size::
1304
1305_PyString_Resize:int:::
1306_PyString_Resize:PyObject**:string:+1:
1307_PyString_Resize:int:newsize::
1308
1309_PyTuple_Resize:int:::
1310_PyTuple_Resize:PyTupleObject**:p:+1:
1311_PyTuple_Resize:int:new::
1312_PyTuple_Resize:int:last_is_sticky::
1313
1314_Py_c_diff:Py_complex:::
1315_Py_c_diff:Py_complex:left::
1316_Py_c_diff:Py_complex:right::
1317
1318_Py_c_neg:Py_complex:::
1319_Py_c_neg:Py_complex:complex::
1320
1321_Py_c_pow:Py_complex:::
1322_Py_c_pow:Py_complex:num::
1323_Py_c_pow:Py_complex:exp::
1324
1325_Py_c_prod:Py_complex:::
1326_Py_c_prod:Py_complex:left::
1327_Py_c_prod:Py_complex:right::
1328
1329_Py_c_quot:Py_complex:::
1330_Py_c_quot:Py_complex:dividend::
1331_Py_c_quot:Py_complex:divisor::
1332
1333_Py_c_sum:Py_complex:::
1334_Py_c_sum:Py_complex:left::
1335_Py_c_sum:Py_complex:right::