blob: 749d9b6ade55cf74e45a05d2e7fa2f53350fab9a [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
Fred Drake8e0c09d2001-07-06 23:31:49 +0000707PyObject_NEW:PyObject*::+1:
708
709PyObject_New:PyObject*::+1:
710
711PyObject_NEW_VAR:PyObject*::+1:
712
713PyObject_NewVar:PyObject*::+1:
714
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000715PyObject_Print:int:::
716PyObject_Print:PyObject*:o:0:
717PyObject_Print:FILE*:fp::
718PyObject_Print:int:flags::
719
720PyObject_Repr:PyObject*::+1:
721PyObject_Repr:PyObject*:o:0:
722
723PyObject_SetAttr:int:::
724PyObject_SetAttr:PyObject*:o:0:
725PyObject_SetAttr:PyObject*:attr_name:0:
726PyObject_SetAttr:PyObject*:v:+1:
727
728PyObject_SetAttrString:int:::
729PyObject_SetAttrString:PyObject*:o:0:
730PyObject_SetAttrString:char*:attr_name::
731PyObject_SetAttrString:PyObject*:v:+1:
732
733PyObject_SetItem:int:::
734PyObject_SetItem:PyObject*:o:0:
735PyObject_SetItem:PyObject*:key:0:
736PyObject_SetItem:PyObject*:v:+1:
737
738PyObject_Str:PyObject*::+1:
739PyObject_Str:PyObject*:o:0:
740
741PyObject_Type:PyObject*::+1:
742PyObject_Type:PyObject*:o:0:
743
Fred Drakeb2625eb2001-05-29 15:34:06 +0000744PyObject_Unicode:PyObject*::+1:
745PyObject_Unicode:PyObject*:o:0:
746
Fred Drake805bf1b1999-10-20 16:03:38 +0000747PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000748PyParser_SimpleParseFile:FILE*:fp::
749PyParser_SimpleParseFile:char*:filename::
750PyParser_SimpleParseFile:int:start::
751
Fred Drake805bf1b1999-10-20 16:03:38 +0000752PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000753PyParser_SimpleParseString:char*:str::
754PyParser_SimpleParseString:int:start::
755
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000756PyRun_AnyFile:int:::
757PyRun_AnyFile:FILE*:fp::
758PyRun_AnyFile:char*:filename::
759
Fred Drake4ca744c2000-08-12 03:39:47 +0000760PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000761PyRun_File:FILE*:fp::
762PyRun_File:char*:filename::
763PyRun_File:int:start::
764PyRun_File:PyObject*:globals:0:
765PyRun_File:PyObject*:locals:0:
766
767PyRun_InteractiveLoop:int:::
768PyRun_InteractiveLoop:FILE*:fp::
769PyRun_InteractiveLoop:char*:filename::
770
771PyRun_InteractiveOne:int:::
772PyRun_InteractiveOne:FILE*:fp::
773PyRun_InteractiveOne:char*:filename::
774
775PyRun_SimpleFile:int:::
776PyRun_SimpleFile:FILE*:fp::
777PyRun_SimpleFile:char*:filename::
778
779PyRun_SimpleString:int:::
780PyRun_SimpleString:char*:command::
781
Fred Drake4ca744c2000-08-12 03:39:47 +0000782PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000783PyRun_String:char*:str::
784PyRun_String:int:start::
785PyRun_String:PyObject*:globals:0:
786PyRun_String:PyObject*:locals:0:
787
788PySequence_Check:int:::
789PySequence_Check:PyObject*:o:0:
790
791PySequence_Concat:PyObject*::+1:
792PySequence_Concat:PyObject*:o1:0:
793PySequence_Concat:PyObject*:o2:0:
794
795PySequence_Count:int:::
796PySequence_Count:PyObject*:o:0:
797PySequence_Count:PyObject*:value:0:
798
799PySequence_DelItem:int:::
800PySequence_DelItem:PyObject*:o:0:
801PySequence_DelItem:int:i::
802
803PySequence_DelSlice:int:::
804PySequence_DelSlice:PyObject*:o:0:
805PySequence_DelSlice:int:i1::
806PySequence_DelSlice:int:i2::
807
Fred Drake81cccb72000-09-12 15:22:05 +0000808PySequence_Fast:PyObject*::+1:
809PySequence_Fast:PyObject*:v:0:
810PySequence_Fast:const char*:m::
811
812PySequence_Fast_GET_ITEM:PyObject*::0:
813PySequence_Fast_GET_ITEM:PyObject*:o:0:
814PySequence_Fast_GET_ITEM:int:i::
815
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000816PySequence_GetItem:PyObject*::+1:
817PySequence_GetItem:PyObject*:o:0:
818PySequence_GetItem:int:i::
819
820PySequence_GetSlice:PyObject*::+1:
821PySequence_GetSlice:PyObject*:o:0:
822PySequence_GetSlice:int:i1::
823PySequence_GetSlice:int:i2::
824
825PySequence_In:int:::
826PySequence_In:PyObject*:o:0:
827PySequence_In:PyObject*:value:0:
828
829PySequence_Index:int:::
830PySequence_Index:PyObject*:o:0:
831PySequence_Index:PyObject*:value:0:
832
Fred Drake1fa93652000-09-22 18:19:37 +0000833PySequence_InPlaceConcat:PyObject*::+1:
834PySequence_InPlaceConcat:PyObject*:s:0:
835PySequence_InPlaceConcat:PyObject*:o:0:
836
837PySequence_InPlaceRepeat:PyObject*::+1:
838PySequence_InPlaceRepeat:PyObject*:s:0:
839PySequence_InPlaceRepeat:PyObject*:o:0:
840
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000841PySequence_Repeat:PyObject*::+1:
842PySequence_Repeat:PyObject*:o:0:
843PySequence_Repeat:int:count::
844
845PySequence_SetItem:int:::
846PySequence_SetItem:PyObject*:o:0:
847PySequence_SetItem:int:i::
848PySequence_SetItem:PyObject*:v:+1:
849
850PySequence_SetSlice:int:::
851PySequence_SetSlice:PyObject*:o:0:
852PySequence_SetSlice:int:i1::
853PySequence_SetSlice:int:i2::
854PySequence_SetSlice:PyObject*:v:+1:
855
Fred Drake1c2d06a2000-06-16 20:00:04 +0000856PySequence_List:PyObject*::+1:
857PySequence_List:PyObject*:o:0:
858
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000859PySequence_Tuple:PyObject*::+1:
860PySequence_Tuple:PyObject*:o:0:
861
862PyString_AS_STRING:char*:::
863PyString_AS_STRING:PyObject*:string:0:
864
Fred Drakeb2625eb2001-05-29 15:34:06 +0000865PyString_AsDecodedObject:PyObject*::+1:
866PyString_AsDecodedObject:PyObject*:str:0:
867PyString_AsDecodedObject:const char*:encoding::
868PyString_AsDecodedObject:const char*:errors::
869
870PyString_AsEncodedObject:PyObject*::+1:
871PyString_AsEncodedObject:PyObject*:str:0:
872PyString_AsEncodedObject:const char*:encoding::
873PyString_AsEncodedObject:const char*:errors::
874
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000875PyString_AsString:char*:::
876PyString_AsString:PyObject*:string:0:
877
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +0000878PyString_AsStringAndSize:int:::
879PyString_AsStringAndSize:PyObject*:obj:0:
880PyString_AsStringAndSize:char**:buffer::
881PyString_AsStringAndSize:int*:length::
882
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000883PyString_Check:int:::
884PyString_Check:PyObject*:o:0:
885
886PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000887PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000888PyString_Concat:PyObject*:newpart:0:
889
890PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000891PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000892PyString_ConcatAndDel:PyObject*:newpart:-1:
893
894PyString_Format:PyObject*::+1:
895PyString_Format:PyObject*:format:0:
896PyString_Format:PyObject*:args:0:
897
898PyString_FromString:PyObject*::+1:
899PyString_FromString:const char*:v::
900
901PyString_FromStringAndSize:PyObject*::+1:
902PyString_FromStringAndSize:const char*:v::
903PyString_FromStringAndSize:int:len::
904
905PyString_GET_SIZE:int:::
906PyString_GET_SIZE:PyObject*:string:0:
907
908PyString_InternFromString:PyObject*::+1:
909PyString_InternFromString:const char*:v::
910
911PyString_InternInPlace:void:::
912PyString_InternInPlace:PyObject**:string:+1:???
913
914PyString_Size:int:::
915PyString_Size:PyObject*:string:0:
916
Marc-André Lemburg47073202000-07-07 15:48:54 +0000917PyString_Decode:PyObject*::+1:
918PyString_Decode:const char*:s::
919PyString_Decode:int:size::
920PyString_Decode:const char*:encoding::
921PyString_Decode:const char*:errors::
922
923PyString_Encode:PyObject*::+1:
924PyString_Encode:const char*:s::
925PyString_Encode:int:size::
926PyString_Encode:const char*:encoding::
927PyString_Encode:const char*:errors::
928
929PyString_AsEncodedString:PyObject*::+1:
930PyString_AsEncodedString:PyObject*:str::
931PyString_AsEncodedString:const char*:encoding::
932PyString_AsEncodedString:const char*:errors::
933
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000934PySys_SetArgv:int:::
935PySys_SetArgv:int:argc::
936PySys_SetArgv:char**:argv::
937
938PyThreadState_Clear:void:::
939PyThreadState_Clear:PyThreadState*:tstate::
940
941PyThreadState_Delete:void:::
942PyThreadState_Delete:PyThreadState*:tstate::
943
944PyThreadState_Get:PyThreadState*:::
945
Fred Drakeb2625eb2001-05-29 15:34:06 +0000946PyThreadState_GetDict:PyObject*::0:
947
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000948PyThreadState_New:PyThreadState*:::
949PyThreadState_New:PyInterpreterState*:interp::
950
951PyThreadState_Swap:PyThreadState*:::
952PyThreadState_Swap:PyThreadState*:tstate::
953
954PyTuple_Check:int:::
955PyTuple_Check:PyObject*:p:0:
956
957PyTuple_GET_ITEM:PyObject*::0:
958PyTuple_GET_ITEM:PyTupleObject*:p:0:
959PyTuple_GET_ITEM:int:pos::
960
961PyTuple_GetItem:PyObject*::0:
962PyTuple_GetItem:PyTupleObject*:p:0:
963PyTuple_GetItem:int:pos::
964
965PyTuple_GetSlice:PyObject*::+1:
966PyTuple_GetSlice:PyTupleObject*:p:0:
967PyTuple_GetSlice:int:low::
968PyTuple_GetSlice:int:high::
969
970PyTuple_New:PyObject*::+1:
971PyTuple_New:int:len::
972
973PyTuple_SET_ITEM:void:::
974PyTuple_SET_ITEM:PyTupleObject*:p:0:
975PyTuple_SET_ITEM:int:pos::
976PyTuple_SET_ITEM:PyObject*:o:0:
977
978PyTuple_SetItem:int:::
979PyTuple_SetItem:PyTupleObject*:p:0:
980PyTuple_SetItem:int:pos::
981PyTuple_SetItem:PyObject*:o:0:
982
983PyTuple_Size:int:::
984PyTuple_Size:PyTupleObject*:p:0:
985
Fred Drake992fe5a2000-06-16 21:04:15 +0000986PyUnicode_Check:int:::
987PyUnicode_Check:PyObject*:o:0:
988
989PyUnicode_GET_SIZE:int:::
990PyUnicode_GET_SIZE:PyObject*:o:0:
991
992PyUnicode_GET_DATA_SIZE:int:::
993PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
994
995PyUnicode_AS_UNICODE:Py_UNICODE*:::
996PyUnicode_AS_UNICODE:PyObject*:o:0:
997
998PyUnicode_AS_DATA:const char*:::
999PyUnicode_AS_DATA:PyObject*:o:0:
1000
1001Py_UNICODE_ISSPACE:int:::
1002Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1003
1004Py_UNICODE_ISLOWER:int:::
1005Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1006
1007Py_UNICODE_ISUPPER:int:::
1008Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1009
1010Py_UNICODE_ISTITLE:int:::
1011Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1012
1013Py_UNICODE_ISLINEBREAK:int:::
1014Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1015
1016Py_UNICODE_ISDECIMAL:int:::
1017Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1018
1019Py_UNICODE_ISDIGIT:int:::
1020Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1021
1022Py_UNICODE_ISNUMERIC:int:::
1023Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1024
1025Py_UNICODE_TOLOWER:Py_UNICODE:::
1026Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1027
1028Py_UNICODE_TOUPPER:Py_UNICODE:::
1029Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1030
1031Py_UNICODE_TOTITLE:Py_UNICODE:::
1032Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1033
1034Py_UNICODE_TODECIMAL:int:::
1035Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1036
1037Py_UNICODE_TODIGIT:int:::
1038Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1039
1040Py_UNICODE_TONUMERIC:double:::
1041Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1042
1043PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001044PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001045PyUnicode_FromUnicode:int:size::
1046
1047PyUnicode_AsUnicode:Py_UNICODE*:::
1048PyUnicode_AsUnicode:PyObject :*unicode:0:
1049
1050PyUnicode_GetSize:int:::
1051PyUnicode_GetSize:PyObject :*unicode:0:
1052
1053PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001054PyUnicode_FromObject:PyObject*:*obj:0:
1055
1056PyUnicode_FromEncodedObject:PyObject*::+1:
1057PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1058PyUnicode_FromEncodedObject:const char*:encoding::
1059PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001060
1061PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001062PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001063PyUnicode_FromWideChar:int:size::
1064
1065PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001066PyUnicode_AsWideChar:PyObject*:*unicode:0:
1067PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001068PyUnicode_AsWideChar:int:size::
1069
1070PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001071PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001072PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001073PyUnicode_Decode:const char*:encoding::
1074PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001075
1076PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001077PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001078PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001079PyUnicode_Encode:const char*:encoding::
1080PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001081
1082PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001083PyUnicode_AsEncodedString:PyObject*:unicode::
1084PyUnicode_AsEncodedString:const char*:encoding::
1085PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001086
1087PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001088PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001089PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001090PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001091
1092PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001093PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001094PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001095PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001096
1097PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001098PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001099
1100PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001101PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001102PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001103PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001104PyUnicode_DecodeUTF16:int*:byteorder::
1105
1106PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001107PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001108PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001109PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001110PyUnicode_EncodeUTF16:int:byteorder::
1111
1112PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001113PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001114
1115PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001116PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001117PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001118PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001119
1120PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001121PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001122PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001123PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001124
1125PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001126PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001127
1128PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001129PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001130PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001131PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001132
1133PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001134PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001135PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001136PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001137
1138PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001139PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001140
1141PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001142PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001143PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001144PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001145
1146PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001147PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001148PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001149PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001150
1151PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001152PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001153
1154PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001155PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001156PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001157PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001158
1159PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001160PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001161PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001162PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001163
1164PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001165PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001166
1167PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001168PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001169PyUnicode_DecodeCharmap:int:size::
1170PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001171PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001172
1173PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001174PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001175PyUnicode_EncodeCharmap:int:size::
1176PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001177PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001178
1179PyUnicode_AsCharmapString:PyObject*::+1:
1180PyUnicode_AsCharmapString:PyObject*:unicode:0:
1181PyUnicode_AsCharmapString:PyObject*:mapping:0:
1182
1183PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001184PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001185PyUnicode_TranslateCharmap:int:size::
1186PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001187PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001188
1189PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001190PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001191PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001192PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001193
1194PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001195PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001196PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001197PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001198
1199PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001200PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001201
1202PyUnicode_Concat:PyObject*::+1:
1203PyUnicode_Concat:PyObject*:left:0:
1204PyUnicode_Concat:PyObject*:right:0:
1205
1206PyUnicode_Split:PyObject*::+1:
1207PyUnicode_Split:PyObject*:left:0:
1208PyUnicode_Split:PyObject*:right:0:
1209PyUnicode_Split:int:maxsplit::
1210
1211PyUnicode_Splitlines:PyObject*::+1:
1212PyUnicode_Splitlines:PyObject*:s:0:
1213PyUnicode_Splitlines:int:maxsplit::
1214
1215PyUnicode_Translate:PyObject*::+1:
1216PyUnicode_Translate:PyObject*:str:0:
1217PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001218PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001219
1220PyUnicode_Join:PyObject*::+1:
1221PyUnicode_Join:PyObject*:separator:0:
1222PyUnicode_Join:PyObject*:seq:0:
1223
1224PyUnicode_Tailmatch:PyObject*::+1:
1225PyUnicode_Tailmatch:PyObject*:str:0:
1226PyUnicode_Tailmatch:PyObject*:substr:0:
1227PyUnicode_Tailmatch:int:start::
1228PyUnicode_Tailmatch:int:end::
1229PyUnicode_Tailmatch:int:direction::
1230
1231PyUnicode_Find:PyObject*::+1:
1232PyUnicode_Find:PyObject*:str:0:
1233PyUnicode_Find:PyObject*:substr:0:
1234PyUnicode_Find:int:start::
1235PyUnicode_Find:int:end::
1236PyUnicode_Find:int:direction::
1237
1238PyUnicode_Count:PyObject*::+1:
1239PyUnicode_Count:PyObject*:str:0:
1240PyUnicode_Count:PyObject*:substr:0:
1241PyUnicode_Count:int:start::
1242PyUnicode_Count:int:end::
1243
1244PyUnicode_Replace:PyObject*::+1:
1245PyUnicode_Replace:PyObject*:str:0:
1246PyUnicode_Replace:PyObject*:substr:0:
1247PyUnicode_Replace:PyObject*:replstr:0:
1248PyUnicode_Replace:int:maxcount::
1249
1250PyUnicode_Compare:int:::
1251PyUnicode_Compare:PyObject*:left:0:
1252PyUnicode_Compare:PyObject*:right:0:
1253
1254PyUnicode_Format:PyObject*::+1:
1255PyUnicode_Format:PyObject*:format:0:
1256PyUnicode_Format:PyObject*:args:0:
1257
1258PyUnicode_Contains:int:::
1259PyUnicode_Contains:PyObject*:container:0:
1260PyUnicode_Contains:PyObject*:element:0:
1261
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001262Py_AtExit:int:::
1263Py_AtExit:void (*)():func::
1264
1265Py_CompileString:PyObject*::+1:
1266Py_CompileString:char*:str::
1267Py_CompileString:char*:filename::
1268Py_CompileString:int:start::
1269
1270Py_DECREF:void:::
1271Py_DECREF:PyObject*:o:-1:
1272
1273Py_EndInterpreter:void:::
1274Py_EndInterpreter:PyThreadState*:tstate::
1275
1276Py_Exit:void:::
1277Py_Exit:int:status::
1278
1279Py_FatalError:void:::
1280Py_FatalError:char*:message::
1281
1282Py_FdIsInteractive:int:::
1283Py_FdIsInteractive:FILE*:fp::
1284Py_FdIsInteractive:char*:filename::
1285
1286Py_Finalize:void:::
1287
Fred Drake8520cc22000-04-10 19:38:24 +00001288Py_FindMethod:PyObject*::+1:
1289Py_FindMethod:PyMethodDef[]:methods::
1290Py_FindMethod:PyObject*:self:+1:
1291Py_FindMethod:char*:name::
1292
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001293Py_GetBuildInfoconst:char*:::
1294
1295Py_GetCompilerconst:char*:::
1296
1297Py_GetCopyrightconst:char*:::
1298
1299Py_GetExecPrefix:char*:::
1300
1301Py_GetPath:char*:::
1302
1303Py_GetPlatformconst:char*:::
1304
1305Py_GetPrefix:char*:::
1306
1307Py_GetProgramFullPath:char*:::
1308
1309Py_GetProgramName:char*:::
1310
1311Py_GetVersionconst:char*:::
1312
1313Py_INCREF:void:::
1314Py_INCREF:PyObject*:o:+1:
1315
1316Py_Initialize:void:::
1317
1318Py_IsInitialized:int:::
1319
1320Py_NewInterpreter:PyThreadState*:::
1321
1322Py_SetProgramName:void:::
1323Py_SetProgramName:char*:name::
1324
1325Py_XDECREF:void:::
1326Py_XDECREF:PyObject*:o:-1:if o is not NULL
1327
1328Py_XINCREF:void:::
1329Py_XINCREF:PyObject*:o:+1:if o is not NULL
1330
1331_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1332_PyImport_FindExtension:char*:::
1333_PyImport_FindExtension:char*:::
1334
1335_PyImport_Fini:void:::
1336
1337_PyImport_FixupExtension:PyObject*:::???
1338_PyImport_FixupExtension:char*:::
1339_PyImport_FixupExtension:char*:::
1340
1341_PyImport_Init:void:::
1342
Fred Drakef913e542000-09-12 20:17:17 +00001343_PyObject_Del:void:::
1344_PyObject_Del:PyObject*:op:0:
1345
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001346_PyObject_New:PyObject*::+1:
1347_PyObject_New:PyTypeObject*:type:0:
1348
Fred Drake8e0c09d2001-07-06 23:31:49 +00001349_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001350_PyObject_NewVar:PyTypeObject*:type:0:
1351_PyObject_NewVar:int:size::
1352
1353_PyString_Resize:int:::
1354_PyString_Resize:PyObject**:string:+1:
1355_PyString_Resize:int:newsize::
1356
1357_PyTuple_Resize:int:::
1358_PyTuple_Resize:PyTupleObject**:p:+1:
1359_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001360
1361_Py_c_diff:Py_complex:::
1362_Py_c_diff:Py_complex:left::
1363_Py_c_diff:Py_complex:right::
1364
1365_Py_c_neg:Py_complex:::
1366_Py_c_neg:Py_complex:complex::
1367
1368_Py_c_pow:Py_complex:::
1369_Py_c_pow:Py_complex:num::
1370_Py_c_pow:Py_complex:exp::
1371
1372_Py_c_prod:Py_complex:::
1373_Py_c_prod:Py_complex:left::
1374_Py_c_prod:Py_complex:right::
1375
1376_Py_c_quot:Py_complex:::
1377_Py_c_quot:Py_complex:dividend::
1378_Py_c_quot:Py_complex:divisor::
1379
1380_Py_c_sum:Py_complex:::
1381_Py_c_sum:Py_complex:left::
1382_Py_c_sum:Py_complex:right::