blob: 287667beac0da8ed5326375129ce9168f0e678cf [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
Fred Draked8548312001-07-10 16:19:13 +0000408PyList_SET_ITEM:void:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000409PyList_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 Drake03590c62001-08-08 18:50:18 +0000537PyNumber_FloorDivide:PyObject*::+1:
538PyNumber_FloorDivide:PyObject*:v:0:
539PyNumber_FloorDivide:PyObject*:w:0:
540
Fred Drake1fa93652000-09-22 18:19:37 +0000541PyNumber_InPlaceAdd:PyObject*::+1:
542PyNumber_InPlaceAdd:PyObject*:v:0:
543PyNumber_InPlaceAdd:PyObject*:w:0:
544
545PyNumber_InPlaceAnd:PyObject*::+1:
546PyNumber_InPlaceAnd:PyObject*:v:0:
547PyNumber_InPlaceAnd:PyObject*:w:0:
548
549PyNumber_InPlaceDivide:PyObject*::+1:
550PyNumber_InPlaceDivide:PyObject*:v:0:
551PyNumber_InPlaceDivide:PyObject*:w:0:
552
Fred Drake03590c62001-08-08 18:50:18 +0000553PyNumber_InPlaceFloorDivide:PyObject*::+1:
554PyNumber_InPlaceFloorDivide:PyObject*:v:0:
555PyNumber_InPlaceFloorDivide:PyObject*:w:0:
556
Fred Drake1fa93652000-09-22 18:19:37 +0000557PyNumber_InPlaceLshift:PyObject*::+1:
558PyNumber_InPlaceLshift:PyObject*:v:0:
559PyNumber_InPlaceLshift:PyObject*:w:0:
560
561PyNumber_InPlaceMultiply:PyObject*::+1:
562PyNumber_InPlaceMultiply:PyObject*:v:0:
563PyNumber_InPlaceMultiply:PyObject*:w:0:
564
565PyNumber_InPlaceOr:PyObject*::+1:
566PyNumber_InPlaceOr:PyObject*:v:0:
567PyNumber_InPlaceOr:PyObject*:w:0:
568
569PyNumber_InPlacePower:PyObject*::+1:
570PyNumber_InPlacePower:PyObject*:v:0:
571PyNumber_InPlacePower:PyObject*:w:0:
572PyNumber_InPlacePower:PyObject*:z:0:
573
574PyNumber_InPlaceRemainder:PyObject*::+1:
575PyNumber_InPlaceRemainder:PyObject*:v:0:
576PyNumber_InPlaceRemainder:PyObject*:w:0:
577
578PyNumber_InPlaceRshift:PyObject*::+1:
579PyNumber_InPlaceRshift:PyObject*:v:0:
580PyNumber_InPlaceRshift:PyObject*:w:0:
581
582PyNumber_InPlaceSubtract:PyObject*::+1:
583PyNumber_InPlaceSubtract:PyObject*:v:0:
584PyNumber_InPlaceSubtract:PyObject*:w:0:
585
Fred Drake03590c62001-08-08 18:50:18 +0000586PyNumber_InPlaceTrueDivide:PyObject*::+1:
587PyNumber_InPlaceTrueDivide:PyObject*:v:0:
588PyNumber_InPlaceTrueDivide:PyObject*:w:0:
589
Fred Drake1fa93652000-09-22 18:19:37 +0000590PyNumber_InPlaceXor:PyObject*::+1:
591PyNumber_InPlaceXor:PyObject*:v:0:
592PyNumber_InPlaceXor:PyObject*:w:0:
593
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000594PyNumber_Int:PyObject*::+1:
595PyNumber_Int:PyObject*:o:0:
596
597PyNumber_Invert:PyObject*::+1:
598PyNumber_Invert:PyObject*:o:0:
599
600PyNumber_Long:PyObject*::+1:
601PyNumber_Long:PyObject*:o:0:
602
603PyNumber_Lshift:PyObject*::+1:
604PyNumber_Lshift:PyObject*:o1:0:
605PyNumber_Lshift:PyObject*:o2:0:
606
607PyNumber_Multiply:PyObject*::+1:
608PyNumber_Multiply:PyObject*:o1:0:
609PyNumber_Multiply:PyObject*:o2:0:
610
611PyNumber_Negative:PyObject*::+1:
612PyNumber_Negative:PyObject*:o:0:
613
614PyNumber_Or:PyObject*::+1:
615PyNumber_Or:PyObject*:o1:0:
616PyNumber_Or:PyObject*:o2:0:
617
618PyNumber_Positive:PyObject*::+1:
619PyNumber_Positive:PyObject*:o:0:
620
621PyNumber_Power:PyObject*::+1:
622PyNumber_Power:PyObject*:o1:0:
623PyNumber_Power:PyObject*:o2:0:
624PyNumber_Power:PyObject*:o3:0:
625
626PyNumber_Remainder:PyObject*::+1:
627PyNumber_Remainder:PyObject*:o1:0:
628PyNumber_Remainder:PyObject*:o2:0:
629
630PyNumber_Rshift:PyObject*::+1:
631PyNumber_Rshift:PyObject*:o1:0:
632PyNumber_Rshift:PyObject*:o2:0:
633
634PyNumber_Subtract:PyObject*::+1:
635PyNumber_Subtract:PyObject*:o1:0:
636PyNumber_Subtract:PyObject*:o2:0:
637
Fred Drake03590c62001-08-08 18:50:18 +0000638PyNumber_TrueDivide:PyObject*::+1:
639PyNumber_TrueDivide:PyObject*:v:0:
640PyNumber_TrueDivide:PyObject*:w:0:
641
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000642PyNumber_Xor:PyObject*::+1:
643PyNumber_Xor:PyObject*:o1:0:
644PyNumber_Xor:PyObject*:o2:0:
645
646PyOS_GetLastModificationTime:long:::
647PyOS_GetLastModificationTime:char*:filename::
648
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000649PyObject_AsFileDescriptor:int:::
650PyObject_AsFileDescriptor:PyObject*:o:0:
651
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000652PyObject_CallFunction:PyObject*::+1:
653PyObject_CallFunction:PyObject*:callable_object:0:
654PyObject_CallFunction:char*:format::
655PyObject_CallFunction::...::
656
657PyObject_CallMethod:PyObject*::+1:
658PyObject_CallMethod:PyObject*:o:0:
659PyObject_CallMethod:char*:m::
660PyObject_CallMethod:char*:format::
661PyObject_CallMethod::...::
662
663PyObject_CallObject:PyObject*::+1:
664PyObject_CallObject:PyObject*:callable_object:0:
665PyObject_CallObject:PyObject*:args:0:
666
667PyObject_Cmp:int:::
668PyObject_Cmp:PyObject*:o1:0:
669PyObject_Cmp:PyObject*:o2:0:
670PyObject_Cmp:int*:result::
671
672PyObject_Compare:int:::
673PyObject_Compare:PyObject*:o1:0:
674PyObject_Compare:PyObject*:o2:0:
675
676PyObject_DelAttr:int:::
677PyObject_DelAttr:PyObject*:o:0:
678PyObject_DelAttr:PyObject*:attr_name:0:
679
680PyObject_DelAttrString:int:::
681PyObject_DelAttrString:PyObject*:o:0:
682PyObject_DelAttrString:char*:attr_name::
683
684PyObject_DelItem:int:::
685PyObject_DelItem:PyObject*:o:0:
686PyObject_DelItem:PyObject*:key:0:
687
688PyObject_GetAttr:PyObject*::+1:
689PyObject_GetAttr:PyObject*:o:0:
690PyObject_GetAttr:PyObject*:attr_name:0:
691
692PyObject_GetAttrString:PyObject*::+1:
693PyObject_GetAttrString:PyObject*:o:0:
694PyObject_GetAttrString:char*:attr_name::
695
696PyObject_GetItem:PyObject*::+1:
697PyObject_GetItem:PyObject*:o:0:
698PyObject_GetItem:PyObject*:key:0:
699
700PyObject_HasAttr:int:::
701PyObject_HasAttr:PyObject*:o:0:
702PyObject_HasAttr:PyObject*:attr_name:0:
703
704PyObject_HasAttrString:int:::
705PyObject_HasAttrString:PyObject*:o:0:
706PyObject_HasAttrString:char*:attr_name:0:
707
708PyObject_Hash:int:::
709PyObject_Hash:PyObject*:o:0:
710
711PyObject_IsTrue:int:::
712PyObject_IsTrue:PyObject*:o:0:
713
Fred Drakef913e542000-09-12 20:17:17 +0000714PyObject_Init:PyObject*::0:
715PyObject_Init:PyObject*:op:0:
716
717PyObject_InitVar:PyVarObject*::0:
718PyObject_InitVar:PyVarObject*:op:0:
719
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000720PyObject_Length:int:::
721PyObject_Length:PyObject*:o:0:
722
Fred Drake8e0c09d2001-07-06 23:31:49 +0000723PyObject_NEW:PyObject*::+1:
724
725PyObject_New:PyObject*::+1:
726
727PyObject_NEW_VAR:PyObject*::+1:
728
729PyObject_NewVar:PyObject*::+1:
730
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000731PyObject_Print:int:::
732PyObject_Print:PyObject*:o:0:
733PyObject_Print:FILE*:fp::
734PyObject_Print:int:flags::
735
736PyObject_Repr:PyObject*::+1:
737PyObject_Repr:PyObject*:o:0:
738
739PyObject_SetAttr:int:::
740PyObject_SetAttr:PyObject*:o:0:
741PyObject_SetAttr:PyObject*:attr_name:0:
742PyObject_SetAttr:PyObject*:v:+1:
743
744PyObject_SetAttrString:int:::
745PyObject_SetAttrString:PyObject*:o:0:
746PyObject_SetAttrString:char*:attr_name::
747PyObject_SetAttrString:PyObject*:v:+1:
748
749PyObject_SetItem:int:::
750PyObject_SetItem:PyObject*:o:0:
751PyObject_SetItem:PyObject*:key:0:
752PyObject_SetItem:PyObject*:v:+1:
753
754PyObject_Str:PyObject*::+1:
755PyObject_Str:PyObject*:o:0:
756
757PyObject_Type:PyObject*::+1:
758PyObject_Type:PyObject*:o:0:
759
Fred Drakeb2625eb2001-05-29 15:34:06 +0000760PyObject_Unicode:PyObject*::+1:
761PyObject_Unicode:PyObject*:o:0:
762
Fred Drake805bf1b1999-10-20 16:03:38 +0000763PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000764PyParser_SimpleParseFile:FILE*:fp::
765PyParser_SimpleParseFile:char*:filename::
766PyParser_SimpleParseFile:int:start::
767
Fred Drake805bf1b1999-10-20 16:03:38 +0000768PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000769PyParser_SimpleParseString:char*:str::
770PyParser_SimpleParseString:int:start::
771
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000772PyRun_AnyFile:int:::
773PyRun_AnyFile:FILE*:fp::
774PyRun_AnyFile:char*:filename::
775
Fred Drake4ca744c2000-08-12 03:39:47 +0000776PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000777PyRun_File:FILE*:fp::
778PyRun_File:char*:filename::
779PyRun_File:int:start::
780PyRun_File:PyObject*:globals:0:
781PyRun_File:PyObject*:locals:0:
782
783PyRun_InteractiveLoop:int:::
784PyRun_InteractiveLoop:FILE*:fp::
785PyRun_InteractiveLoop:char*:filename::
786
787PyRun_InteractiveOne:int:::
788PyRun_InteractiveOne:FILE*:fp::
789PyRun_InteractiveOne:char*:filename::
790
791PyRun_SimpleFile:int:::
792PyRun_SimpleFile:FILE*:fp::
793PyRun_SimpleFile:char*:filename::
794
795PyRun_SimpleString:int:::
796PyRun_SimpleString:char*:command::
797
Fred Drake4ca744c2000-08-12 03:39:47 +0000798PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000799PyRun_String:char*:str::
800PyRun_String:int:start::
801PyRun_String:PyObject*:globals:0:
802PyRun_String:PyObject*:locals:0:
803
804PySequence_Check:int:::
805PySequence_Check:PyObject*:o:0:
806
807PySequence_Concat:PyObject*::+1:
808PySequence_Concat:PyObject*:o1:0:
809PySequence_Concat:PyObject*:o2:0:
810
811PySequence_Count:int:::
812PySequence_Count:PyObject*:o:0:
813PySequence_Count:PyObject*:value:0:
814
815PySequence_DelItem:int:::
816PySequence_DelItem:PyObject*:o:0:
817PySequence_DelItem:int:i::
818
819PySequence_DelSlice:int:::
820PySequence_DelSlice:PyObject*:o:0:
821PySequence_DelSlice:int:i1::
822PySequence_DelSlice:int:i2::
823
Fred Drake81cccb72000-09-12 15:22:05 +0000824PySequence_Fast:PyObject*::+1:
825PySequence_Fast:PyObject*:v:0:
826PySequence_Fast:const char*:m::
827
828PySequence_Fast_GET_ITEM:PyObject*::0:
829PySequence_Fast_GET_ITEM:PyObject*:o:0:
830PySequence_Fast_GET_ITEM:int:i::
831
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000832PySequence_GetItem:PyObject*::+1:
833PySequence_GetItem:PyObject*:o:0:
834PySequence_GetItem:int:i::
835
836PySequence_GetSlice:PyObject*::+1:
837PySequence_GetSlice:PyObject*:o:0:
838PySequence_GetSlice:int:i1::
839PySequence_GetSlice:int:i2::
840
841PySequence_In:int:::
842PySequence_In:PyObject*:o:0:
843PySequence_In:PyObject*:value:0:
844
845PySequence_Index:int:::
846PySequence_Index:PyObject*:o:0:
847PySequence_Index:PyObject*:value:0:
848
Fred Drake1fa93652000-09-22 18:19:37 +0000849PySequence_InPlaceConcat:PyObject*::+1:
850PySequence_InPlaceConcat:PyObject*:s:0:
851PySequence_InPlaceConcat:PyObject*:o:0:
852
853PySequence_InPlaceRepeat:PyObject*::+1:
854PySequence_InPlaceRepeat:PyObject*:s:0:
855PySequence_InPlaceRepeat:PyObject*:o:0:
856
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000857PySequence_Repeat:PyObject*::+1:
858PySequence_Repeat:PyObject*:o:0:
859PySequence_Repeat:int:count::
860
861PySequence_SetItem:int:::
862PySequence_SetItem:PyObject*:o:0:
863PySequence_SetItem:int:i::
864PySequence_SetItem:PyObject*:v:+1:
865
866PySequence_SetSlice:int:::
867PySequence_SetSlice:PyObject*:o:0:
868PySequence_SetSlice:int:i1::
869PySequence_SetSlice:int:i2::
870PySequence_SetSlice:PyObject*:v:+1:
871
Fred Drake1c2d06a2000-06-16 20:00:04 +0000872PySequence_List:PyObject*::+1:
873PySequence_List:PyObject*:o:0:
874
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000875PySequence_Tuple:PyObject*::+1:
876PySequence_Tuple:PyObject*:o:0:
877
878PyString_AS_STRING:char*:::
879PyString_AS_STRING:PyObject*:string:0:
880
Fred Drakeb2625eb2001-05-29 15:34:06 +0000881PyString_AsDecodedObject:PyObject*::+1:
882PyString_AsDecodedObject:PyObject*:str:0:
883PyString_AsDecodedObject:const char*:encoding::
884PyString_AsDecodedObject:const char*:errors::
885
886PyString_AsEncodedObject:PyObject*::+1:
887PyString_AsEncodedObject:PyObject*:str:0:
888PyString_AsEncodedObject:const char*:encoding::
889PyString_AsEncodedObject:const char*:errors::
890
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000891PyString_AsString:char*:::
892PyString_AsString:PyObject*:string:0:
893
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +0000894PyString_AsStringAndSize:int:::
895PyString_AsStringAndSize:PyObject*:obj:0:
896PyString_AsStringAndSize:char**:buffer::
897PyString_AsStringAndSize:int*:length::
898
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000899PyString_Check:int:::
900PyString_Check:PyObject*:o:0:
901
902PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000903PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000904PyString_Concat:PyObject*:newpart:0:
905
906PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000907PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000908PyString_ConcatAndDel:PyObject*:newpart:-1:
909
910PyString_Format:PyObject*::+1:
911PyString_Format:PyObject*:format:0:
912PyString_Format:PyObject*:args:0:
913
914PyString_FromString:PyObject*::+1:
915PyString_FromString:const char*:v::
916
917PyString_FromStringAndSize:PyObject*::+1:
918PyString_FromStringAndSize:const char*:v::
919PyString_FromStringAndSize:int:len::
920
Barry Warsaw8c64a542001-08-28 02:32:04 +0000921PyString_FromFormat:PyObject*::+1:
922PyString_FromFormat:const char*:format::
923PyString_FromFormat::...::
924
925PyString_FromFormatV:PyObject*::+1:
926PyString_FromFormatV:const char*:format::
927PyString_FromFormatV:va_list:vargs::
928
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000929PyString_GET_SIZE:int:::
930PyString_GET_SIZE:PyObject*:string:0:
931
932PyString_InternFromString:PyObject*::+1:
933PyString_InternFromString:const char*:v::
934
935PyString_InternInPlace:void:::
936PyString_InternInPlace:PyObject**:string:+1:???
937
938PyString_Size:int:::
939PyString_Size:PyObject*:string:0:
940
Marc-André Lemburg47073202000-07-07 15:48:54 +0000941PyString_Decode:PyObject*::+1:
942PyString_Decode:const char*:s::
943PyString_Decode:int:size::
944PyString_Decode:const char*:encoding::
945PyString_Decode:const char*:errors::
946
947PyString_Encode:PyObject*::+1:
948PyString_Encode:const char*:s::
949PyString_Encode:int:size::
950PyString_Encode:const char*:encoding::
951PyString_Encode:const char*:errors::
952
953PyString_AsEncodedString:PyObject*::+1:
954PyString_AsEncodedString:PyObject*:str::
955PyString_AsEncodedString:const char*:encoding::
956PyString_AsEncodedString:const char*:errors::
957
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000958PySys_SetArgv:int:::
959PySys_SetArgv:int:argc::
960PySys_SetArgv:char**:argv::
961
962PyThreadState_Clear:void:::
963PyThreadState_Clear:PyThreadState*:tstate::
964
965PyThreadState_Delete:void:::
966PyThreadState_Delete:PyThreadState*:tstate::
967
968PyThreadState_Get:PyThreadState*:::
969
Fred Drakeb2625eb2001-05-29 15:34:06 +0000970PyThreadState_GetDict:PyObject*::0:
971
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000972PyThreadState_New:PyThreadState*:::
973PyThreadState_New:PyInterpreterState*:interp::
974
975PyThreadState_Swap:PyThreadState*:::
976PyThreadState_Swap:PyThreadState*:tstate::
977
978PyTuple_Check:int:::
979PyTuple_Check:PyObject*:p:0:
980
981PyTuple_GET_ITEM:PyObject*::0:
982PyTuple_GET_ITEM:PyTupleObject*:p:0:
983PyTuple_GET_ITEM:int:pos::
984
985PyTuple_GetItem:PyObject*::0:
986PyTuple_GetItem:PyTupleObject*:p:0:
987PyTuple_GetItem:int:pos::
988
989PyTuple_GetSlice:PyObject*::+1:
990PyTuple_GetSlice:PyTupleObject*:p:0:
991PyTuple_GetSlice:int:low::
992PyTuple_GetSlice:int:high::
993
994PyTuple_New:PyObject*::+1:
995PyTuple_New:int:len::
996
997PyTuple_SET_ITEM:void:::
998PyTuple_SET_ITEM:PyTupleObject*:p:0:
999PyTuple_SET_ITEM:int:pos::
1000PyTuple_SET_ITEM:PyObject*:o:0:
1001
1002PyTuple_SetItem:int:::
1003PyTuple_SetItem:PyTupleObject*:p:0:
1004PyTuple_SetItem:int:pos::
1005PyTuple_SetItem:PyObject*:o:0:
1006
1007PyTuple_Size:int:::
1008PyTuple_Size:PyTupleObject*:p:0:
1009
Fred Drake992fe5a2000-06-16 21:04:15 +00001010PyUnicode_Check:int:::
1011PyUnicode_Check:PyObject*:o:0:
1012
1013PyUnicode_GET_SIZE:int:::
1014PyUnicode_GET_SIZE:PyObject*:o:0:
1015
1016PyUnicode_GET_DATA_SIZE:int:::
1017PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1018
1019PyUnicode_AS_UNICODE:Py_UNICODE*:::
1020PyUnicode_AS_UNICODE:PyObject*:o:0:
1021
1022PyUnicode_AS_DATA:const char*:::
1023PyUnicode_AS_DATA:PyObject*:o:0:
1024
1025Py_UNICODE_ISSPACE:int:::
1026Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1027
1028Py_UNICODE_ISLOWER:int:::
1029Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1030
1031Py_UNICODE_ISUPPER:int:::
1032Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1033
1034Py_UNICODE_ISTITLE:int:::
1035Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1036
1037Py_UNICODE_ISLINEBREAK:int:::
1038Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1039
1040Py_UNICODE_ISDECIMAL:int:::
1041Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1042
1043Py_UNICODE_ISDIGIT:int:::
1044Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1045
1046Py_UNICODE_ISNUMERIC:int:::
1047Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1048
1049Py_UNICODE_TOLOWER:Py_UNICODE:::
1050Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1051
1052Py_UNICODE_TOUPPER:Py_UNICODE:::
1053Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1054
1055Py_UNICODE_TOTITLE:Py_UNICODE:::
1056Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1057
1058Py_UNICODE_TODECIMAL:int:::
1059Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1060
1061Py_UNICODE_TODIGIT:int:::
1062Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1063
1064Py_UNICODE_TONUMERIC:double:::
1065Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1066
1067PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001068PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001069PyUnicode_FromUnicode:int:size::
1070
1071PyUnicode_AsUnicode:Py_UNICODE*:::
1072PyUnicode_AsUnicode:PyObject :*unicode:0:
1073
1074PyUnicode_GetSize:int:::
1075PyUnicode_GetSize:PyObject :*unicode:0:
1076
1077PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001078PyUnicode_FromObject:PyObject*:*obj:0:
1079
1080PyUnicode_FromEncodedObject:PyObject*::+1:
1081PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1082PyUnicode_FromEncodedObject:const char*:encoding::
1083PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001084
1085PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001086PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001087PyUnicode_FromWideChar:int:size::
1088
1089PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001090PyUnicode_AsWideChar:PyObject*:*unicode:0:
1091PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001092PyUnicode_AsWideChar:int:size::
1093
1094PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001095PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001096PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001097PyUnicode_Decode:const char*:encoding::
1098PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001099
1100PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001101PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001102PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001103PyUnicode_Encode:const char*:encoding::
1104PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001105
1106PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001107PyUnicode_AsEncodedString:PyObject*:unicode::
1108PyUnicode_AsEncodedString:const char*:encoding::
1109PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001110
1111PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001112PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001113PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001114PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001115
1116PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001117PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001118PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001119PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001120
1121PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001122PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001123
1124PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001125PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001126PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001127PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001128PyUnicode_DecodeUTF16:int*:byteorder::
1129
1130PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001131PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001132PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001133PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001134PyUnicode_EncodeUTF16:int:byteorder::
1135
1136PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001137PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001138
1139PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001140PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001141PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001142PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001143
1144PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001145PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001146PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001147PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001148
1149PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001150PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001151
1152PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001153PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001154PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001155PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001156
1157PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001158PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001159PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001160PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001161
1162PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001163PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001164
1165PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001166PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001167PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001168PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001169
1170PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001171PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001172PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001173PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001174
1175PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001176PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001177
1178PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001179PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001180PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001181PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001182
1183PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001184PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001185PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001186PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001187
1188PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001189PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001190
1191PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001192PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001193PyUnicode_DecodeCharmap:int:size::
1194PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001195PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001196
1197PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001198PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001199PyUnicode_EncodeCharmap:int:size::
1200PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001201PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001202
1203PyUnicode_AsCharmapString:PyObject*::+1:
1204PyUnicode_AsCharmapString:PyObject*:unicode:0:
1205PyUnicode_AsCharmapString:PyObject*:mapping:0:
1206
1207PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001208PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001209PyUnicode_TranslateCharmap:int:size::
1210PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001211PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001212
1213PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001214PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001215PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001216PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001217
1218PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001219PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001220PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001221PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001222
1223PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001224PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001225
1226PyUnicode_Concat:PyObject*::+1:
1227PyUnicode_Concat:PyObject*:left:0:
1228PyUnicode_Concat:PyObject*:right:0:
1229
1230PyUnicode_Split:PyObject*::+1:
1231PyUnicode_Split:PyObject*:left:0:
1232PyUnicode_Split:PyObject*:right:0:
1233PyUnicode_Split:int:maxsplit::
1234
1235PyUnicode_Splitlines:PyObject*::+1:
1236PyUnicode_Splitlines:PyObject*:s:0:
1237PyUnicode_Splitlines:int:maxsplit::
1238
1239PyUnicode_Translate:PyObject*::+1:
1240PyUnicode_Translate:PyObject*:str:0:
1241PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001242PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001243
1244PyUnicode_Join:PyObject*::+1:
1245PyUnicode_Join:PyObject*:separator:0:
1246PyUnicode_Join:PyObject*:seq:0:
1247
1248PyUnicode_Tailmatch:PyObject*::+1:
1249PyUnicode_Tailmatch:PyObject*:str:0:
1250PyUnicode_Tailmatch:PyObject*:substr:0:
1251PyUnicode_Tailmatch:int:start::
1252PyUnicode_Tailmatch:int:end::
1253PyUnicode_Tailmatch:int:direction::
1254
1255PyUnicode_Find:PyObject*::+1:
1256PyUnicode_Find:PyObject*:str:0:
1257PyUnicode_Find:PyObject*:substr:0:
1258PyUnicode_Find:int:start::
1259PyUnicode_Find:int:end::
1260PyUnicode_Find:int:direction::
1261
1262PyUnicode_Count:PyObject*::+1:
1263PyUnicode_Count:PyObject*:str:0:
1264PyUnicode_Count:PyObject*:substr:0:
1265PyUnicode_Count:int:start::
1266PyUnicode_Count:int:end::
1267
1268PyUnicode_Replace:PyObject*::+1:
1269PyUnicode_Replace:PyObject*:str:0:
1270PyUnicode_Replace:PyObject*:substr:0:
1271PyUnicode_Replace:PyObject*:replstr:0:
1272PyUnicode_Replace:int:maxcount::
1273
1274PyUnicode_Compare:int:::
1275PyUnicode_Compare:PyObject*:left:0:
1276PyUnicode_Compare:PyObject*:right:0:
1277
1278PyUnicode_Format:PyObject*::+1:
1279PyUnicode_Format:PyObject*:format:0:
1280PyUnicode_Format:PyObject*:args:0:
1281
1282PyUnicode_Contains:int:::
1283PyUnicode_Contains:PyObject*:container:0:
1284PyUnicode_Contains:PyObject*:element:0:
1285
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001286Py_AtExit:int:::
1287Py_AtExit:void (*)():func::
1288
Fred Drake6d988552001-07-20 20:55:31 +00001289Py_BuildValue:PyObject*::+1:
1290Py_BuildValue:char*:format::
1291
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001292Py_CompileString:PyObject*::+1:
1293Py_CompileString:char*:str::
1294Py_CompileString:char*:filename::
1295Py_CompileString:int:start::
1296
1297Py_DECREF:void:::
1298Py_DECREF:PyObject*:o:-1:
1299
1300Py_EndInterpreter:void:::
1301Py_EndInterpreter:PyThreadState*:tstate::
1302
1303Py_Exit:void:::
1304Py_Exit:int:status::
1305
1306Py_FatalError:void:::
1307Py_FatalError:char*:message::
1308
1309Py_FdIsInteractive:int:::
1310Py_FdIsInteractive:FILE*:fp::
1311Py_FdIsInteractive:char*:filename::
1312
1313Py_Finalize:void:::
1314
Fred Drake8520cc22000-04-10 19:38:24 +00001315Py_FindMethod:PyObject*::+1:
1316Py_FindMethod:PyMethodDef[]:methods::
1317Py_FindMethod:PyObject*:self:+1:
1318Py_FindMethod:char*:name::
1319
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001320Py_GetBuildInfoconst:char*:::
1321
1322Py_GetCompilerconst:char*:::
1323
1324Py_GetCopyrightconst:char*:::
1325
1326Py_GetExecPrefix:char*:::
1327
1328Py_GetPath:char*:::
1329
1330Py_GetPlatformconst:char*:::
1331
1332Py_GetPrefix:char*:::
1333
1334Py_GetProgramFullPath:char*:::
1335
1336Py_GetProgramName:char*:::
1337
1338Py_GetVersionconst:char*:::
1339
1340Py_INCREF:void:::
1341Py_INCREF:PyObject*:o:+1:
1342
1343Py_Initialize:void:::
1344
1345Py_IsInitialized:int:::
1346
1347Py_NewInterpreter:PyThreadState*:::
1348
1349Py_SetProgramName:void:::
1350Py_SetProgramName:char*:name::
1351
1352Py_XDECREF:void:::
1353Py_XDECREF:PyObject*:o:-1:if o is not NULL
1354
1355Py_XINCREF:void:::
1356Py_XINCREF:PyObject*:o:+1:if o is not NULL
1357
1358_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1359_PyImport_FindExtension:char*:::
1360_PyImport_FindExtension:char*:::
1361
1362_PyImport_Fini:void:::
1363
1364_PyImport_FixupExtension:PyObject*:::???
1365_PyImport_FixupExtension:char*:::
1366_PyImport_FixupExtension:char*:::
1367
1368_PyImport_Init:void:::
1369
Fred Drakef913e542000-09-12 20:17:17 +00001370_PyObject_Del:void:::
1371_PyObject_Del:PyObject*:op:0:
1372
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001373_PyObject_New:PyObject*::+1:
1374_PyObject_New:PyTypeObject*:type:0:
1375
Fred Drake8e0c09d2001-07-06 23:31:49 +00001376_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001377_PyObject_NewVar:PyTypeObject*:type:0:
1378_PyObject_NewVar:int:size::
1379
1380_PyString_Resize:int:::
1381_PyString_Resize:PyObject**:string:+1:
1382_PyString_Resize:int:newsize::
1383
1384_PyTuple_Resize:int:::
1385_PyTuple_Resize:PyTupleObject**:p:+1:
1386_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001387
1388_Py_c_diff:Py_complex:::
1389_Py_c_diff:Py_complex:left::
1390_Py_c_diff:Py_complex:right::
1391
1392_Py_c_neg:Py_complex:::
1393_Py_c_neg:Py_complex:complex::
1394
1395_Py_c_pow:Py_complex:::
1396_Py_c_pow:Py_complex:num::
1397_Py_c_pow:Py_complex:exp::
1398
1399_Py_c_prod:Py_complex:::
1400_Py_c_prod:Py_complex:left::
1401_Py_c_prod:Py_complex:right::
1402
1403_Py_c_quot:Py_complex:::
1404_Py_c_quot:Py_complex:dividend::
1405_Py_c_quot:Py_complex:divisor::
1406
1407_Py_c_sum:Py_complex:::
1408_Py_c_sum:Py_complex:left::
1409_Py_c_sum:Py_complex:right::