blob: d7dec6701ab358bc32221651328a55d21c5d0db4 [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
Guido van Rossum9a18a7e2000-12-19 03:53:57 +000024# 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
Fred Drake7b7dc6b1999-10-20 15:06:24 +000031# The parameter names are as they appear in the API manual, not the source
32# code.
33
Fred Drakeeb725cd2000-04-03 15:06:40 +000034PyBuffer_FromObject:PyObject*::+1:
35PyBuffer_FromObject:PyObject*:base:+1:
36PyBuffer_FromObject:int:offset::
37PyBuffer_FromObject:int:size::
38
39PyBuffer_FromReadWriteObject:PyObject*::+1:
40PyBuffer_FromReadWriteObject:PyObject*:base:+1:
41PyBuffer_FromReadWriteObject:int:offset::
42PyBuffer_FromReadWriteObject:int:size::
43
44PyBuffer_FromMemory:PyObject*::+1:
45PyBuffer_FromMemory:void*:ptr::
46PyBuffer_FromMemory:int:size::
47
48PyBuffer_FromReadWriteMemory:PyObject*::+1:
49PyBuffer_FromReadWriteMemory:void*:ptr::
50PyBuffer_FromReadWriteMemory:int:size::
51
52PyBuffer_New:PyObject*::+1:
53PyBuffer_New:int:size::
54
Fred Drake7b7dc6b1999-10-20 15:06:24 +000055PyCObject_AsVoidPtr:void*:::
56PyCObject_AsVoidPtr:PyObject*:self:0:
57
58PyCObject_FromVoidPtr:PyObject*::+1:
59PyCObject_FromVoidPtr:void*:cobj::
60PyCObject_FromVoidPtr::void (* destr)(void* )::
61
62PyCObject_FromVoidPtrAndDesc:PyObject*::+1:
63PyCObject_FromVoidPtrAndDesc:void*:cobj::
64PyCObject_FromVoidPtrAndDesc:void*:desc::
65PyCObject_FromVoidPtrAndDesc:void(*)(void*,void*):destr::
66
67PyCObject_GetDesc:void*:::
68PyCObject_GetDesc:PyObject*:self:0:
69
70PyCallable_Check:int:::
71PyCallable_Check:PyObject*:o:0:
72
73PyComplex_AsCComplex:Py_complex:::
74PyComplex_AsCComplex:PyObject*:op:0:
75
76PyComplex_Check:int:::
77PyComplex_Check:PyObject*:p:0:
78
79PyComplex_FromCComplex:PyObject*::+1:
80PyComplex_FromCComplex::Py_complex v::
81
82PyComplex_FromDoubles:PyObject*::+1:
83PyComplex_FromDoubles::double real::
84PyComplex_FromDoubles::double imag::
85
86PyComplex_ImagAsDouble:double:::
87PyComplex_ImagAsDouble:PyObject*:op:0:
88
89PyComplex_RealAsDouble:double:::
90PyComplex_RealAsDouble:PyObject*:op:0:
91
92PyDict_Check:int:::
93PyDict_Check:PyObject*:p:0:
94
95PyDict_Clear:void:::
Fred Drake81473b12001-01-08 05:53:53 +000096PyDict_Clear:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +000097
98PyDict_DelItem:int:::
Fred Drake81473b12001-01-08 05:53:53 +000099PyDict_DelItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000100PyDict_DelItem:PyObject*:key:0:
101
102PyDict_DelItemString:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000103PyDict_DelItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000104PyDict_DelItemString:char*:key::
105
Fred Drake805bf1b1999-10-20 16:03:38 +0000106PyDict_GetItem:PyObject*::0:0
Fred Drake81473b12001-01-08 05:53:53 +0000107PyDict_GetItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000108PyDict_GetItem:PyObject*:key:0:
109
Fred Drake805bf1b1999-10-20 16:03:38 +0000110PyDict_GetItemString:PyObject*::0:
Fred Drake81473b12001-01-08 05:53:53 +0000111PyDict_GetItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000112PyDict_GetItemString:char*:key::
113
114PyDict_Items:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000115PyDict_Items:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000116
117PyDict_Keys:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000118PyDict_Keys:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000119
120PyDict_New:PyObject*::+1:
121
Jeremy Hyltona12c7a72000-03-30 22:27:31 +0000122PyDict_Copy:PyObject*::+1:
123PyDict_Copy:PyObject*:p:0:
124
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000125PyDict_Next:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000126PyDict_Next:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000127PyDict_Next:int:ppos::
128PyDict_Next:PyObject**:pkey:0:
129PyDict_Next:PyObject**:pvalue:0:
130
131PyDict_SetItem:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000132PyDict_SetItem:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000133PyDict_SetItem:PyObject*:key:+1:
134PyDict_SetItem:PyObject*:val:+1:
135
136PyDict_SetItemString:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000137PyDict_SetItemString:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000138PyDict_SetItemString:char*:key::
139PyDict_SetItemString:PyObject*:val:+1:
140
141PyDict_Size:int:::
Fred Drake81473b12001-01-08 05:53:53 +0000142PyDict_Size:PyObject*:p::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000143
144PyDict_Values:PyObject*::+1:
Fred Drake81473b12001-01-08 05:53:53 +0000145PyDict_Values:PyObject*:p:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000146
147PyErr_BadArgument:int:::
148
149PyErr_BadInternalCall:void:::
150
151PyErr_CheckSignals:int:::
152
153PyErr_Clear:void:::
154
155PyErr_ExceptionMatches:int:::
156PyErr_ExceptionMatches:PyObject*:exc:0:
157
158PyErr_Fetch:void:::
159PyErr_Fetch:PyObject**:ptype:0:
160PyErr_Fetch:PyObject**:pvalue:0:
161PyErr_Fetch:PyObject**:ptraceback:0:
162
163PyErr_GivenExceptionMatches:int:::
164PyErr_GivenExceptionMatches:PyObject*:given:0:
165PyErr_GivenExceptionMatches:PyObject*:exc:0:
166
167PyErr_NewException:PyObject*::+1:
168PyErr_NewException:char*:name::
169PyErr_NewException:PyObject*:base:0:
170PyErr_NewException:PyObject*:dict:0:
171
Fred Drakedb2764d2000-04-10 18:25:09 +0000172PyErr_NoMemory:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000173
174PyErr_NormalizeException:void:::
175PyErr_NormalizeException:PyObject**:exc::???
176PyErr_NormalizeException:PyObject**:val::???
177PyErr_NormalizeException:PyObject**:tb::???
178
179PyErr_Occurred:PyObject*::0:
180
181PyErr_Print:void:::
182
183PyErr_Restore:void:::
Fred Drake34c391d2000-08-15 04:36:16 +0000184PyErr_Restore:PyObject*:type:-1:
185PyErr_Restore:PyObject*:value:-1:
186PyErr_Restore:PyObject*:traceback:-1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000187
Fred Drakedb2764d2000-04-10 18:25:09 +0000188PyErr_SetFromErrno:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000189PyErr_SetFromErrno:PyObject*:type:0:
190
191PyErr_SetInterrupt:void:::
192
193PyErr_SetNone:void:::
194PyErr_SetNone:PyObject*:type:+1:
195
196PyErr_SetObject:void:::
197PyErr_SetObject:PyObject*:type:+1:
198PyErr_SetObject:PyObject*:value:+1:
199
200PyErr_SetString:void:::
201PyErr_SetString:PyObject*:type:+1:
202PyErr_SetString:char*:message::
203
Jeremy Hylton98605b52000-04-10 18:40:57 +0000204PyErr_Format:PyObject*::null:
205PyErr_Format:PyObject*:exception:+1:
206PyErr_Format:char*:format::
207PyErr_Format::...::
208
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000209PyErr_Warn:int:::
Guido van Rossume22e4b22000-12-19 03:58:11 +0000210PyErr_Warn:PyObject*:category:0:
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000211PyErr_Warn:char*:message::
212
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000213PyEval_AcquireLock:void:::
214
215PyEval_AcquireThread:void:::
216PyEval_AcquireThread:PyThreadState*:tstate::
217
218PyEval_InitThreads:void:::
219
220PyEval_ReleaseLock:void:::
221
222PyEval_ReleaseThread:void:::
223PyEval_ReleaseThread:PyThreadState*:tstate::
224
225PyEval_RestoreThread:void:::
226PyEval_RestoreThread:PyThreadState*:tstate::
227
228PyEval_SaveThread:PyThreadState*:::
229
Fred Drake4ca744c2000-08-12 03:39:47 +0000230PyEval_EvalCode:PyObject*::+1:
231PyEval_EvalCode:PyCodeObject*:co:0:
232PyEval_EvalCode:PyObject*:globals:0:
233PyEval_EvalCode:PyObject*:locals:0:
234
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000235PyFile_AsFile:FILE*:::
236PyFile_AsFile:PyFileObject*:p:0:
237
238PyFile_Check:int:::
239PyFile_Check:PyObject*:p:0:
240
241PyFile_FromFile:PyObject*::+1:
242PyFile_FromFile:FILE*:fp::
243PyFile_FromFile:char*:name::
244PyFile_FromFile:char*:mode::
245PyFile_FromFile:int(*:close)::
246
247PyFile_FromString:PyObject*::+1:
248PyFile_FromString:char*:name::
249PyFile_FromString:char*:mode::
250
251PyFile_GetLine:PyObject*::+1:
252PyFile_GetLine:PyObject*:p::
253PyFile_GetLine:int:n::
254
255PyFile_Name:PyObject*::0:
256PyFile_Name:PyObject*:p:0:
257
258PyFile_SetBufSize:void:::
259PyFile_SetBufSize:PyFileObject*:p:0:
260PyFile_SetBufSize:int:n::
261
262PyFile_SoftSpace:int:::
263PyFile_SoftSpace:PyFileObject*:p:0:
264PyFile_SoftSpace:int:newflag::
265
266PyFile_WriteObject:int:::
267PyFile_WriteObject:PyObject*:obj:0:
268PyFile_WriteObject:PyFileObject*:p:0:
269PyFile_WriteObject:int:flags::
270
271PyFile_WriteString:int:::
272PyFile_WriteString:char*:s::
273PyFile_WriteString:PyFileObject*:p:0:
274PyFile_WriteString:int:flags::
275
276PyFloat_AS_DOUBLE:double:::
277PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
278
279PyFloat_AsDouble:double:::
280PyFloat_AsDouble:PyObject*:pyfloat:0:
281
282PyFloat_Check:int:::
283PyFloat_Check:PyObject*:p:0:
284
285PyFloat_FromDouble:PyObject*::+1:
286PyFloat_FromDouble:double:v::
287
Fred Drakeee814bf2000-11-28 22:34:32 +0000288Py_InitModule:PyObject*::0:
289Py_InitModule:name:char*::
290Py_InitModule:methods:PyMethodDef[]::
291
292Py_InitModule3:PyObject*::0:
293Py_InitModule3:name:char*::
294Py_InitModule3:methods:PyMethodDef[]::
295Py_InitModule3:doc:char*::
296
297Py_InitModule4:PyObject*::0:
298Py_InitModule4:name:char*::
299Py_InitModule4:methods:PyMethodDef[]::
300Py_InitModule4:doc:char*::
301Py_InitModule4:self:PyObject*::
302Py_InitModule4:apiver:int::usually provided by Py_InitModule or Py_InitModule3
303
Fred Drake805bf1b1999-10-20 16:03:38 +0000304PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000305PyImport_AddModule:char*:name::
306
307PyImport_Cleanup:void:::
308
309PyImport_ExecCodeModule:PyObject*::+1:
310PyImport_ExecCodeModule:char*:name::
311PyImport_ExecCodeModule:PyObject*:co:0:
312
313PyImport_GetMagicNumber:long:::
314
315PyImport_GetModuleDict:PyObject*::0:
316
317PyImport_Import:PyObject*::+1:
318PyImport_Import:PyObject*:name:0:
319
320PyImport_ImportFrozenModule:int:::
321PyImport_ImportFrozenModule:char*:::
322
Fred Drakeeb725cd2000-04-03 15:06:40 +0000323PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000324PyImport_ImportModule:char*:name::
325
Fred Drakeeb725cd2000-04-03 15:06:40 +0000326PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000327PyImport_ImportModuleEx:char*:name::
328PyImport_ImportModuleEx:PyObject*:globals:0:???
329PyImport_ImportModuleEx:PyObject*:locals:0:???
330PyImport_ImportModuleEx:PyObject*:fromlist:0:???
331
Fred Drakeeb725cd2000-04-03 15:06:40 +0000332PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000333PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000334
Fred Drake5838d0f2001-01-28 06:39:35 +0000335PyInstance_New:PyObject*::+1:
336PyInstance_New:PyObject*:klass:+1:
337PyInstance_New:PyObject*:arg:0:
338PyInstance_New:PyObject*:kw:0:
339
340PyInstance_NewRaw:PyObject*::+1:
341PyInstance_NewRaw:PyObject*:klass:+1:
342PyInstance_NewRaw:PyObject*:dict:+1:
343
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000344PyInt_AS_LONG:long:::
345PyInt_AS_LONG:PyIntObject*:io:0:
346
347PyInt_AsLong:long:::
348PyInt_AsLong:PyObject*:io:0:
349
350PyInt_Check:int:::
351PyInt_Check:PyObject*::0:
352
353PyInt_FromLong:PyObject*::+1:
354PyInt_FromLong:long:ival::
355
356PyInt_GetMax:long:::
357
358PyInterpreterState_Clear:void:::
359PyInterpreterState_Clear:PyInterpreterState*:interp::
360
361PyInterpreterState_Delete:void:::
362PyInterpreterState_Delete:PyInterpreterState*:interp::
363
364PyInterpreterState_New:PyInterpreterState*:::
365
Fred Drakeb2625eb2001-05-29 15:34:06 +0000366PyIter_Check:int:o:0:
367
368PyIter_Next:PyObject*::+1:
369PyIter_Next:PyObject*:o:0:
370
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000371PyList_Append:int:::
372PyList_Append:PyObject*:list:0:
373PyList_Append:PyObject*:item:+1:
374
375PyList_AsTuple:PyObject*::+1:
376PyList_AsTuple:PyObject*:list:0:
377
378PyList_Check:int:::
379PyList_Check:PyObject*:p:0:
380
381PyList_GET_ITEM:PyObject*::0:
382PyList_GET_ITEM:PyObject*:list:0:
383PyList_GET_ITEM:int:i:0:
384
385PyList_GET_SIZE:int:::
386PyList_GET_SIZE:PyObject*:list:0:
387
388PyList_GetItem:PyObject*::0:
389PyList_GetItem:PyObject*:list:0:
390PyList_GetItem:int:index::
391
392PyList_GetSlice:PyObject*::+1:
393PyList_GetSlice:PyObject*:list:0:
394PyList_GetSlice:int:low::
395PyList_GetSlice:int:high::
396
397PyList_Insert:int:::
398PyList_Insert:PyObject*:list:0:
399PyList_Insert:int:index::
400PyList_Insert:PyObject*:item:+1:
401
402PyList_New:PyObject*::+1:
403PyList_New:int:len::
404
405PyList_Reverse:int:::
406PyList_Reverse:PyObject*:list:0:
407
408PyList_SET_ITEM:PyObject*::0:
409PyList_SET_ITEM:PyObject*:list:0:
410PyList_SET_ITEM:int:i::
411PyList_SET_ITEM:PyObject*:o:0:
412
413PyList_SetItem:int:::
414PyList_SetItem:PyObject*:list:0:
415PyList_SetItem:int:index::
416PyList_SetItem:PyObject*:item:0:
417
418PyList_SetSlice:int:::
419PyList_SetSlice:PyObject*:list:0:
420PyList_SetSlice:int:low::
421PyList_SetSlice:int:high::
422PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
423
424PyList_Size:int:::
425PyList_Size:PyObject*:list:0:
426
427PyList_Sort:int:::
428PyList_Sort:PyObject*:list:0:
429
430PyLong_AsDouble:double:::
431PyLong_AsDouble:PyObject*:pylong:0:
432
433PyLong_AsLong:long:::
434PyLong_AsLong:PyObject*:pylong:0:
435
436PyLong_AsUnsignedLong:unsigned long:::
437PyLong_AsUnsignedLong:PyObject*:pylong:0:
438
439PyLong_Check:int:::
440PyLong_Check:PyObject*:p:0:
441
442PyLong_FromDouble:PyObject*::+1:
443PyLong_FromDouble:double:v::
444
445PyLong_FromLong:PyObject*::+1:
446PyLong_FromLong:long:v::
447
448PyLong_FromString:PyObject*::+1:
449PyLong_FromString:char*:str::
450PyLong_FromString:char**:pend::
451PyLong_FromString:int:base::
452
453PyLong_FromUnsignedLong:PyObject*::+1:
454PyLong_FromUnsignedLong:unsignedlong:v::
455
456PyMapping_Check:int:::
457PyMapping_Check:PyObject*:o:0:
458
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000459PyMapping_DelItem:int:::
460PyMapping_DelItem:PyObject*:o:0:
461PyMapping_DelItem:PyObject*:key:0:
462
463PyMapping_DelItemString:int:::
464PyMapping_DelItemString:PyObject*:o:0:
465PyMapping_DelItemString:char*:key::
466
467PyMapping_GetItemString:PyObject*::+1:
468PyMapping_GetItemString:PyObject*:o:0:
469PyMapping_GetItemString:char*:key::
470
471PyMapping_HasKey:int:::
472PyMapping_HasKey:PyObject*:o:0:
473PyMapping_HasKey:PyObject*:key::
474
475PyMapping_HasKeyString:int:::
476PyMapping_HasKeyString:PyObject*:o:0:
477PyMapping_HasKeyString:char*:key::
478
479PyMapping_Items:PyObject*::+1:
480PyMapping_Items:PyObject*:o:0:
481
482PyMapping_Keys:PyObject*::+1:
483PyMapping_Keys:PyObject*:o:0:
484
485PyMapping_Length:int:::
486PyMapping_Length:PyObject*:o:0:
487
488PyMapping_SetItemString:int:::
489PyMapping_SetItemString:PyObject*:o:0:
490PyMapping_SetItemString:char*:key::
491PyMapping_SetItemString:PyObject*:v:+1:
492
493PyMapping_Values:PyObject*::+1:
494PyMapping_Values:PyObject*:o:0:
495
496PyModule_GetDict:PyObject*::0:
497PyModule_GetDict::PyObject* module:0:
498
499PyModule_GetFilename:char*:::
500PyModule_GetFilename:PyObject*:module:0:
501
502PyModule_GetName:char*:::
503PyModule_GetName:PyObject*:module:0:
504
505PyModule_New:PyObject*::+1:
506PyModule_New::char* name::
507
508PyNumber_Absolute:PyObject*::+1:
509PyNumber_Absolute:PyObject*:o:0:
510
511PyNumber_Add:PyObject*::+1:
512PyNumber_Add:PyObject*:o1:0:
513PyNumber_Add:PyObject*:o2:0:
514
515PyNumber_And:PyObject*::+1:
516PyNumber_And:PyObject*:o1:0:
517PyNumber_And:PyObject*:o2:0:
518
519PyNumber_Check:PyObject*:o:0:
520PyNumber_Check:int:::
521
522PyNumber_Coerce:int:::
523PyNumber_Coerce:PyObject**:p1:+1:
524PyNumber_Coerce:PyObject**:p2:+1:
525
526PyNumber_Divide:PyObject*::+1:
527PyNumber_Divide:PyObject*:o1:0:
528PyNumber_Divide:PyObject*:o2:0:
529
530PyNumber_Divmod:PyObject*::+1:
531PyNumber_Divmod:PyObject*:o1:0:
532PyNumber_Divmod:PyObject*:o2:0:
533
534PyNumber_Float:PyObject*::+1:
535PyNumber_Float:PyObject*:o:0:
536
Fred Drake1fa93652000-09-22 18:19:37 +0000537PyNumber_InPlaceAdd:PyObject*::+1:
538PyNumber_InPlaceAdd:PyObject*:v:0:
539PyNumber_InPlaceAdd:PyObject*:w:0:
540
541PyNumber_InPlaceAnd:PyObject*::+1:
542PyNumber_InPlaceAnd:PyObject*:v:0:
543PyNumber_InPlaceAnd:PyObject*:w:0:
544
545PyNumber_InPlaceDivide:PyObject*::+1:
546PyNumber_InPlaceDivide:PyObject*:v:0:
547PyNumber_InPlaceDivide:PyObject*:w:0:
548
549PyNumber_InPlaceLshift:PyObject*::+1:
550PyNumber_InPlaceLshift:PyObject*:v:0:
551PyNumber_InPlaceLshift:PyObject*:w:0:
552
553PyNumber_InPlaceMultiply:PyObject*::+1:
554PyNumber_InPlaceMultiply:PyObject*:v:0:
555PyNumber_InPlaceMultiply:PyObject*:w:0:
556
557PyNumber_InPlaceOr:PyObject*::+1:
558PyNumber_InPlaceOr:PyObject*:v:0:
559PyNumber_InPlaceOr:PyObject*:w:0:
560
561PyNumber_InPlacePower:PyObject*::+1:
562PyNumber_InPlacePower:PyObject*:v:0:
563PyNumber_InPlacePower:PyObject*:w:0:
564PyNumber_InPlacePower:PyObject*:z:0:
565
566PyNumber_InPlaceRemainder:PyObject*::+1:
567PyNumber_InPlaceRemainder:PyObject*:v:0:
568PyNumber_InPlaceRemainder:PyObject*:w:0:
569
570PyNumber_InPlaceRshift:PyObject*::+1:
571PyNumber_InPlaceRshift:PyObject*:v:0:
572PyNumber_InPlaceRshift:PyObject*:w:0:
573
574PyNumber_InPlaceSubtract:PyObject*::+1:
575PyNumber_InPlaceSubtract:PyObject*:v:0:
576PyNumber_InPlaceSubtract:PyObject*:w:0:
577
578PyNumber_InPlaceXor:PyObject*::+1:
579PyNumber_InPlaceXor:PyObject*:v:0:
580PyNumber_InPlaceXor:PyObject*:w:0:
581
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000582PyNumber_Int:PyObject*::+1:
583PyNumber_Int:PyObject*:o:0:
584
585PyNumber_Invert:PyObject*::+1:
586PyNumber_Invert:PyObject*:o:0:
587
588PyNumber_Long:PyObject*::+1:
589PyNumber_Long:PyObject*:o:0:
590
591PyNumber_Lshift:PyObject*::+1:
592PyNumber_Lshift:PyObject*:o1:0:
593PyNumber_Lshift:PyObject*:o2:0:
594
595PyNumber_Multiply:PyObject*::+1:
596PyNumber_Multiply:PyObject*:o1:0:
597PyNumber_Multiply:PyObject*:o2:0:
598
599PyNumber_Negative:PyObject*::+1:
600PyNumber_Negative:PyObject*:o:0:
601
602PyNumber_Or:PyObject*::+1:
603PyNumber_Or:PyObject*:o1:0:
604PyNumber_Or:PyObject*:o2:0:
605
606PyNumber_Positive:PyObject*::+1:
607PyNumber_Positive:PyObject*:o:0:
608
609PyNumber_Power:PyObject*::+1:
610PyNumber_Power:PyObject*:o1:0:
611PyNumber_Power:PyObject*:o2:0:
612PyNumber_Power:PyObject*:o3:0:
613
614PyNumber_Remainder:PyObject*::+1:
615PyNumber_Remainder:PyObject*:o1:0:
616PyNumber_Remainder:PyObject*:o2:0:
617
618PyNumber_Rshift:PyObject*::+1:
619PyNumber_Rshift:PyObject*:o1:0:
620PyNumber_Rshift:PyObject*:o2:0:
621
622PyNumber_Subtract:PyObject*::+1:
623PyNumber_Subtract:PyObject*:o1:0:
624PyNumber_Subtract:PyObject*:o2:0:
625
626PyNumber_Xor:PyObject*::+1:
627PyNumber_Xor:PyObject*:o1:0:
628PyNumber_Xor:PyObject*:o2:0:
629
630PyOS_GetLastModificationTime:long:::
631PyOS_GetLastModificationTime:char*:filename::
632
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000633PyObject_AsFileDescriptor:int:::
634PyObject_AsFileDescriptor:PyObject*:o:0:
635
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000636PyObject_CallFunction:PyObject*::+1:
637PyObject_CallFunction:PyObject*:callable_object:0:
638PyObject_CallFunction:char*:format::
639PyObject_CallFunction::...::
640
641PyObject_CallMethod:PyObject*::+1:
642PyObject_CallMethod:PyObject*:o:0:
643PyObject_CallMethod:char*:m::
644PyObject_CallMethod:char*:format::
645PyObject_CallMethod::...::
646
647PyObject_CallObject:PyObject*::+1:
648PyObject_CallObject:PyObject*:callable_object:0:
649PyObject_CallObject:PyObject*:args:0:
650
651PyObject_Cmp:int:::
652PyObject_Cmp:PyObject*:o1:0:
653PyObject_Cmp:PyObject*:o2:0:
654PyObject_Cmp:int*:result::
655
656PyObject_Compare:int:::
657PyObject_Compare:PyObject*:o1:0:
658PyObject_Compare:PyObject*:o2:0:
659
660PyObject_DelAttr:int:::
661PyObject_DelAttr:PyObject*:o:0:
662PyObject_DelAttr:PyObject*:attr_name:0:
663
664PyObject_DelAttrString:int:::
665PyObject_DelAttrString:PyObject*:o:0:
666PyObject_DelAttrString:char*:attr_name::
667
668PyObject_DelItem:int:::
669PyObject_DelItem:PyObject*:o:0:
670PyObject_DelItem:PyObject*:key:0:
671
672PyObject_GetAttr:PyObject*::+1:
673PyObject_GetAttr:PyObject*:o:0:
674PyObject_GetAttr:PyObject*:attr_name:0:
675
676PyObject_GetAttrString:PyObject*::+1:
677PyObject_GetAttrString:PyObject*:o:0:
678PyObject_GetAttrString:char*:attr_name::
679
680PyObject_GetItem:PyObject*::+1:
681PyObject_GetItem:PyObject*:o:0:
682PyObject_GetItem:PyObject*:key:0:
683
684PyObject_HasAttr:int:::
685PyObject_HasAttr:PyObject*:o:0:
686PyObject_HasAttr:PyObject*:attr_name:0:
687
688PyObject_HasAttrString:int:::
689PyObject_HasAttrString:PyObject*:o:0:
690PyObject_HasAttrString:char*:attr_name:0:
691
692PyObject_Hash:int:::
693PyObject_Hash:PyObject*:o:0:
694
695PyObject_IsTrue:int:::
696PyObject_IsTrue:PyObject*:o:0:
697
Fred Drakef913e542000-09-12 20:17:17 +0000698PyObject_Init:PyObject*::0:
699PyObject_Init:PyObject*:op:0:
700
701PyObject_InitVar:PyVarObject*::0:
702PyObject_InitVar:PyVarObject*:op:0:
703
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000704PyObject_Length:int:::
705PyObject_Length:PyObject*:o:0:
706
707PyObject_Print:int:::
708PyObject_Print:PyObject*:o:0:
709PyObject_Print:FILE*:fp::
710PyObject_Print:int:flags::
711
712PyObject_Repr:PyObject*::+1:
713PyObject_Repr:PyObject*:o:0:
714
715PyObject_SetAttr:int:::
716PyObject_SetAttr:PyObject*:o:0:
717PyObject_SetAttr:PyObject*:attr_name:0:
718PyObject_SetAttr:PyObject*:v:+1:
719
720PyObject_SetAttrString:int:::
721PyObject_SetAttrString:PyObject*:o:0:
722PyObject_SetAttrString:char*:attr_name::
723PyObject_SetAttrString:PyObject*:v:+1:
724
725PyObject_SetItem:int:::
726PyObject_SetItem:PyObject*:o:0:
727PyObject_SetItem:PyObject*:key:0:
728PyObject_SetItem:PyObject*:v:+1:
729
730PyObject_Str:PyObject*::+1:
731PyObject_Str:PyObject*:o:0:
732
733PyObject_Type:PyObject*::+1:
734PyObject_Type:PyObject*:o:0:
735
Fred Drakeb2625eb2001-05-29 15:34:06 +0000736PyObject_Unicode:PyObject*::+1:
737PyObject_Unicode:PyObject*:o:0:
738
Fred Drake805bf1b1999-10-20 16:03:38 +0000739PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000740PyParser_SimpleParseFile:FILE*:fp::
741PyParser_SimpleParseFile:char*:filename::
742PyParser_SimpleParseFile:int:start::
743
Fred Drake805bf1b1999-10-20 16:03:38 +0000744PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000745PyParser_SimpleParseString:char*:str::
746PyParser_SimpleParseString:int:start::
747
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000748PyRun_AnyFile:int:::
749PyRun_AnyFile:FILE*:fp::
750PyRun_AnyFile:char*:filename::
751
Fred Drake4ca744c2000-08-12 03:39:47 +0000752PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000753PyRun_File:FILE*:fp::
754PyRun_File:char*:filename::
755PyRun_File:int:start::
756PyRun_File:PyObject*:globals:0:
757PyRun_File:PyObject*:locals:0:
758
759PyRun_InteractiveLoop:int:::
760PyRun_InteractiveLoop:FILE*:fp::
761PyRun_InteractiveLoop:char*:filename::
762
763PyRun_InteractiveOne:int:::
764PyRun_InteractiveOne:FILE*:fp::
765PyRun_InteractiveOne:char*:filename::
766
767PyRun_SimpleFile:int:::
768PyRun_SimpleFile:FILE*:fp::
769PyRun_SimpleFile:char*:filename::
770
771PyRun_SimpleString:int:::
772PyRun_SimpleString:char*:command::
773
Fred Drake4ca744c2000-08-12 03:39:47 +0000774PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000775PyRun_String:char*:str::
776PyRun_String:int:start::
777PyRun_String:PyObject*:globals:0:
778PyRun_String:PyObject*:locals:0:
779
780PySequence_Check:int:::
781PySequence_Check:PyObject*:o:0:
782
783PySequence_Concat:PyObject*::+1:
784PySequence_Concat:PyObject*:o1:0:
785PySequence_Concat:PyObject*:o2:0:
786
787PySequence_Count:int:::
788PySequence_Count:PyObject*:o:0:
789PySequence_Count:PyObject*:value:0:
790
791PySequence_DelItem:int:::
792PySequence_DelItem:PyObject*:o:0:
793PySequence_DelItem:int:i::
794
795PySequence_DelSlice:int:::
796PySequence_DelSlice:PyObject*:o:0:
797PySequence_DelSlice:int:i1::
798PySequence_DelSlice:int:i2::
799
Fred Drake81cccb72000-09-12 15:22:05 +0000800PySequence_Fast:PyObject*::+1:
801PySequence_Fast:PyObject*:v:0:
802PySequence_Fast:const char*:m::
803
804PySequence_Fast_GET_ITEM:PyObject*::0:
805PySequence_Fast_GET_ITEM:PyObject*:o:0:
806PySequence_Fast_GET_ITEM:int:i::
807
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000808PySequence_GetItem:PyObject*::+1:
809PySequence_GetItem:PyObject*:o:0:
810PySequence_GetItem:int:i::
811
812PySequence_GetSlice:PyObject*::+1:
813PySequence_GetSlice:PyObject*:o:0:
814PySequence_GetSlice:int:i1::
815PySequence_GetSlice:int:i2::
816
817PySequence_In:int:::
818PySequence_In:PyObject*:o:0:
819PySequence_In:PyObject*:value:0:
820
821PySequence_Index:int:::
822PySequence_Index:PyObject*:o:0:
823PySequence_Index:PyObject*:value:0:
824
Fred Drake1fa93652000-09-22 18:19:37 +0000825PySequence_InPlaceConcat:PyObject*::+1:
826PySequence_InPlaceConcat:PyObject*:s:0:
827PySequence_InPlaceConcat:PyObject*:o:0:
828
829PySequence_InPlaceRepeat:PyObject*::+1:
830PySequence_InPlaceRepeat:PyObject*:s:0:
831PySequence_InPlaceRepeat:PyObject*:o:0:
832
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000833PySequence_Repeat:PyObject*::+1:
834PySequence_Repeat:PyObject*:o:0:
835PySequence_Repeat:int:count::
836
837PySequence_SetItem:int:::
838PySequence_SetItem:PyObject*:o:0:
839PySequence_SetItem:int:i::
840PySequence_SetItem:PyObject*:v:+1:
841
842PySequence_SetSlice:int:::
843PySequence_SetSlice:PyObject*:o:0:
844PySequence_SetSlice:int:i1::
845PySequence_SetSlice:int:i2::
846PySequence_SetSlice:PyObject*:v:+1:
847
Fred Drake1c2d06a2000-06-16 20:00:04 +0000848PySequence_List:PyObject*::+1:
849PySequence_List:PyObject*:o:0:
850
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000851PySequence_Tuple:PyObject*::+1:
852PySequence_Tuple:PyObject*:o:0:
853
854PyString_AS_STRING:char*:::
855PyString_AS_STRING:PyObject*:string:0:
856
Fred Drakeb2625eb2001-05-29 15:34:06 +0000857PyString_AsDecodedObject:PyObject*::+1:
858PyString_AsDecodedObject:PyObject*:str:0:
859PyString_AsDecodedObject:const char*:encoding::
860PyString_AsDecodedObject:const char*:errors::
861
862PyString_AsEncodedObject:PyObject*::+1:
863PyString_AsEncodedObject:PyObject*:str:0:
864PyString_AsEncodedObject:const char*:encoding::
865PyString_AsEncodedObject:const char*:errors::
866
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000867PyString_AsString:char*:::
868PyString_AsString:PyObject*:string:0:
869
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +0000870PyString_AsStringAndSize:int:::
871PyString_AsStringAndSize:PyObject*:obj:0:
872PyString_AsStringAndSize:char**:buffer::
873PyString_AsStringAndSize:int*:length::
874
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000875PyString_Check:int:::
876PyString_Check:PyObject*:o:0:
877
878PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000879PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000880PyString_Concat:PyObject*:newpart:0:
881
882PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000883PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000884PyString_ConcatAndDel:PyObject*:newpart:-1:
885
886PyString_Format:PyObject*::+1:
887PyString_Format:PyObject*:format:0:
888PyString_Format:PyObject*:args:0:
889
890PyString_FromString:PyObject*::+1:
891PyString_FromString:const char*:v::
892
893PyString_FromStringAndSize:PyObject*::+1:
894PyString_FromStringAndSize:const char*:v::
895PyString_FromStringAndSize:int:len::
896
897PyString_GET_SIZE:int:::
898PyString_GET_SIZE:PyObject*:string:0:
899
900PyString_InternFromString:PyObject*::+1:
901PyString_InternFromString:const char*:v::
902
903PyString_InternInPlace:void:::
904PyString_InternInPlace:PyObject**:string:+1:???
905
906PyString_Size:int:::
907PyString_Size:PyObject*:string:0:
908
Marc-André Lemburg47073202000-07-07 15:48:54 +0000909PyString_Decode:PyObject*::+1:
910PyString_Decode:const char*:s::
911PyString_Decode:int:size::
912PyString_Decode:const char*:encoding::
913PyString_Decode:const char*:errors::
914
915PyString_Encode:PyObject*::+1:
916PyString_Encode:const char*:s::
917PyString_Encode:int:size::
918PyString_Encode:const char*:encoding::
919PyString_Encode:const char*:errors::
920
921PyString_AsEncodedString:PyObject*::+1:
922PyString_AsEncodedString:PyObject*:str::
923PyString_AsEncodedString:const char*:encoding::
924PyString_AsEncodedString:const char*:errors::
925
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000926PySys_SetArgv:int:::
927PySys_SetArgv:int:argc::
928PySys_SetArgv:char**:argv::
929
930PyThreadState_Clear:void:::
931PyThreadState_Clear:PyThreadState*:tstate::
932
933PyThreadState_Delete:void:::
934PyThreadState_Delete:PyThreadState*:tstate::
935
936PyThreadState_Get:PyThreadState*:::
937
Fred Drakeb2625eb2001-05-29 15:34:06 +0000938PyThreadState_GetDict:PyObject*::0:
939
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000940PyThreadState_New:PyThreadState*:::
941PyThreadState_New:PyInterpreterState*:interp::
942
943PyThreadState_Swap:PyThreadState*:::
944PyThreadState_Swap:PyThreadState*:tstate::
945
946PyTuple_Check:int:::
947PyTuple_Check:PyObject*:p:0:
948
949PyTuple_GET_ITEM:PyObject*::0:
950PyTuple_GET_ITEM:PyTupleObject*:p:0:
951PyTuple_GET_ITEM:int:pos::
952
953PyTuple_GetItem:PyObject*::0:
954PyTuple_GetItem:PyTupleObject*:p:0:
955PyTuple_GetItem:int:pos::
956
957PyTuple_GetSlice:PyObject*::+1:
958PyTuple_GetSlice:PyTupleObject*:p:0:
959PyTuple_GetSlice:int:low::
960PyTuple_GetSlice:int:high::
961
962PyTuple_New:PyObject*::+1:
963PyTuple_New:int:len::
964
965PyTuple_SET_ITEM:void:::
966PyTuple_SET_ITEM:PyTupleObject*:p:0:
967PyTuple_SET_ITEM:int:pos::
968PyTuple_SET_ITEM:PyObject*:o:0:
969
970PyTuple_SetItem:int:::
971PyTuple_SetItem:PyTupleObject*:p:0:
972PyTuple_SetItem:int:pos::
973PyTuple_SetItem:PyObject*:o:0:
974
975PyTuple_Size:int:::
976PyTuple_Size:PyTupleObject*:p:0:
977
Fred Drake992fe5a2000-06-16 21:04:15 +0000978PyUnicode_Check:int:::
979PyUnicode_Check:PyObject*:o:0:
980
981PyUnicode_GET_SIZE:int:::
982PyUnicode_GET_SIZE:PyObject*:o:0:
983
984PyUnicode_GET_DATA_SIZE:int:::
985PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
986
987PyUnicode_AS_UNICODE:Py_UNICODE*:::
988PyUnicode_AS_UNICODE:PyObject*:o:0:
989
990PyUnicode_AS_DATA:const char*:::
991PyUnicode_AS_DATA:PyObject*:o:0:
992
993Py_UNICODE_ISSPACE:int:::
994Py_UNICODE_ISSPACE:Py_UNICODE:ch::
995
996Py_UNICODE_ISLOWER:int:::
997Py_UNICODE_ISLOWER:Py_UNICODE:ch::
998
999Py_UNICODE_ISUPPER:int:::
1000Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1001
1002Py_UNICODE_ISTITLE:int:::
1003Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1004
1005Py_UNICODE_ISLINEBREAK:int:::
1006Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1007
1008Py_UNICODE_ISDECIMAL:int:::
1009Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1010
1011Py_UNICODE_ISDIGIT:int:::
1012Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1013
1014Py_UNICODE_ISNUMERIC:int:::
1015Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1016
1017Py_UNICODE_TOLOWER:Py_UNICODE:::
1018Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1019
1020Py_UNICODE_TOUPPER:Py_UNICODE:::
1021Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1022
1023Py_UNICODE_TOTITLE:Py_UNICODE:::
1024Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1025
1026Py_UNICODE_TODECIMAL:int:::
1027Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1028
1029Py_UNICODE_TODIGIT:int:::
1030Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1031
1032Py_UNICODE_TONUMERIC:double:::
1033Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1034
1035PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001036PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001037PyUnicode_FromUnicode:int:size::
1038
1039PyUnicode_AsUnicode:Py_UNICODE*:::
1040PyUnicode_AsUnicode:PyObject :*unicode:0:
1041
1042PyUnicode_GetSize:int:::
1043PyUnicode_GetSize:PyObject :*unicode:0:
1044
1045PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001046PyUnicode_FromObject:PyObject*:*obj:0:
1047
1048PyUnicode_FromEncodedObject:PyObject*::+1:
1049PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1050PyUnicode_FromEncodedObject:const char*:encoding::
1051PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001052
1053PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001054PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001055PyUnicode_FromWideChar:int:size::
1056
1057PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001058PyUnicode_AsWideChar:PyObject*:*unicode:0:
1059PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001060PyUnicode_AsWideChar:int:size::
1061
1062PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001063PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001064PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001065PyUnicode_Decode:const char*:encoding::
1066PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001067
1068PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001069PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001070PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001071PyUnicode_Encode:const char*:encoding::
1072PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001073
1074PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001075PyUnicode_AsEncodedString:PyObject*:unicode::
1076PyUnicode_AsEncodedString:const char*:encoding::
1077PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001078
1079PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001080PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001081PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001082PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001083
1084PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001085PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001086PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001087PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001088
1089PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001090PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001091
1092PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001093PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001094PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001095PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001096PyUnicode_DecodeUTF16:int*:byteorder::
1097
1098PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001099PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001100PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001101PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001102PyUnicode_EncodeUTF16:int:byteorder::
1103
1104PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001105PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001106
1107PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001108PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001109PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001110PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001111
1112PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001113PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001114PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001115PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001116
1117PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001118PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001119
1120PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001121PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001122PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001123PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001124
1125PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001126PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001127PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001128PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001129
1130PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001131PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001132
1133PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001134PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001135PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001136PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001137
1138PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001139PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001140PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001141PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001142
1143PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001144PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001145
1146PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001147PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001148PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001149PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001150
1151PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001152PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001153PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001154PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001155
1156PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001157PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001158
1159PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001160PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001161PyUnicode_DecodeCharmap:int:size::
1162PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001163PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001164
1165PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001166PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001167PyUnicode_EncodeCharmap:int:size::
1168PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001169PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001170
1171PyUnicode_AsCharmapString:PyObject*::+1:
1172PyUnicode_AsCharmapString:PyObject*:unicode:0:
1173PyUnicode_AsCharmapString:PyObject*:mapping:0:
1174
1175PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001176PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001177PyUnicode_TranslateCharmap:int:size::
1178PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001179PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001180
1181PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001182PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001183PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001184PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001185
1186PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001187PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001188PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001189PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001190
1191PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001192PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001193
1194PyUnicode_Concat:PyObject*::+1:
1195PyUnicode_Concat:PyObject*:left:0:
1196PyUnicode_Concat:PyObject*:right:0:
1197
1198PyUnicode_Split:PyObject*::+1:
1199PyUnicode_Split:PyObject*:left:0:
1200PyUnicode_Split:PyObject*:right:0:
1201PyUnicode_Split:int:maxsplit::
1202
1203PyUnicode_Splitlines:PyObject*::+1:
1204PyUnicode_Splitlines:PyObject*:s:0:
1205PyUnicode_Splitlines:int:maxsplit::
1206
1207PyUnicode_Translate:PyObject*::+1:
1208PyUnicode_Translate:PyObject*:str:0:
1209PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001210PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001211
1212PyUnicode_Join:PyObject*::+1:
1213PyUnicode_Join:PyObject*:separator:0:
1214PyUnicode_Join:PyObject*:seq:0:
1215
1216PyUnicode_Tailmatch:PyObject*::+1:
1217PyUnicode_Tailmatch:PyObject*:str:0:
1218PyUnicode_Tailmatch:PyObject*:substr:0:
1219PyUnicode_Tailmatch:int:start::
1220PyUnicode_Tailmatch:int:end::
1221PyUnicode_Tailmatch:int:direction::
1222
1223PyUnicode_Find:PyObject*::+1:
1224PyUnicode_Find:PyObject*:str:0:
1225PyUnicode_Find:PyObject*:substr:0:
1226PyUnicode_Find:int:start::
1227PyUnicode_Find:int:end::
1228PyUnicode_Find:int:direction::
1229
1230PyUnicode_Count:PyObject*::+1:
1231PyUnicode_Count:PyObject*:str:0:
1232PyUnicode_Count:PyObject*:substr:0:
1233PyUnicode_Count:int:start::
1234PyUnicode_Count:int:end::
1235
1236PyUnicode_Replace:PyObject*::+1:
1237PyUnicode_Replace:PyObject*:str:0:
1238PyUnicode_Replace:PyObject*:substr:0:
1239PyUnicode_Replace:PyObject*:replstr:0:
1240PyUnicode_Replace:int:maxcount::
1241
1242PyUnicode_Compare:int:::
1243PyUnicode_Compare:PyObject*:left:0:
1244PyUnicode_Compare:PyObject*:right:0:
1245
1246PyUnicode_Format:PyObject*::+1:
1247PyUnicode_Format:PyObject*:format:0:
1248PyUnicode_Format:PyObject*:args:0:
1249
1250PyUnicode_Contains:int:::
1251PyUnicode_Contains:PyObject*:container:0:
1252PyUnicode_Contains:PyObject*:element:0:
1253
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001254Py_AtExit:int:::
1255Py_AtExit:void (*)():func::
1256
1257Py_CompileString:PyObject*::+1:
1258Py_CompileString:char*:str::
1259Py_CompileString:char*:filename::
1260Py_CompileString:int:start::
1261
1262Py_DECREF:void:::
1263Py_DECREF:PyObject*:o:-1:
1264
1265Py_EndInterpreter:void:::
1266Py_EndInterpreter:PyThreadState*:tstate::
1267
1268Py_Exit:void:::
1269Py_Exit:int:status::
1270
1271Py_FatalError:void:::
1272Py_FatalError:char*:message::
1273
1274Py_FdIsInteractive:int:::
1275Py_FdIsInteractive:FILE*:fp::
1276Py_FdIsInteractive:char*:filename::
1277
1278Py_Finalize:void:::
1279
Fred Drake8520cc22000-04-10 19:38:24 +00001280Py_FindMethod:PyObject*::+1:
1281Py_FindMethod:PyMethodDef[]:methods::
1282Py_FindMethod:PyObject*:self:+1:
1283Py_FindMethod:char*:name::
1284
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001285Py_GetBuildInfoconst:char*:::
1286
1287Py_GetCompilerconst:char*:::
1288
1289Py_GetCopyrightconst:char*:::
1290
1291Py_GetExecPrefix:char*:::
1292
1293Py_GetPath:char*:::
1294
1295Py_GetPlatformconst:char*:::
1296
1297Py_GetPrefix:char*:::
1298
1299Py_GetProgramFullPath:char*:::
1300
1301Py_GetProgramName:char*:::
1302
1303Py_GetVersionconst:char*:::
1304
1305Py_INCREF:void:::
1306Py_INCREF:PyObject*:o:+1:
1307
1308Py_Initialize:void:::
1309
1310Py_IsInitialized:int:::
1311
1312Py_NewInterpreter:PyThreadState*:::
1313
1314Py_SetProgramName:void:::
1315Py_SetProgramName:char*:name::
1316
1317Py_XDECREF:void:::
1318Py_XDECREF:PyObject*:o:-1:if o is not NULL
1319
1320Py_XINCREF:void:::
1321Py_XINCREF:PyObject*:o:+1:if o is not NULL
1322
1323_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1324_PyImport_FindExtension:char*:::
1325_PyImport_FindExtension:char*:::
1326
1327_PyImport_Fini:void:::
1328
1329_PyImport_FixupExtension:PyObject*:::???
1330_PyImport_FixupExtension:char*:::
1331_PyImport_FixupExtension:char*:::
1332
1333_PyImport_Init:void:::
1334
Fred Drakef913e542000-09-12 20:17:17 +00001335_PyObject_Del:void:::
1336_PyObject_Del:PyObject*:op:0:
1337
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001338_PyObject_New:PyObject*::+1:
1339_PyObject_New:PyTypeObject*:type:0:
1340
Fred Drakef913e542000-09-12 20:17:17 +00001341_PyObject_NewVar:PyVarObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001342_PyObject_NewVar:PyTypeObject*:type:0:
1343_PyObject_NewVar:int:size::
1344
1345_PyString_Resize:int:::
1346_PyString_Resize:PyObject**:string:+1:
1347_PyString_Resize:int:newsize::
1348
1349_PyTuple_Resize:int:::
1350_PyTuple_Resize:PyTupleObject**:p:+1:
1351_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001352
1353_Py_c_diff:Py_complex:::
1354_Py_c_diff:Py_complex:left::
1355_Py_c_diff:Py_complex:right::
1356
1357_Py_c_neg:Py_complex:::
1358_Py_c_neg:Py_complex:complex::
1359
1360_Py_c_pow:Py_complex:::
1361_Py_c_pow:Py_complex:num::
1362_Py_c_pow:Py_complex:exp::
1363
1364_Py_c_prod:Py_complex:::
1365_Py_c_prod:Py_complex:left::
1366_Py_c_prod:Py_complex:right::
1367
1368_Py_c_quot:Py_complex:::
1369_Py_c_quot:Py_complex:dividend::
1370_Py_c_quot:Py_complex:divisor::
1371
1372_Py_c_sum:Py_complex:::
1373_Py_c_sum:Py_complex:left::
1374_Py_c_sum:Py_complex:right::