blob: b063e3c628daf0bf1b4739de9e4afc2c6d06c519 [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
Fred Drake9c75ff72001-09-06 18:06:46 +0000191PyErr_SetFromErrnoWithFilename:PyObject*::null:
192PyErr_SetFromErrnoWithFilename:PyObject*:type:0:
193PyErr_SetFromErrnoWithFilename:char*:filename::
194
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000195PyErr_SetInterrupt:void:::
196
197PyErr_SetNone:void:::
198PyErr_SetNone:PyObject*:type:+1:
199
200PyErr_SetObject:void:::
201PyErr_SetObject:PyObject*:type:+1:
202PyErr_SetObject:PyObject*:value:+1:
203
204PyErr_SetString:void:::
205PyErr_SetString:PyObject*:type:+1:
206PyErr_SetString:char*:message::
207
Jeremy Hylton98605b52000-04-10 18:40:57 +0000208PyErr_Format:PyObject*::null:
209PyErr_Format:PyObject*:exception:+1:
210PyErr_Format:char*:format::
211PyErr_Format::...::
212
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000213PyErr_Warn:int:::
Guido van Rossume22e4b22000-12-19 03:58:11 +0000214PyErr_Warn:PyObject*:category:0:
Guido van Rossum9a18a7e2000-12-19 03:53:57 +0000215PyErr_Warn:char*:message::
216
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000217PyEval_AcquireLock:void:::
218
219PyEval_AcquireThread:void:::
220PyEval_AcquireThread:PyThreadState*:tstate::
221
222PyEval_InitThreads:void:::
223
224PyEval_ReleaseLock:void:::
225
226PyEval_ReleaseThread:void:::
227PyEval_ReleaseThread:PyThreadState*:tstate::
228
229PyEval_RestoreThread:void:::
230PyEval_RestoreThread:PyThreadState*:tstate::
231
232PyEval_SaveThread:PyThreadState*:::
233
Fred Drake4ca744c2000-08-12 03:39:47 +0000234PyEval_EvalCode:PyObject*::+1:
235PyEval_EvalCode:PyCodeObject*:co:0:
236PyEval_EvalCode:PyObject*:globals:0:
237PyEval_EvalCode:PyObject*:locals:0:
238
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000239PyFile_AsFile:FILE*:::
240PyFile_AsFile:PyFileObject*:p:0:
241
242PyFile_Check:int:::
243PyFile_Check:PyObject*:p:0:
244
245PyFile_FromFile:PyObject*::+1:
246PyFile_FromFile:FILE*:fp::
247PyFile_FromFile:char*:name::
248PyFile_FromFile:char*:mode::
249PyFile_FromFile:int(*:close)::
250
251PyFile_FromString:PyObject*::+1:
252PyFile_FromString:char*:name::
253PyFile_FromString:char*:mode::
254
255PyFile_GetLine:PyObject*::+1:
256PyFile_GetLine:PyObject*:p::
257PyFile_GetLine:int:n::
258
259PyFile_Name:PyObject*::0:
260PyFile_Name:PyObject*:p:0:
261
262PyFile_SetBufSize:void:::
263PyFile_SetBufSize:PyFileObject*:p:0:
264PyFile_SetBufSize:int:n::
265
266PyFile_SoftSpace:int:::
267PyFile_SoftSpace:PyFileObject*:p:0:
268PyFile_SoftSpace:int:newflag::
269
270PyFile_WriteObject:int:::
271PyFile_WriteObject:PyObject*:obj:0:
272PyFile_WriteObject:PyFileObject*:p:0:
273PyFile_WriteObject:int:flags::
274
275PyFile_WriteString:int:::
276PyFile_WriteString:char*:s::
277PyFile_WriteString:PyFileObject*:p:0:
278PyFile_WriteString:int:flags::
279
280PyFloat_AS_DOUBLE:double:::
281PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
282
283PyFloat_AsDouble:double:::
284PyFloat_AsDouble:PyObject*:pyfloat:0:
285
286PyFloat_Check:int:::
287PyFloat_Check:PyObject*:p:0:
288
289PyFloat_FromDouble:PyObject*::+1:
290PyFloat_FromDouble:double:v::
291
Fred Drakeee814bf2000-11-28 22:34:32 +0000292Py_InitModule:PyObject*::0:
293Py_InitModule:name:char*::
294Py_InitModule:methods:PyMethodDef[]::
295
296Py_InitModule3:PyObject*::0:
297Py_InitModule3:name:char*::
298Py_InitModule3:methods:PyMethodDef[]::
299Py_InitModule3:doc:char*::
300
301Py_InitModule4:PyObject*::0:
302Py_InitModule4:name:char*::
303Py_InitModule4:methods:PyMethodDef[]::
304Py_InitModule4:doc:char*::
305Py_InitModule4:self:PyObject*::
306Py_InitModule4:apiver:int::usually provided by Py_InitModule or Py_InitModule3
307
Fred Drake805bf1b1999-10-20 16:03:38 +0000308PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000309PyImport_AddModule:char*:name::
310
311PyImport_Cleanup:void:::
312
313PyImport_ExecCodeModule:PyObject*::+1:
314PyImport_ExecCodeModule:char*:name::
315PyImport_ExecCodeModule:PyObject*:co:0:
316
317PyImport_GetMagicNumber:long:::
318
319PyImport_GetModuleDict:PyObject*::0:
320
321PyImport_Import:PyObject*::+1:
322PyImport_Import:PyObject*:name:0:
323
324PyImport_ImportFrozenModule:int:::
325PyImport_ImportFrozenModule:char*:::
326
Fred Drakeeb725cd2000-04-03 15:06:40 +0000327PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000328PyImport_ImportModule:char*:name::
329
Fred Drakeeb725cd2000-04-03 15:06:40 +0000330PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000331PyImport_ImportModuleEx:char*:name::
332PyImport_ImportModuleEx:PyObject*:globals:0:???
333PyImport_ImportModuleEx:PyObject*:locals:0:???
334PyImport_ImportModuleEx:PyObject*:fromlist:0:???
335
Fred Drakeeb725cd2000-04-03 15:06:40 +0000336PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000337PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000338
Fred Drake5838d0f2001-01-28 06:39:35 +0000339PyInstance_New:PyObject*::+1:
340PyInstance_New:PyObject*:klass:+1:
341PyInstance_New:PyObject*:arg:0:
342PyInstance_New:PyObject*:kw:0:
343
344PyInstance_NewRaw:PyObject*::+1:
345PyInstance_NewRaw:PyObject*:klass:+1:
346PyInstance_NewRaw:PyObject*:dict:+1:
347
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000348PyInt_AS_LONG:long:::
349PyInt_AS_LONG:PyIntObject*:io:0:
350
351PyInt_AsLong:long:::
352PyInt_AsLong:PyObject*:io:0:
353
354PyInt_Check:int:::
Fred Drake9c75ff72001-09-06 18:06:46 +0000355PyInt_Check:PyObject*:op:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000356
357PyInt_FromLong:PyObject*::+1:
358PyInt_FromLong:long:ival::
359
360PyInt_GetMax:long:::
361
362PyInterpreterState_Clear:void:::
363PyInterpreterState_Clear:PyInterpreterState*:interp::
364
365PyInterpreterState_Delete:void:::
366PyInterpreterState_Delete:PyInterpreterState*:interp::
367
368PyInterpreterState_New:PyInterpreterState*:::
369
Fred Drakeb2625eb2001-05-29 15:34:06 +0000370PyIter_Check:int:o:0:
371
372PyIter_Next:PyObject*::+1:
373PyIter_Next:PyObject*:o:0:
374
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000375PyList_Append:int:::
376PyList_Append:PyObject*:list:0:
377PyList_Append:PyObject*:item:+1:
378
379PyList_AsTuple:PyObject*::+1:
380PyList_AsTuple:PyObject*:list:0:
381
382PyList_Check:int:::
383PyList_Check:PyObject*:p:0:
384
385PyList_GET_ITEM:PyObject*::0:
386PyList_GET_ITEM:PyObject*:list:0:
387PyList_GET_ITEM:int:i:0:
388
389PyList_GET_SIZE:int:::
390PyList_GET_SIZE:PyObject*:list:0:
391
392PyList_GetItem:PyObject*::0:
393PyList_GetItem:PyObject*:list:0:
394PyList_GetItem:int:index::
395
396PyList_GetSlice:PyObject*::+1:
397PyList_GetSlice:PyObject*:list:0:
398PyList_GetSlice:int:low::
399PyList_GetSlice:int:high::
400
401PyList_Insert:int:::
402PyList_Insert:PyObject*:list:0:
403PyList_Insert:int:index::
404PyList_Insert:PyObject*:item:+1:
405
406PyList_New:PyObject*::+1:
407PyList_New:int:len::
408
409PyList_Reverse:int:::
410PyList_Reverse:PyObject*:list:0:
411
Fred Draked8548312001-07-10 16:19:13 +0000412PyList_SET_ITEM:void:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000413PyList_SET_ITEM:PyObject*:list:0:
414PyList_SET_ITEM:int:i::
415PyList_SET_ITEM:PyObject*:o:0:
416
417PyList_SetItem:int:::
418PyList_SetItem:PyObject*:list:0:
419PyList_SetItem:int:index::
420PyList_SetItem:PyObject*:item:0:
421
422PyList_SetSlice:int:::
423PyList_SetSlice:PyObject*:list:0:
424PyList_SetSlice:int:low::
425PyList_SetSlice:int:high::
426PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
427
428PyList_Size:int:::
429PyList_Size:PyObject*:list:0:
430
431PyList_Sort:int:::
432PyList_Sort:PyObject*:list:0:
433
434PyLong_AsDouble:double:::
435PyLong_AsDouble:PyObject*:pylong:0:
436
437PyLong_AsLong:long:::
438PyLong_AsLong:PyObject*:pylong:0:
439
440PyLong_AsUnsignedLong:unsigned long:::
441PyLong_AsUnsignedLong:PyObject*:pylong:0:
442
443PyLong_Check:int:::
444PyLong_Check:PyObject*:p:0:
445
446PyLong_FromDouble:PyObject*::+1:
447PyLong_FromDouble:double:v::
448
449PyLong_FromLong:PyObject*::+1:
450PyLong_FromLong:long:v::
451
452PyLong_FromString:PyObject*::+1:
453PyLong_FromString:char*:str::
454PyLong_FromString:char**:pend::
455PyLong_FromString:int:base::
456
457PyLong_FromUnsignedLong:PyObject*::+1:
458PyLong_FromUnsignedLong:unsignedlong:v::
459
460PyMapping_Check:int:::
461PyMapping_Check:PyObject*:o:0:
462
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000463PyMapping_DelItem:int:::
464PyMapping_DelItem:PyObject*:o:0:
465PyMapping_DelItem:PyObject*:key:0:
466
467PyMapping_DelItemString:int:::
468PyMapping_DelItemString:PyObject*:o:0:
469PyMapping_DelItemString:char*:key::
470
471PyMapping_GetItemString:PyObject*::+1:
472PyMapping_GetItemString:PyObject*:o:0:
473PyMapping_GetItemString:char*:key::
474
475PyMapping_HasKey:int:::
476PyMapping_HasKey:PyObject*:o:0:
477PyMapping_HasKey:PyObject*:key::
478
479PyMapping_HasKeyString:int:::
480PyMapping_HasKeyString:PyObject*:o:0:
481PyMapping_HasKeyString:char*:key::
482
483PyMapping_Items:PyObject*::+1:
484PyMapping_Items:PyObject*:o:0:
485
486PyMapping_Keys:PyObject*::+1:
487PyMapping_Keys:PyObject*:o:0:
488
489PyMapping_Length:int:::
490PyMapping_Length:PyObject*:o:0:
491
492PyMapping_SetItemString:int:::
493PyMapping_SetItemString:PyObject*:o:0:
494PyMapping_SetItemString:char*:key::
495PyMapping_SetItemString:PyObject*:v:+1:
496
497PyMapping_Values:PyObject*::+1:
498PyMapping_Values:PyObject*:o:0:
499
Fred Drake9c75ff72001-09-06 18:06:46 +0000500PyMethod_Class:PyObject*::0:
501PyMethod_Class:PyObject*:im:0:
502
503PyMethod_Function:PyObject*::0:
504PyMethod_Function:PyObject*:im:0:
505
506PyMethod_GET_CLASS:PyObject*::0:
507PyMethod_GET_CLASS:PyObject*:im:0:
508
509PyMethod_GET_FUNCTION:PyObject*::0:
510PyMethod_GET_FUNCTION:PyObject*:im:0:
511
512PyMethod_GET_SELF:PyObject*::0:
513PyMethod_GET_SELF:PyObject*:im:0:
514
515PyMethod_New:PyObject*::+1:
516PyMethod_New:PyObject*:func:0:
517PyMethod_New:PyObject*:self:0:
518PyMethod_New:PyObject*:class:0:
519
520PyMethod_Self:PyObject*::0:
521PyMethod_Self:PyObject*:im:0:
522
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000523PyModule_GetDict:PyObject*::0:
524PyModule_GetDict::PyObject* module:0:
525
526PyModule_GetFilename:char*:::
527PyModule_GetFilename:PyObject*:module:0:
528
529PyModule_GetName:char*:::
530PyModule_GetName:PyObject*:module:0:
531
532PyModule_New:PyObject*::+1:
533PyModule_New::char* name::
534
535PyNumber_Absolute:PyObject*::+1:
536PyNumber_Absolute:PyObject*:o:0:
537
538PyNumber_Add:PyObject*::+1:
539PyNumber_Add:PyObject*:o1:0:
540PyNumber_Add:PyObject*:o2:0:
541
542PyNumber_And:PyObject*::+1:
543PyNumber_And:PyObject*:o1:0:
544PyNumber_And:PyObject*:o2:0:
545
546PyNumber_Check:PyObject*:o:0:
547PyNumber_Check:int:::
548
549PyNumber_Coerce:int:::
550PyNumber_Coerce:PyObject**:p1:+1:
551PyNumber_Coerce:PyObject**:p2:+1:
552
553PyNumber_Divide:PyObject*::+1:
554PyNumber_Divide:PyObject*:o1:0:
555PyNumber_Divide:PyObject*:o2:0:
556
557PyNumber_Divmod:PyObject*::+1:
558PyNumber_Divmod:PyObject*:o1:0:
559PyNumber_Divmod:PyObject*:o2:0:
560
561PyNumber_Float:PyObject*::+1:
562PyNumber_Float:PyObject*:o:0:
563
Fred Drake03590c62001-08-08 18:50:18 +0000564PyNumber_FloorDivide:PyObject*::+1:
565PyNumber_FloorDivide:PyObject*:v:0:
566PyNumber_FloorDivide:PyObject*:w:0:
567
Fred Drake1fa93652000-09-22 18:19:37 +0000568PyNumber_InPlaceAdd:PyObject*::+1:
569PyNumber_InPlaceAdd:PyObject*:v:0:
570PyNumber_InPlaceAdd:PyObject*:w:0:
571
572PyNumber_InPlaceAnd:PyObject*::+1:
573PyNumber_InPlaceAnd:PyObject*:v:0:
574PyNumber_InPlaceAnd:PyObject*:w:0:
575
576PyNumber_InPlaceDivide:PyObject*::+1:
577PyNumber_InPlaceDivide:PyObject*:v:0:
578PyNumber_InPlaceDivide:PyObject*:w:0:
579
Fred Drake03590c62001-08-08 18:50:18 +0000580PyNumber_InPlaceFloorDivide:PyObject*::+1:
581PyNumber_InPlaceFloorDivide:PyObject*:v:0:
582PyNumber_InPlaceFloorDivide:PyObject*:w:0:
583
Fred Drake1fa93652000-09-22 18:19:37 +0000584PyNumber_InPlaceLshift:PyObject*::+1:
585PyNumber_InPlaceLshift:PyObject*:v:0:
586PyNumber_InPlaceLshift:PyObject*:w:0:
587
588PyNumber_InPlaceMultiply:PyObject*::+1:
589PyNumber_InPlaceMultiply:PyObject*:v:0:
590PyNumber_InPlaceMultiply:PyObject*:w:0:
591
592PyNumber_InPlaceOr:PyObject*::+1:
593PyNumber_InPlaceOr:PyObject*:v:0:
594PyNumber_InPlaceOr:PyObject*:w:0:
595
596PyNumber_InPlacePower:PyObject*::+1:
597PyNumber_InPlacePower:PyObject*:v:0:
598PyNumber_InPlacePower:PyObject*:w:0:
599PyNumber_InPlacePower:PyObject*:z:0:
600
601PyNumber_InPlaceRemainder:PyObject*::+1:
602PyNumber_InPlaceRemainder:PyObject*:v:0:
603PyNumber_InPlaceRemainder:PyObject*:w:0:
604
605PyNumber_InPlaceRshift:PyObject*::+1:
606PyNumber_InPlaceRshift:PyObject*:v:0:
607PyNumber_InPlaceRshift:PyObject*:w:0:
608
609PyNumber_InPlaceSubtract:PyObject*::+1:
610PyNumber_InPlaceSubtract:PyObject*:v:0:
611PyNumber_InPlaceSubtract:PyObject*:w:0:
612
Fred Drake03590c62001-08-08 18:50:18 +0000613PyNumber_InPlaceTrueDivide:PyObject*::+1:
614PyNumber_InPlaceTrueDivide:PyObject*:v:0:
615PyNumber_InPlaceTrueDivide:PyObject*:w:0:
616
Fred Drake1fa93652000-09-22 18:19:37 +0000617PyNumber_InPlaceXor:PyObject*::+1:
618PyNumber_InPlaceXor:PyObject*:v:0:
619PyNumber_InPlaceXor:PyObject*:w:0:
620
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000621PyNumber_Int:PyObject*::+1:
622PyNumber_Int:PyObject*:o:0:
623
624PyNumber_Invert:PyObject*::+1:
625PyNumber_Invert:PyObject*:o:0:
626
627PyNumber_Long:PyObject*::+1:
628PyNumber_Long:PyObject*:o:0:
629
630PyNumber_Lshift:PyObject*::+1:
631PyNumber_Lshift:PyObject*:o1:0:
632PyNumber_Lshift:PyObject*:o2:0:
633
634PyNumber_Multiply:PyObject*::+1:
635PyNumber_Multiply:PyObject*:o1:0:
636PyNumber_Multiply:PyObject*:o2:0:
637
638PyNumber_Negative:PyObject*::+1:
639PyNumber_Negative:PyObject*:o:0:
640
641PyNumber_Or:PyObject*::+1:
642PyNumber_Or:PyObject*:o1:0:
643PyNumber_Or:PyObject*:o2:0:
644
645PyNumber_Positive:PyObject*::+1:
646PyNumber_Positive:PyObject*:o:0:
647
648PyNumber_Power:PyObject*::+1:
649PyNumber_Power:PyObject*:o1:0:
650PyNumber_Power:PyObject*:o2:0:
651PyNumber_Power:PyObject*:o3:0:
652
653PyNumber_Remainder:PyObject*::+1:
654PyNumber_Remainder:PyObject*:o1:0:
655PyNumber_Remainder:PyObject*:o2:0:
656
657PyNumber_Rshift:PyObject*::+1:
658PyNumber_Rshift:PyObject*:o1:0:
659PyNumber_Rshift:PyObject*:o2:0:
660
661PyNumber_Subtract:PyObject*::+1:
662PyNumber_Subtract:PyObject*:o1:0:
663PyNumber_Subtract:PyObject*:o2:0:
664
Fred Drake03590c62001-08-08 18:50:18 +0000665PyNumber_TrueDivide:PyObject*::+1:
666PyNumber_TrueDivide:PyObject*:v:0:
667PyNumber_TrueDivide:PyObject*:w:0:
668
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000669PyNumber_Xor:PyObject*::+1:
670PyNumber_Xor:PyObject*:o1:0:
671PyNumber_Xor:PyObject*:o2:0:
672
673PyOS_GetLastModificationTime:long:::
674PyOS_GetLastModificationTime:char*:filename::
675
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000676PyObject_AsFileDescriptor:int:::
677PyObject_AsFileDescriptor:PyObject*:o:0:
678
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000679PyObject_CallFunction:PyObject*::+1:
680PyObject_CallFunction:PyObject*:callable_object:0:
681PyObject_CallFunction:char*:format::
682PyObject_CallFunction::...::
683
684PyObject_CallMethod:PyObject*::+1:
685PyObject_CallMethod:PyObject*:o:0:
686PyObject_CallMethod:char*:m::
687PyObject_CallMethod:char*:format::
688PyObject_CallMethod::...::
689
690PyObject_CallObject:PyObject*::+1:
691PyObject_CallObject:PyObject*:callable_object:0:
692PyObject_CallObject:PyObject*:args:0:
693
694PyObject_Cmp:int:::
695PyObject_Cmp:PyObject*:o1:0:
696PyObject_Cmp:PyObject*:o2:0:
697PyObject_Cmp:int*:result::
698
699PyObject_Compare:int:::
700PyObject_Compare:PyObject*:o1:0:
701PyObject_Compare:PyObject*:o2:0:
702
703PyObject_DelAttr:int:::
704PyObject_DelAttr:PyObject*:o:0:
705PyObject_DelAttr:PyObject*:attr_name:0:
706
707PyObject_DelAttrString:int:::
708PyObject_DelAttrString:PyObject*:o:0:
709PyObject_DelAttrString:char*:attr_name::
710
711PyObject_DelItem:int:::
712PyObject_DelItem:PyObject*:o:0:
713PyObject_DelItem:PyObject*:key:0:
714
Fred Drake9c75ff72001-09-06 18:06:46 +0000715PyObject_Dir:PyObject*::+1:
716PyObject_Dir:PyObject*:o:0:
717
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000718PyObject_GetAttr:PyObject*::+1:
719PyObject_GetAttr:PyObject*:o:0:
720PyObject_GetAttr:PyObject*:attr_name:0:
721
722PyObject_GetAttrString:PyObject*::+1:
723PyObject_GetAttrString:PyObject*:o:0:
724PyObject_GetAttrString:char*:attr_name::
725
726PyObject_GetItem:PyObject*::+1:
727PyObject_GetItem:PyObject*:o:0:
728PyObject_GetItem:PyObject*:key:0:
729
730PyObject_HasAttr:int:::
731PyObject_HasAttr:PyObject*:o:0:
732PyObject_HasAttr:PyObject*:attr_name:0:
733
734PyObject_HasAttrString:int:::
735PyObject_HasAttrString:PyObject*:o:0:
736PyObject_HasAttrString:char*:attr_name:0:
737
738PyObject_Hash:int:::
739PyObject_Hash:PyObject*:o:0:
740
741PyObject_IsTrue:int:::
742PyObject_IsTrue:PyObject*:o:0:
743
Fred Drakef913e542000-09-12 20:17:17 +0000744PyObject_Init:PyObject*::0:
745PyObject_Init:PyObject*:op:0:
746
747PyObject_InitVar:PyVarObject*::0:
748PyObject_InitVar:PyVarObject*:op:0:
749
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000750PyObject_Length:int:::
751PyObject_Length:PyObject*:o:0:
752
Fred Drake8e0c09d2001-07-06 23:31:49 +0000753PyObject_NEW:PyObject*::+1:
754
755PyObject_New:PyObject*::+1:
756
757PyObject_NEW_VAR:PyObject*::+1:
758
759PyObject_NewVar:PyObject*::+1:
760
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000761PyObject_Print:int:::
762PyObject_Print:PyObject*:o:0:
763PyObject_Print:FILE*:fp::
764PyObject_Print:int:flags::
765
766PyObject_Repr:PyObject*::+1:
767PyObject_Repr:PyObject*:o:0:
768
769PyObject_SetAttr:int:::
770PyObject_SetAttr:PyObject*:o:0:
771PyObject_SetAttr:PyObject*:attr_name:0:
772PyObject_SetAttr:PyObject*:v:+1:
773
774PyObject_SetAttrString:int:::
775PyObject_SetAttrString:PyObject*:o:0:
776PyObject_SetAttrString:char*:attr_name::
777PyObject_SetAttrString:PyObject*:v:+1:
778
779PyObject_SetItem:int:::
780PyObject_SetItem:PyObject*:o:0:
781PyObject_SetItem:PyObject*:key:0:
782PyObject_SetItem:PyObject*:v:+1:
783
784PyObject_Str:PyObject*::+1:
785PyObject_Str:PyObject*:o:0:
786
787PyObject_Type:PyObject*::+1:
788PyObject_Type:PyObject*:o:0:
789
Fred Drakeb2625eb2001-05-29 15:34:06 +0000790PyObject_Unicode:PyObject*::+1:
791PyObject_Unicode:PyObject*:o:0:
792
Fred Drake805bf1b1999-10-20 16:03:38 +0000793PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000794PyParser_SimpleParseFile:FILE*:fp::
795PyParser_SimpleParseFile:char*:filename::
796PyParser_SimpleParseFile:int:start::
797
Fred Drake805bf1b1999-10-20 16:03:38 +0000798PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000799PyParser_SimpleParseString:char*:str::
800PyParser_SimpleParseString:int:start::
801
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000802PyRun_AnyFile:int:::
803PyRun_AnyFile:FILE*:fp::
804PyRun_AnyFile:char*:filename::
805
Fred Drake4ca744c2000-08-12 03:39:47 +0000806PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000807PyRun_File:FILE*:fp::
808PyRun_File:char*:filename::
809PyRun_File:int:start::
810PyRun_File:PyObject*:globals:0:
811PyRun_File:PyObject*:locals:0:
812
813PyRun_InteractiveLoop:int:::
814PyRun_InteractiveLoop:FILE*:fp::
815PyRun_InteractiveLoop:char*:filename::
816
817PyRun_InteractiveOne:int:::
818PyRun_InteractiveOne:FILE*:fp::
819PyRun_InteractiveOne:char*:filename::
820
821PyRun_SimpleFile:int:::
822PyRun_SimpleFile:FILE*:fp::
823PyRun_SimpleFile:char*:filename::
824
825PyRun_SimpleString:int:::
826PyRun_SimpleString:char*:command::
827
Fred Drake4ca744c2000-08-12 03:39:47 +0000828PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000829PyRun_String:char*:str::
830PyRun_String:int:start::
831PyRun_String:PyObject*:globals:0:
832PyRun_String:PyObject*:locals:0:
833
834PySequence_Check:int:::
835PySequence_Check:PyObject*:o:0:
836
837PySequence_Concat:PyObject*::+1:
838PySequence_Concat:PyObject*:o1:0:
839PySequence_Concat:PyObject*:o2:0:
840
841PySequence_Count:int:::
842PySequence_Count:PyObject*:o:0:
843PySequence_Count:PyObject*:value:0:
844
845PySequence_DelItem:int:::
846PySequence_DelItem:PyObject*:o:0:
847PySequence_DelItem:int:i::
848
849PySequence_DelSlice:int:::
850PySequence_DelSlice:PyObject*:o:0:
851PySequence_DelSlice:int:i1::
852PySequence_DelSlice:int:i2::
853
Fred Drake81cccb72000-09-12 15:22:05 +0000854PySequence_Fast:PyObject*::+1:
855PySequence_Fast:PyObject*:v:0:
856PySequence_Fast:const char*:m::
857
858PySequence_Fast_GET_ITEM:PyObject*::0:
859PySequence_Fast_GET_ITEM:PyObject*:o:0:
860PySequence_Fast_GET_ITEM:int:i::
861
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000862PySequence_GetItem:PyObject*::+1:
863PySequence_GetItem:PyObject*:o:0:
864PySequence_GetItem:int:i::
865
866PySequence_GetSlice:PyObject*::+1:
867PySequence_GetSlice:PyObject*:o:0:
868PySequence_GetSlice:int:i1::
869PySequence_GetSlice:int:i2::
870
871PySequence_In:int:::
872PySequence_In:PyObject*:o:0:
873PySequence_In:PyObject*:value:0:
874
875PySequence_Index:int:::
876PySequence_Index:PyObject*:o:0:
877PySequence_Index:PyObject*:value:0:
878
Fred Drake1fa93652000-09-22 18:19:37 +0000879PySequence_InPlaceConcat:PyObject*::+1:
880PySequence_InPlaceConcat:PyObject*:s:0:
881PySequence_InPlaceConcat:PyObject*:o:0:
882
883PySequence_InPlaceRepeat:PyObject*::+1:
884PySequence_InPlaceRepeat:PyObject*:s:0:
885PySequence_InPlaceRepeat:PyObject*:o:0:
886
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000887PySequence_Repeat:PyObject*::+1:
888PySequence_Repeat:PyObject*:o:0:
889PySequence_Repeat:int:count::
890
891PySequence_SetItem:int:::
892PySequence_SetItem:PyObject*:o:0:
893PySequence_SetItem:int:i::
894PySequence_SetItem:PyObject*:v:+1:
895
896PySequence_SetSlice:int:::
897PySequence_SetSlice:PyObject*:o:0:
898PySequence_SetSlice:int:i1::
899PySequence_SetSlice:int:i2::
900PySequence_SetSlice:PyObject*:v:+1:
901
Fred Drake1c2d06a2000-06-16 20:00:04 +0000902PySequence_List:PyObject*::+1:
903PySequence_List:PyObject*:o:0:
904
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000905PySequence_Tuple:PyObject*::+1:
906PySequence_Tuple:PyObject*:o:0:
907
908PyString_AS_STRING:char*:::
909PyString_AS_STRING:PyObject*:string:0:
910
Fred Drakeb2625eb2001-05-29 15:34:06 +0000911PyString_AsDecodedObject:PyObject*::+1:
912PyString_AsDecodedObject:PyObject*:str:0:
913PyString_AsDecodedObject:const char*:encoding::
914PyString_AsDecodedObject:const char*:errors::
915
916PyString_AsEncodedObject:PyObject*::+1:
917PyString_AsEncodedObject:PyObject*:str:0:
918PyString_AsEncodedObject:const char*:encoding::
919PyString_AsEncodedObject:const char*:errors::
920
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000921PyString_AsString:char*:::
922PyString_AsString:PyObject*:string:0:
923
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +0000924PyString_AsStringAndSize:int:::
925PyString_AsStringAndSize:PyObject*:obj:0:
926PyString_AsStringAndSize:char**:buffer::
927PyString_AsStringAndSize:int*:length::
928
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000929PyString_Check:int:::
930PyString_Check:PyObject*:o:0:
931
932PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000933PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000934PyString_Concat:PyObject*:newpart:0:
935
936PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000937PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000938PyString_ConcatAndDel:PyObject*:newpart:-1:
939
940PyString_Format:PyObject*::+1:
941PyString_Format:PyObject*:format:0:
942PyString_Format:PyObject*:args:0:
943
944PyString_FromString:PyObject*::+1:
945PyString_FromString:const char*:v::
946
947PyString_FromStringAndSize:PyObject*::+1:
948PyString_FromStringAndSize:const char*:v::
949PyString_FromStringAndSize:int:len::
950
Barry Warsaw8c64a542001-08-28 02:32:04 +0000951PyString_FromFormat:PyObject*::+1:
952PyString_FromFormat:const char*:format::
953PyString_FromFormat::...::
954
955PyString_FromFormatV:PyObject*::+1:
956PyString_FromFormatV:const char*:format::
957PyString_FromFormatV:va_list:vargs::
958
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000959PyString_GET_SIZE:int:::
960PyString_GET_SIZE:PyObject*:string:0:
961
962PyString_InternFromString:PyObject*::+1:
963PyString_InternFromString:const char*:v::
964
965PyString_InternInPlace:void:::
966PyString_InternInPlace:PyObject**:string:+1:???
967
968PyString_Size:int:::
969PyString_Size:PyObject*:string:0:
970
Marc-André Lemburg47073202000-07-07 15:48:54 +0000971PyString_Decode:PyObject*::+1:
972PyString_Decode:const char*:s::
973PyString_Decode:int:size::
974PyString_Decode:const char*:encoding::
975PyString_Decode:const char*:errors::
976
977PyString_Encode:PyObject*::+1:
978PyString_Encode:const char*:s::
979PyString_Encode:int:size::
980PyString_Encode:const char*:encoding::
981PyString_Encode:const char*:errors::
982
983PyString_AsEncodedString:PyObject*::+1:
984PyString_AsEncodedString:PyObject*:str::
985PyString_AsEncodedString:const char*:encoding::
986PyString_AsEncodedString:const char*:errors::
987
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000988PySys_SetArgv:int:::
989PySys_SetArgv:int:argc::
990PySys_SetArgv:char**:argv::
991
992PyThreadState_Clear:void:::
993PyThreadState_Clear:PyThreadState*:tstate::
994
995PyThreadState_Delete:void:::
996PyThreadState_Delete:PyThreadState*:tstate::
997
998PyThreadState_Get:PyThreadState*:::
999
Fred Drakeb2625eb2001-05-29 15:34:06 +00001000PyThreadState_GetDict:PyObject*::0:
1001
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001002PyThreadState_New:PyThreadState*:::
1003PyThreadState_New:PyInterpreterState*:interp::
1004
1005PyThreadState_Swap:PyThreadState*:::
1006PyThreadState_Swap:PyThreadState*:tstate::
1007
1008PyTuple_Check:int:::
1009PyTuple_Check:PyObject*:p:0:
1010
1011PyTuple_GET_ITEM:PyObject*::0:
1012PyTuple_GET_ITEM:PyTupleObject*:p:0:
1013PyTuple_GET_ITEM:int:pos::
1014
1015PyTuple_GetItem:PyObject*::0:
1016PyTuple_GetItem:PyTupleObject*:p:0:
1017PyTuple_GetItem:int:pos::
1018
1019PyTuple_GetSlice:PyObject*::+1:
1020PyTuple_GetSlice:PyTupleObject*:p:0:
1021PyTuple_GetSlice:int:low::
1022PyTuple_GetSlice:int:high::
1023
1024PyTuple_New:PyObject*::+1:
1025PyTuple_New:int:len::
1026
1027PyTuple_SET_ITEM:void:::
1028PyTuple_SET_ITEM:PyTupleObject*:p:0:
1029PyTuple_SET_ITEM:int:pos::
1030PyTuple_SET_ITEM:PyObject*:o:0:
1031
1032PyTuple_SetItem:int:::
1033PyTuple_SetItem:PyTupleObject*:p:0:
1034PyTuple_SetItem:int:pos::
1035PyTuple_SetItem:PyObject*:o:0:
1036
1037PyTuple_Size:int:::
1038PyTuple_Size:PyTupleObject*:p:0:
1039
Fred Drake992fe5a2000-06-16 21:04:15 +00001040PyUnicode_Check:int:::
1041PyUnicode_Check:PyObject*:o:0:
1042
1043PyUnicode_GET_SIZE:int:::
1044PyUnicode_GET_SIZE:PyObject*:o:0:
1045
1046PyUnicode_GET_DATA_SIZE:int:::
1047PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1048
1049PyUnicode_AS_UNICODE:Py_UNICODE*:::
1050PyUnicode_AS_UNICODE:PyObject*:o:0:
1051
1052PyUnicode_AS_DATA:const char*:::
1053PyUnicode_AS_DATA:PyObject*:o:0:
1054
1055Py_UNICODE_ISSPACE:int:::
1056Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1057
1058Py_UNICODE_ISLOWER:int:::
1059Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1060
1061Py_UNICODE_ISUPPER:int:::
1062Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1063
1064Py_UNICODE_ISTITLE:int:::
1065Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1066
1067Py_UNICODE_ISLINEBREAK:int:::
1068Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1069
1070Py_UNICODE_ISDECIMAL:int:::
1071Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1072
1073Py_UNICODE_ISDIGIT:int:::
1074Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1075
1076Py_UNICODE_ISNUMERIC:int:::
1077Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1078
1079Py_UNICODE_TOLOWER:Py_UNICODE:::
1080Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1081
1082Py_UNICODE_TOUPPER:Py_UNICODE:::
1083Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1084
1085Py_UNICODE_TOTITLE:Py_UNICODE:::
1086Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1087
1088Py_UNICODE_TODECIMAL:int:::
1089Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1090
1091Py_UNICODE_TODIGIT:int:::
1092Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1093
1094Py_UNICODE_TONUMERIC:double:::
1095Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1096
1097PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001098PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001099PyUnicode_FromUnicode:int:size::
1100
1101PyUnicode_AsUnicode:Py_UNICODE*:::
1102PyUnicode_AsUnicode:PyObject :*unicode:0:
1103
1104PyUnicode_GetSize:int:::
1105PyUnicode_GetSize:PyObject :*unicode:0:
1106
1107PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001108PyUnicode_FromObject:PyObject*:*obj:0:
1109
1110PyUnicode_FromEncodedObject:PyObject*::+1:
1111PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1112PyUnicode_FromEncodedObject:const char*:encoding::
1113PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001114
1115PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001116PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001117PyUnicode_FromWideChar:int:size::
1118
1119PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001120PyUnicode_AsWideChar:PyObject*:*unicode:0:
1121PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001122PyUnicode_AsWideChar:int:size::
1123
1124PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001125PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001126PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001127PyUnicode_Decode:const char*:encoding::
1128PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001129
1130PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001131PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001132PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001133PyUnicode_Encode:const char*:encoding::
1134PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001135
1136PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001137PyUnicode_AsEncodedString:PyObject*:unicode::
1138PyUnicode_AsEncodedString:const char*:encoding::
1139PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001140
1141PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001142PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001143PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001144PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001145
1146PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001147PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001148PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001149PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001150
1151PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001152PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001153
1154PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001155PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001156PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001157PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001158PyUnicode_DecodeUTF16:int*:byteorder::
1159
1160PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001161PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001162PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001163PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001164PyUnicode_EncodeUTF16:int:byteorder::
1165
1166PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001167PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001168
1169PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001170PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001171PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001172PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001173
1174PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001175PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001176PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001177PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001178
1179PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001180PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001181
1182PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001183PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001184PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001185PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001186
1187PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001188PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001189PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001190PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001191
1192PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001193PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001194
1195PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001196PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001197PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001198PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001199
1200PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001201PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001202PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001203PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001204
1205PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001206PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001207
1208PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001209PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001210PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001211PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001212
1213PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001214PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001215PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001216PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001217
1218PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001219PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001220
1221PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001222PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001223PyUnicode_DecodeCharmap:int:size::
1224PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001225PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001226
1227PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001228PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001229PyUnicode_EncodeCharmap:int:size::
1230PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001231PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001232
1233PyUnicode_AsCharmapString:PyObject*::+1:
1234PyUnicode_AsCharmapString:PyObject*:unicode:0:
1235PyUnicode_AsCharmapString:PyObject*:mapping:0:
1236
1237PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001238PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001239PyUnicode_TranslateCharmap:int:size::
1240PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001241PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001242
1243PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001244PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001245PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001246PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001247
1248PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001249PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001250PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001251PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001252
1253PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001254PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001255
1256PyUnicode_Concat:PyObject*::+1:
1257PyUnicode_Concat:PyObject*:left:0:
1258PyUnicode_Concat:PyObject*:right:0:
1259
1260PyUnicode_Split:PyObject*::+1:
1261PyUnicode_Split:PyObject*:left:0:
1262PyUnicode_Split:PyObject*:right:0:
1263PyUnicode_Split:int:maxsplit::
1264
1265PyUnicode_Splitlines:PyObject*::+1:
1266PyUnicode_Splitlines:PyObject*:s:0:
1267PyUnicode_Splitlines:int:maxsplit::
1268
1269PyUnicode_Translate:PyObject*::+1:
1270PyUnicode_Translate:PyObject*:str:0:
1271PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001272PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001273
1274PyUnicode_Join:PyObject*::+1:
1275PyUnicode_Join:PyObject*:separator:0:
1276PyUnicode_Join:PyObject*:seq:0:
1277
1278PyUnicode_Tailmatch:PyObject*::+1:
1279PyUnicode_Tailmatch:PyObject*:str:0:
1280PyUnicode_Tailmatch:PyObject*:substr:0:
1281PyUnicode_Tailmatch:int:start::
1282PyUnicode_Tailmatch:int:end::
1283PyUnicode_Tailmatch:int:direction::
1284
1285PyUnicode_Find:PyObject*::+1:
1286PyUnicode_Find:PyObject*:str:0:
1287PyUnicode_Find:PyObject*:substr:0:
1288PyUnicode_Find:int:start::
1289PyUnicode_Find:int:end::
1290PyUnicode_Find:int:direction::
1291
1292PyUnicode_Count:PyObject*::+1:
1293PyUnicode_Count:PyObject*:str:0:
1294PyUnicode_Count:PyObject*:substr:0:
1295PyUnicode_Count:int:start::
1296PyUnicode_Count:int:end::
1297
1298PyUnicode_Replace:PyObject*::+1:
1299PyUnicode_Replace:PyObject*:str:0:
1300PyUnicode_Replace:PyObject*:substr:0:
1301PyUnicode_Replace:PyObject*:replstr:0:
1302PyUnicode_Replace:int:maxcount::
1303
1304PyUnicode_Compare:int:::
1305PyUnicode_Compare:PyObject*:left:0:
1306PyUnicode_Compare:PyObject*:right:0:
1307
1308PyUnicode_Format:PyObject*::+1:
1309PyUnicode_Format:PyObject*:format:0:
1310PyUnicode_Format:PyObject*:args:0:
1311
1312PyUnicode_Contains:int:::
1313PyUnicode_Contains:PyObject*:container:0:
1314PyUnicode_Contains:PyObject*:element:0:
1315
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001316Py_AtExit:int:::
1317Py_AtExit:void (*)():func::
1318
Fred Drake6d988552001-07-20 20:55:31 +00001319Py_BuildValue:PyObject*::+1:
1320Py_BuildValue:char*:format::
1321
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001322Py_CompileString:PyObject*::+1:
1323Py_CompileString:char*:str::
1324Py_CompileString:char*:filename::
1325Py_CompileString:int:start::
1326
1327Py_DECREF:void:::
1328Py_DECREF:PyObject*:o:-1:
1329
1330Py_EndInterpreter:void:::
1331Py_EndInterpreter:PyThreadState*:tstate::
1332
1333Py_Exit:void:::
1334Py_Exit:int:status::
1335
1336Py_FatalError:void:::
1337Py_FatalError:char*:message::
1338
1339Py_FdIsInteractive:int:::
1340Py_FdIsInteractive:FILE*:fp::
1341Py_FdIsInteractive:char*:filename::
1342
1343Py_Finalize:void:::
1344
Fred Drake8520cc22000-04-10 19:38:24 +00001345Py_FindMethod:PyObject*::+1:
1346Py_FindMethod:PyMethodDef[]:methods::
1347Py_FindMethod:PyObject*:self:+1:
1348Py_FindMethod:char*:name::
1349
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001350Py_GetBuildInfoconst:char*:::
1351
1352Py_GetCompilerconst:char*:::
1353
1354Py_GetCopyrightconst:char*:::
1355
1356Py_GetExecPrefix:char*:::
1357
1358Py_GetPath:char*:::
1359
1360Py_GetPlatformconst:char*:::
1361
1362Py_GetPrefix:char*:::
1363
1364Py_GetProgramFullPath:char*:::
1365
1366Py_GetProgramName:char*:::
1367
1368Py_GetVersionconst:char*:::
1369
1370Py_INCREF:void:::
1371Py_INCREF:PyObject*:o:+1:
1372
1373Py_Initialize:void:::
1374
1375Py_IsInitialized:int:::
1376
1377Py_NewInterpreter:PyThreadState*:::
1378
1379Py_SetProgramName:void:::
1380Py_SetProgramName:char*:name::
1381
1382Py_XDECREF:void:::
1383Py_XDECREF:PyObject*:o:-1:if o is not NULL
1384
1385Py_XINCREF:void:::
1386Py_XINCREF:PyObject*:o:+1:if o is not NULL
1387
1388_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1389_PyImport_FindExtension:char*:::
1390_PyImport_FindExtension:char*:::
1391
1392_PyImport_Fini:void:::
1393
1394_PyImport_FixupExtension:PyObject*:::???
1395_PyImport_FixupExtension:char*:::
1396_PyImport_FixupExtension:char*:::
1397
1398_PyImport_Init:void:::
1399
Fred Drakef913e542000-09-12 20:17:17 +00001400_PyObject_Del:void:::
1401_PyObject_Del:PyObject*:op:0:
1402
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001403_PyObject_New:PyObject*::+1:
1404_PyObject_New:PyTypeObject*:type:0:
1405
Fred Drake8e0c09d2001-07-06 23:31:49 +00001406_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001407_PyObject_NewVar:PyTypeObject*:type:0:
1408_PyObject_NewVar:int:size::
1409
1410_PyString_Resize:int:::
1411_PyString_Resize:PyObject**:string:+1:
1412_PyString_Resize:int:newsize::
1413
1414_PyTuple_Resize:int:::
1415_PyTuple_Resize:PyTupleObject**:p:+1:
1416_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001417
1418_Py_c_diff:Py_complex:::
1419_Py_c_diff:Py_complex:left::
1420_Py_c_diff:Py_complex:right::
1421
1422_Py_c_neg:Py_complex:::
1423_Py_c_neg:Py_complex:complex::
1424
1425_Py_c_pow:Py_complex:::
1426_Py_c_pow:Py_complex:num::
1427_Py_c_pow:Py_complex:exp::
1428
1429_Py_c_prod:Py_complex:::
1430_Py_c_prod:Py_complex:left::
1431_Py_c_prod:Py_complex:right::
1432
1433_Py_c_quot:Py_complex:::
1434_Py_c_quot:Py_complex:dividend::
1435_Py_c_quot:Py_complex:divisor::
1436
1437_Py_c_sum:Py_complex:::
1438_Py_c_sum:Py_complex:left::
1439_Py_c_sum:Py_complex:right::