blob: 2a3cc00e381df5359fb8a640d5620d6e6f7387e4 [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
366PyList_Append:int:::
367PyList_Append:PyObject*:list:0:
368PyList_Append:PyObject*:item:+1:
369
370PyList_AsTuple:PyObject*::+1:
371PyList_AsTuple:PyObject*:list:0:
372
373PyList_Check:int:::
374PyList_Check:PyObject*:p:0:
375
376PyList_GET_ITEM:PyObject*::0:
377PyList_GET_ITEM:PyObject*:list:0:
378PyList_GET_ITEM:int:i:0:
379
380PyList_GET_SIZE:int:::
381PyList_GET_SIZE:PyObject*:list:0:
382
383PyList_GetItem:PyObject*::0:
384PyList_GetItem:PyObject*:list:0:
385PyList_GetItem:int:index::
386
387PyList_GetSlice:PyObject*::+1:
388PyList_GetSlice:PyObject*:list:0:
389PyList_GetSlice:int:low::
390PyList_GetSlice:int:high::
391
392PyList_Insert:int:::
393PyList_Insert:PyObject*:list:0:
394PyList_Insert:int:index::
395PyList_Insert:PyObject*:item:+1:
396
397PyList_New:PyObject*::+1:
398PyList_New:int:len::
399
400PyList_Reverse:int:::
401PyList_Reverse:PyObject*:list:0:
402
403PyList_SET_ITEM:PyObject*::0:
404PyList_SET_ITEM:PyObject*:list:0:
405PyList_SET_ITEM:int:i::
406PyList_SET_ITEM:PyObject*:o:0:
407
408PyList_SetItem:int:::
409PyList_SetItem:PyObject*:list:0:
410PyList_SetItem:int:index::
411PyList_SetItem:PyObject*:item:0:
412
413PyList_SetSlice:int:::
414PyList_SetSlice:PyObject*:list:0:
415PyList_SetSlice:int:low::
416PyList_SetSlice:int:high::
417PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
418
419PyList_Size:int:::
420PyList_Size:PyObject*:list:0:
421
422PyList_Sort:int:::
423PyList_Sort:PyObject*:list:0:
424
425PyLong_AsDouble:double:::
426PyLong_AsDouble:PyObject*:pylong:0:
427
428PyLong_AsLong:long:::
429PyLong_AsLong:PyObject*:pylong:0:
430
431PyLong_AsUnsignedLong:unsigned long:::
432PyLong_AsUnsignedLong:PyObject*:pylong:0:
433
434PyLong_Check:int:::
435PyLong_Check:PyObject*:p:0:
436
437PyLong_FromDouble:PyObject*::+1:
438PyLong_FromDouble:double:v::
439
440PyLong_FromLong:PyObject*::+1:
441PyLong_FromLong:long:v::
442
443PyLong_FromString:PyObject*::+1:
444PyLong_FromString:char*:str::
445PyLong_FromString:char**:pend::
446PyLong_FromString:int:base::
447
448PyLong_FromUnsignedLong:PyObject*::+1:
449PyLong_FromUnsignedLong:unsignedlong:v::
450
451PyMapping_Check:int:::
452PyMapping_Check:PyObject*:o:0:
453
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000454PyMapping_DelItem:int:::
455PyMapping_DelItem:PyObject*:o:0:
456PyMapping_DelItem:PyObject*:key:0:
457
458PyMapping_DelItemString:int:::
459PyMapping_DelItemString:PyObject*:o:0:
460PyMapping_DelItemString:char*:key::
461
462PyMapping_GetItemString:PyObject*::+1:
463PyMapping_GetItemString:PyObject*:o:0:
464PyMapping_GetItemString:char*:key::
465
466PyMapping_HasKey:int:::
467PyMapping_HasKey:PyObject*:o:0:
468PyMapping_HasKey:PyObject*:key::
469
470PyMapping_HasKeyString:int:::
471PyMapping_HasKeyString:PyObject*:o:0:
472PyMapping_HasKeyString:char*:key::
473
474PyMapping_Items:PyObject*::+1:
475PyMapping_Items:PyObject*:o:0:
476
477PyMapping_Keys:PyObject*::+1:
478PyMapping_Keys:PyObject*:o:0:
479
480PyMapping_Length:int:::
481PyMapping_Length:PyObject*:o:0:
482
483PyMapping_SetItemString:int:::
484PyMapping_SetItemString:PyObject*:o:0:
485PyMapping_SetItemString:char*:key::
486PyMapping_SetItemString:PyObject*:v:+1:
487
488PyMapping_Values:PyObject*::+1:
489PyMapping_Values:PyObject*:o:0:
490
491PyModule_GetDict:PyObject*::0:
492PyModule_GetDict::PyObject* module:0:
493
494PyModule_GetFilename:char*:::
495PyModule_GetFilename:PyObject*:module:0:
496
497PyModule_GetName:char*:::
498PyModule_GetName:PyObject*:module:0:
499
500PyModule_New:PyObject*::+1:
501PyModule_New::char* name::
502
503PyNumber_Absolute:PyObject*::+1:
504PyNumber_Absolute:PyObject*:o:0:
505
506PyNumber_Add:PyObject*::+1:
507PyNumber_Add:PyObject*:o1:0:
508PyNumber_Add:PyObject*:o2:0:
509
510PyNumber_And:PyObject*::+1:
511PyNumber_And:PyObject*:o1:0:
512PyNumber_And:PyObject*:o2:0:
513
514PyNumber_Check:PyObject*:o:0:
515PyNumber_Check:int:::
516
517PyNumber_Coerce:int:::
518PyNumber_Coerce:PyObject**:p1:+1:
519PyNumber_Coerce:PyObject**:p2:+1:
520
521PyNumber_Divide:PyObject*::+1:
522PyNumber_Divide:PyObject*:o1:0:
523PyNumber_Divide:PyObject*:o2:0:
524
525PyNumber_Divmod:PyObject*::+1:
526PyNumber_Divmod:PyObject*:o1:0:
527PyNumber_Divmod:PyObject*:o2:0:
528
529PyNumber_Float:PyObject*::+1:
530PyNumber_Float:PyObject*:o:0:
531
Fred Drake1fa93652000-09-22 18:19:37 +0000532PyNumber_InPlaceAdd:PyObject*::+1:
533PyNumber_InPlaceAdd:PyObject*:v:0:
534PyNumber_InPlaceAdd:PyObject*:w:0:
535
536PyNumber_InPlaceAnd:PyObject*::+1:
537PyNumber_InPlaceAnd:PyObject*:v:0:
538PyNumber_InPlaceAnd:PyObject*:w:0:
539
540PyNumber_InPlaceDivide:PyObject*::+1:
541PyNumber_InPlaceDivide:PyObject*:v:0:
542PyNumber_InPlaceDivide:PyObject*:w:0:
543
544PyNumber_InPlaceLshift:PyObject*::+1:
545PyNumber_InPlaceLshift:PyObject*:v:0:
546PyNumber_InPlaceLshift:PyObject*:w:0:
547
548PyNumber_InPlaceMultiply:PyObject*::+1:
549PyNumber_InPlaceMultiply:PyObject*:v:0:
550PyNumber_InPlaceMultiply:PyObject*:w:0:
551
552PyNumber_InPlaceOr:PyObject*::+1:
553PyNumber_InPlaceOr:PyObject*:v:0:
554PyNumber_InPlaceOr:PyObject*:w:0:
555
556PyNumber_InPlacePower:PyObject*::+1:
557PyNumber_InPlacePower:PyObject*:v:0:
558PyNumber_InPlacePower:PyObject*:w:0:
559PyNumber_InPlacePower:PyObject*:z:0:
560
561PyNumber_InPlaceRemainder:PyObject*::+1:
562PyNumber_InPlaceRemainder:PyObject*:v:0:
563PyNumber_InPlaceRemainder:PyObject*:w:0:
564
565PyNumber_InPlaceRshift:PyObject*::+1:
566PyNumber_InPlaceRshift:PyObject*:v:0:
567PyNumber_InPlaceRshift:PyObject*:w:0:
568
569PyNumber_InPlaceSubtract:PyObject*::+1:
570PyNumber_InPlaceSubtract:PyObject*:v:0:
571PyNumber_InPlaceSubtract:PyObject*:w:0:
572
573PyNumber_InPlaceXor:PyObject*::+1:
574PyNumber_InPlaceXor:PyObject*:v:0:
575PyNumber_InPlaceXor:PyObject*:w:0:
576
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000577PyNumber_Int:PyObject*::+1:
578PyNumber_Int:PyObject*:o:0:
579
580PyNumber_Invert:PyObject*::+1:
581PyNumber_Invert:PyObject*:o:0:
582
583PyNumber_Long:PyObject*::+1:
584PyNumber_Long:PyObject*:o:0:
585
586PyNumber_Lshift:PyObject*::+1:
587PyNumber_Lshift:PyObject*:o1:0:
588PyNumber_Lshift:PyObject*:o2:0:
589
590PyNumber_Multiply:PyObject*::+1:
591PyNumber_Multiply:PyObject*:o1:0:
592PyNumber_Multiply:PyObject*:o2:0:
593
594PyNumber_Negative:PyObject*::+1:
595PyNumber_Negative:PyObject*:o:0:
596
597PyNumber_Or:PyObject*::+1:
598PyNumber_Or:PyObject*:o1:0:
599PyNumber_Or:PyObject*:o2:0:
600
601PyNumber_Positive:PyObject*::+1:
602PyNumber_Positive:PyObject*:o:0:
603
604PyNumber_Power:PyObject*::+1:
605PyNumber_Power:PyObject*:o1:0:
606PyNumber_Power:PyObject*:o2:0:
607PyNumber_Power:PyObject*:o3:0:
608
609PyNumber_Remainder:PyObject*::+1:
610PyNumber_Remainder:PyObject*:o1:0:
611PyNumber_Remainder:PyObject*:o2:0:
612
613PyNumber_Rshift:PyObject*::+1:
614PyNumber_Rshift:PyObject*:o1:0:
615PyNumber_Rshift:PyObject*:o2:0:
616
617PyNumber_Subtract:PyObject*::+1:
618PyNumber_Subtract:PyObject*:o1:0:
619PyNumber_Subtract:PyObject*:o2:0:
620
621PyNumber_Xor:PyObject*::+1:
622PyNumber_Xor:PyObject*:o1:0:
623PyNumber_Xor:PyObject*:o2:0:
624
625PyOS_GetLastModificationTime:long:::
626PyOS_GetLastModificationTime:char*:filename::
627
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000628PyObject_AsFileDescriptor:int:::
629PyObject_AsFileDescriptor:PyObject*:o:0:
630
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000631PyObject_CallFunction:PyObject*::+1:
632PyObject_CallFunction:PyObject*:callable_object:0:
633PyObject_CallFunction:char*:format::
634PyObject_CallFunction::...::
635
636PyObject_CallMethod:PyObject*::+1:
637PyObject_CallMethod:PyObject*:o:0:
638PyObject_CallMethod:char*:m::
639PyObject_CallMethod:char*:format::
640PyObject_CallMethod::...::
641
642PyObject_CallObject:PyObject*::+1:
643PyObject_CallObject:PyObject*:callable_object:0:
644PyObject_CallObject:PyObject*:args:0:
645
646PyObject_Cmp:int:::
647PyObject_Cmp:PyObject*:o1:0:
648PyObject_Cmp:PyObject*:o2:0:
649PyObject_Cmp:int*:result::
650
651PyObject_Compare:int:::
652PyObject_Compare:PyObject*:o1:0:
653PyObject_Compare:PyObject*:o2:0:
654
655PyObject_DelAttr:int:::
656PyObject_DelAttr:PyObject*:o:0:
657PyObject_DelAttr:PyObject*:attr_name:0:
658
659PyObject_DelAttrString:int:::
660PyObject_DelAttrString:PyObject*:o:0:
661PyObject_DelAttrString:char*:attr_name::
662
663PyObject_DelItem:int:::
664PyObject_DelItem:PyObject*:o:0:
665PyObject_DelItem:PyObject*:key:0:
666
667PyObject_GetAttr:PyObject*::+1:
668PyObject_GetAttr:PyObject*:o:0:
669PyObject_GetAttr:PyObject*:attr_name:0:
670
671PyObject_GetAttrString:PyObject*::+1:
672PyObject_GetAttrString:PyObject*:o:0:
673PyObject_GetAttrString:char*:attr_name::
674
675PyObject_GetItem:PyObject*::+1:
676PyObject_GetItem:PyObject*:o:0:
677PyObject_GetItem:PyObject*:key:0:
678
679PyObject_HasAttr:int:::
680PyObject_HasAttr:PyObject*:o:0:
681PyObject_HasAttr:PyObject*:attr_name:0:
682
683PyObject_HasAttrString:int:::
684PyObject_HasAttrString:PyObject*:o:0:
685PyObject_HasAttrString:char*:attr_name:0:
686
687PyObject_Hash:int:::
688PyObject_Hash:PyObject*:o:0:
689
690PyObject_IsTrue:int:::
691PyObject_IsTrue:PyObject*:o:0:
692
Fred Drakef913e542000-09-12 20:17:17 +0000693PyObject_Init:PyObject*::0:
694PyObject_Init:PyObject*:op:0:
695
696PyObject_InitVar:PyVarObject*::0:
697PyObject_InitVar:PyVarObject*:op:0:
698
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000699PyObject_Length:int:::
700PyObject_Length:PyObject*:o:0:
701
702PyObject_Print:int:::
703PyObject_Print:PyObject*:o:0:
704PyObject_Print:FILE*:fp::
705PyObject_Print:int:flags::
706
707PyObject_Repr:PyObject*::+1:
708PyObject_Repr:PyObject*:o:0:
709
710PyObject_SetAttr:int:::
711PyObject_SetAttr:PyObject*:o:0:
712PyObject_SetAttr:PyObject*:attr_name:0:
713PyObject_SetAttr:PyObject*:v:+1:
714
715PyObject_SetAttrString:int:::
716PyObject_SetAttrString:PyObject*:o:0:
717PyObject_SetAttrString:char*:attr_name::
718PyObject_SetAttrString:PyObject*:v:+1:
719
720PyObject_SetItem:int:::
721PyObject_SetItem:PyObject*:o:0:
722PyObject_SetItem:PyObject*:key:0:
723PyObject_SetItem:PyObject*:v:+1:
724
725PyObject_Str:PyObject*::+1:
726PyObject_Str:PyObject*:o:0:
727
728PyObject_Type:PyObject*::+1:
729PyObject_Type:PyObject*:o:0:
730
Fred Drake805bf1b1999-10-20 16:03:38 +0000731PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000732PyParser_SimpleParseFile:FILE*:fp::
733PyParser_SimpleParseFile:char*:filename::
734PyParser_SimpleParseFile:int:start::
735
Fred Drake805bf1b1999-10-20 16:03:38 +0000736PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000737PyParser_SimpleParseString:char*:str::
738PyParser_SimpleParseString:int:start::
739
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000740PyRun_AnyFile:int:::
741PyRun_AnyFile:FILE*:fp::
742PyRun_AnyFile:char*:filename::
743
Fred Drake4ca744c2000-08-12 03:39:47 +0000744PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000745PyRun_File:FILE*:fp::
746PyRun_File:char*:filename::
747PyRun_File:int:start::
748PyRun_File:PyObject*:globals:0:
749PyRun_File:PyObject*:locals:0:
750
751PyRun_InteractiveLoop:int:::
752PyRun_InteractiveLoop:FILE*:fp::
753PyRun_InteractiveLoop:char*:filename::
754
755PyRun_InteractiveOne:int:::
756PyRun_InteractiveOne:FILE*:fp::
757PyRun_InteractiveOne:char*:filename::
758
759PyRun_SimpleFile:int:::
760PyRun_SimpleFile:FILE*:fp::
761PyRun_SimpleFile:char*:filename::
762
763PyRun_SimpleString:int:::
764PyRun_SimpleString:char*:command::
765
Fred Drake4ca744c2000-08-12 03:39:47 +0000766PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000767PyRun_String:char*:str::
768PyRun_String:int:start::
769PyRun_String:PyObject*:globals:0:
770PyRun_String:PyObject*:locals:0:
771
772PySequence_Check:int:::
773PySequence_Check:PyObject*:o:0:
774
775PySequence_Concat:PyObject*::+1:
776PySequence_Concat:PyObject*:o1:0:
777PySequence_Concat:PyObject*:o2:0:
778
779PySequence_Count:int:::
780PySequence_Count:PyObject*:o:0:
781PySequence_Count:PyObject*:value:0:
782
783PySequence_DelItem:int:::
784PySequence_DelItem:PyObject*:o:0:
785PySequence_DelItem:int:i::
786
787PySequence_DelSlice:int:::
788PySequence_DelSlice:PyObject*:o:0:
789PySequence_DelSlice:int:i1::
790PySequence_DelSlice:int:i2::
791
Fred Drake81cccb72000-09-12 15:22:05 +0000792PySequence_Fast:PyObject*::+1:
793PySequence_Fast:PyObject*:v:0:
794PySequence_Fast:const char*:m::
795
796PySequence_Fast_GET_ITEM:PyObject*::0:
797PySequence_Fast_GET_ITEM:PyObject*:o:0:
798PySequence_Fast_GET_ITEM:int:i::
799
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000800PySequence_GetItem:PyObject*::+1:
801PySequence_GetItem:PyObject*:o:0:
802PySequence_GetItem:int:i::
803
804PySequence_GetSlice:PyObject*::+1:
805PySequence_GetSlice:PyObject*:o:0:
806PySequence_GetSlice:int:i1::
807PySequence_GetSlice:int:i2::
808
809PySequence_In:int:::
810PySequence_In:PyObject*:o:0:
811PySequence_In:PyObject*:value:0:
812
813PySequence_Index:int:::
814PySequence_Index:PyObject*:o:0:
815PySequence_Index:PyObject*:value:0:
816
Fred Drake1fa93652000-09-22 18:19:37 +0000817PySequence_InPlaceConcat:PyObject*::+1:
818PySequence_InPlaceConcat:PyObject*:s:0:
819PySequence_InPlaceConcat:PyObject*:o:0:
820
821PySequence_InPlaceRepeat:PyObject*::+1:
822PySequence_InPlaceRepeat:PyObject*:s:0:
823PySequence_InPlaceRepeat:PyObject*:o:0:
824
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000825PySequence_Repeat:PyObject*::+1:
826PySequence_Repeat:PyObject*:o:0:
827PySequence_Repeat:int:count::
828
829PySequence_SetItem:int:::
830PySequence_SetItem:PyObject*:o:0:
831PySequence_SetItem:int:i::
832PySequence_SetItem:PyObject*:v:+1:
833
834PySequence_SetSlice:int:::
835PySequence_SetSlice:PyObject*:o:0:
836PySequence_SetSlice:int:i1::
837PySequence_SetSlice:int:i2::
838PySequence_SetSlice:PyObject*:v:+1:
839
Fred Drake1c2d06a2000-06-16 20:00:04 +0000840PySequence_List:PyObject*::+1:
841PySequence_List:PyObject*:o:0:
842
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000843PySequence_Tuple:PyObject*::+1:
844PySequence_Tuple:PyObject*:o:0:
845
846PyString_AS_STRING:char*:::
847PyString_AS_STRING:PyObject*:string:0:
848
849PyString_AsString:char*:::
850PyString_AsString:PyObject*:string:0:
851
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +0000852PyString_AsStringAndSize:int:::
853PyString_AsStringAndSize:PyObject*:obj:0:
854PyString_AsStringAndSize:char**:buffer::
855PyString_AsStringAndSize:int*:length::
856
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000857PyString_Check:int:::
858PyString_Check:PyObject*:o:0:
859
860PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000861PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000862PyString_Concat:PyObject*:newpart:0:
863
864PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000865PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000866PyString_ConcatAndDel:PyObject*:newpart:-1:
867
868PyString_Format:PyObject*::+1:
869PyString_Format:PyObject*:format:0:
870PyString_Format:PyObject*:args:0:
871
872PyString_FromString:PyObject*::+1:
873PyString_FromString:const char*:v::
874
875PyString_FromStringAndSize:PyObject*::+1:
876PyString_FromStringAndSize:const char*:v::
877PyString_FromStringAndSize:int:len::
878
879PyString_GET_SIZE:int:::
880PyString_GET_SIZE:PyObject*:string:0:
881
882PyString_InternFromString:PyObject*::+1:
883PyString_InternFromString:const char*:v::
884
885PyString_InternInPlace:void:::
886PyString_InternInPlace:PyObject**:string:+1:???
887
888PyString_Size:int:::
889PyString_Size:PyObject*:string:0:
890
Marc-André Lemburg47073202000-07-07 15:48:54 +0000891PyString_Decode:PyObject*::+1:
892PyString_Decode:const char*:s::
893PyString_Decode:int:size::
894PyString_Decode:const char*:encoding::
895PyString_Decode:const char*:errors::
896
897PyString_Encode:PyObject*::+1:
898PyString_Encode:const char*:s::
899PyString_Encode:int:size::
900PyString_Encode:const char*:encoding::
901PyString_Encode:const char*:errors::
902
903PyString_AsEncodedString:PyObject*::+1:
904PyString_AsEncodedString:PyObject*:str::
905PyString_AsEncodedString:const char*:encoding::
906PyString_AsEncodedString:const char*:errors::
907
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000908PySys_SetArgv:int:::
909PySys_SetArgv:int:argc::
910PySys_SetArgv:char**:argv::
911
912PyThreadState_Clear:void:::
913PyThreadState_Clear:PyThreadState*:tstate::
914
915PyThreadState_Delete:void:::
916PyThreadState_Delete:PyThreadState*:tstate::
917
918PyThreadState_Get:PyThreadState*:::
919
920PyThreadState_New:PyThreadState*:::
921PyThreadState_New:PyInterpreterState*:interp::
922
923PyThreadState_Swap:PyThreadState*:::
924PyThreadState_Swap:PyThreadState*:tstate::
925
926PyTuple_Check:int:::
927PyTuple_Check:PyObject*:p:0:
928
929PyTuple_GET_ITEM:PyObject*::0:
930PyTuple_GET_ITEM:PyTupleObject*:p:0:
931PyTuple_GET_ITEM:int:pos::
932
933PyTuple_GetItem:PyObject*::0:
934PyTuple_GetItem:PyTupleObject*:p:0:
935PyTuple_GetItem:int:pos::
936
937PyTuple_GetSlice:PyObject*::+1:
938PyTuple_GetSlice:PyTupleObject*:p:0:
939PyTuple_GetSlice:int:low::
940PyTuple_GetSlice:int:high::
941
942PyTuple_New:PyObject*::+1:
943PyTuple_New:int:len::
944
945PyTuple_SET_ITEM:void:::
946PyTuple_SET_ITEM:PyTupleObject*:p:0:
947PyTuple_SET_ITEM:int:pos::
948PyTuple_SET_ITEM:PyObject*:o:0:
949
950PyTuple_SetItem:int:::
951PyTuple_SetItem:PyTupleObject*:p:0:
952PyTuple_SetItem:int:pos::
953PyTuple_SetItem:PyObject*:o:0:
954
955PyTuple_Size:int:::
956PyTuple_Size:PyTupleObject*:p:0:
957
Fred Drake992fe5a2000-06-16 21:04:15 +0000958PyUnicode_Check:int:::
959PyUnicode_Check:PyObject*:o:0:
960
961PyUnicode_GET_SIZE:int:::
962PyUnicode_GET_SIZE:PyObject*:o:0:
963
964PyUnicode_GET_DATA_SIZE:int:::
965PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
966
967PyUnicode_AS_UNICODE:Py_UNICODE*:::
968PyUnicode_AS_UNICODE:PyObject*:o:0:
969
970PyUnicode_AS_DATA:const char*:::
971PyUnicode_AS_DATA:PyObject*:o:0:
972
973Py_UNICODE_ISSPACE:int:::
974Py_UNICODE_ISSPACE:Py_UNICODE:ch::
975
976Py_UNICODE_ISLOWER:int:::
977Py_UNICODE_ISLOWER:Py_UNICODE:ch::
978
979Py_UNICODE_ISUPPER:int:::
980Py_UNICODE_ISUPPER:Py_UNICODE:ch::
981
982Py_UNICODE_ISTITLE:int:::
983Py_UNICODE_ISTITLE:Py_UNICODE:ch::
984
985Py_UNICODE_ISLINEBREAK:int:::
986Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
987
988Py_UNICODE_ISDECIMAL:int:::
989Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
990
991Py_UNICODE_ISDIGIT:int:::
992Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
993
994Py_UNICODE_ISNUMERIC:int:::
995Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
996
997Py_UNICODE_TOLOWER:Py_UNICODE:::
998Py_UNICODE_TOLOWER:Py_UNICODE:ch::
999
1000Py_UNICODE_TOUPPER:Py_UNICODE:::
1001Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1002
1003Py_UNICODE_TOTITLE:Py_UNICODE:::
1004Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1005
1006Py_UNICODE_TODECIMAL:int:::
1007Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1008
1009Py_UNICODE_TODIGIT:int:::
1010Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1011
1012Py_UNICODE_TONUMERIC:double:::
1013Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1014
1015PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001016PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001017PyUnicode_FromUnicode:int:size::
1018
1019PyUnicode_AsUnicode:Py_UNICODE*:::
1020PyUnicode_AsUnicode:PyObject :*unicode:0:
1021
1022PyUnicode_GetSize:int:::
1023PyUnicode_GetSize:PyObject :*unicode:0:
1024
1025PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001026PyUnicode_FromObject:PyObject*:*obj:0:
1027
1028PyUnicode_FromEncodedObject:PyObject*::+1:
1029PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1030PyUnicode_FromEncodedObject:const char*:encoding::
1031PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001032
1033PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001034PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001035PyUnicode_FromWideChar:int:size::
1036
1037PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001038PyUnicode_AsWideChar:PyObject*:*unicode:0:
1039PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001040PyUnicode_AsWideChar:int:size::
1041
1042PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001043PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001044PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001045PyUnicode_Decode:const char*:encoding::
1046PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001047
1048PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001049PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001050PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001051PyUnicode_Encode:const char*:encoding::
1052PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001053
1054PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001055PyUnicode_AsEncodedString:PyObject*:unicode::
1056PyUnicode_AsEncodedString:const char*:encoding::
1057PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001058
1059PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001060PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001061PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001062PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001063
1064PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001065PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001066PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001067PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001068
1069PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001070PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001071
1072PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001073PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001074PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001075PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001076PyUnicode_DecodeUTF16:int*:byteorder::
1077
1078PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001079PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001080PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001081PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001082PyUnicode_EncodeUTF16:int:byteorder::
1083
1084PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001085PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001086
1087PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001088PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001089PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001090PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001091
1092PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001093PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001094PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001095PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001096
1097PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001098PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001099
1100PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001101PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001102PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001103PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001104
1105PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001106PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001107PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001108PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001109
1110PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001111PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001112
1113PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001114PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001115PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001116PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001117
1118PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001119PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001120PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001121PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001122
1123PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001124PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001125
1126PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001127PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001128PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001129PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001130
1131PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001132PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001133PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001134PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001135
1136PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001137PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001138
1139PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001140PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001141PyUnicode_DecodeCharmap:int:size::
1142PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001143PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001144
1145PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001146PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001147PyUnicode_EncodeCharmap:int:size::
1148PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001149PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001150
1151PyUnicode_AsCharmapString:PyObject*::+1:
1152PyUnicode_AsCharmapString:PyObject*:unicode:0:
1153PyUnicode_AsCharmapString:PyObject*:mapping:0:
1154
1155PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001156PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001157PyUnicode_TranslateCharmap:int:size::
1158PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001159PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001160
1161PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001162PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001163PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001164PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001165
1166PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001167PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001168PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001169PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001170
1171PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001172PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001173
1174PyUnicode_Concat:PyObject*::+1:
1175PyUnicode_Concat:PyObject*:left:0:
1176PyUnicode_Concat:PyObject*:right:0:
1177
1178PyUnicode_Split:PyObject*::+1:
1179PyUnicode_Split:PyObject*:left:0:
1180PyUnicode_Split:PyObject*:right:0:
1181PyUnicode_Split:int:maxsplit::
1182
1183PyUnicode_Splitlines:PyObject*::+1:
1184PyUnicode_Splitlines:PyObject*:s:0:
1185PyUnicode_Splitlines:int:maxsplit::
1186
1187PyUnicode_Translate:PyObject*::+1:
1188PyUnicode_Translate:PyObject*:str:0:
1189PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001190PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001191
1192PyUnicode_Join:PyObject*::+1:
1193PyUnicode_Join:PyObject*:separator:0:
1194PyUnicode_Join:PyObject*:seq:0:
1195
1196PyUnicode_Tailmatch:PyObject*::+1:
1197PyUnicode_Tailmatch:PyObject*:str:0:
1198PyUnicode_Tailmatch:PyObject*:substr:0:
1199PyUnicode_Tailmatch:int:start::
1200PyUnicode_Tailmatch:int:end::
1201PyUnicode_Tailmatch:int:direction::
1202
1203PyUnicode_Find:PyObject*::+1:
1204PyUnicode_Find:PyObject*:str:0:
1205PyUnicode_Find:PyObject*:substr:0:
1206PyUnicode_Find:int:start::
1207PyUnicode_Find:int:end::
1208PyUnicode_Find:int:direction::
1209
1210PyUnicode_Count:PyObject*::+1:
1211PyUnicode_Count:PyObject*:str:0:
1212PyUnicode_Count:PyObject*:substr:0:
1213PyUnicode_Count:int:start::
1214PyUnicode_Count:int:end::
1215
1216PyUnicode_Replace:PyObject*::+1:
1217PyUnicode_Replace:PyObject*:str:0:
1218PyUnicode_Replace:PyObject*:substr:0:
1219PyUnicode_Replace:PyObject*:replstr:0:
1220PyUnicode_Replace:int:maxcount::
1221
1222PyUnicode_Compare:int:::
1223PyUnicode_Compare:PyObject*:left:0:
1224PyUnicode_Compare:PyObject*:right:0:
1225
1226PyUnicode_Format:PyObject*::+1:
1227PyUnicode_Format:PyObject*:format:0:
1228PyUnicode_Format:PyObject*:args:0:
1229
1230PyUnicode_Contains:int:::
1231PyUnicode_Contains:PyObject*:container:0:
1232PyUnicode_Contains:PyObject*:element:0:
1233
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001234Py_AtExit:int:::
1235Py_AtExit:void (*)():func::
1236
1237Py_CompileString:PyObject*::+1:
1238Py_CompileString:char*:str::
1239Py_CompileString:char*:filename::
1240Py_CompileString:int:start::
1241
1242Py_DECREF:void:::
1243Py_DECREF:PyObject*:o:-1:
1244
1245Py_EndInterpreter:void:::
1246Py_EndInterpreter:PyThreadState*:tstate::
1247
1248Py_Exit:void:::
1249Py_Exit:int:status::
1250
1251Py_FatalError:void:::
1252Py_FatalError:char*:message::
1253
1254Py_FdIsInteractive:int:::
1255Py_FdIsInteractive:FILE*:fp::
1256Py_FdIsInteractive:char*:filename::
1257
1258Py_Finalize:void:::
1259
Fred Drake8520cc22000-04-10 19:38:24 +00001260Py_FindMethod:PyObject*::+1:
1261Py_FindMethod:PyMethodDef[]:methods::
1262Py_FindMethod:PyObject*:self:+1:
1263Py_FindMethod:char*:name::
1264
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001265Py_GetBuildInfoconst:char*:::
1266
1267Py_GetCompilerconst:char*:::
1268
1269Py_GetCopyrightconst:char*:::
1270
1271Py_GetExecPrefix:char*:::
1272
1273Py_GetPath:char*:::
1274
1275Py_GetPlatformconst:char*:::
1276
1277Py_GetPrefix:char*:::
1278
1279Py_GetProgramFullPath:char*:::
1280
1281Py_GetProgramName:char*:::
1282
1283Py_GetVersionconst:char*:::
1284
1285Py_INCREF:void:::
1286Py_INCREF:PyObject*:o:+1:
1287
1288Py_Initialize:void:::
1289
1290Py_IsInitialized:int:::
1291
1292Py_NewInterpreter:PyThreadState*:::
1293
1294Py_SetProgramName:void:::
1295Py_SetProgramName:char*:name::
1296
1297Py_XDECREF:void:::
1298Py_XDECREF:PyObject*:o:-1:if o is not NULL
1299
1300Py_XINCREF:void:::
1301Py_XINCREF:PyObject*:o:+1:if o is not NULL
1302
1303_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1304_PyImport_FindExtension:char*:::
1305_PyImport_FindExtension:char*:::
1306
1307_PyImport_Fini:void:::
1308
1309_PyImport_FixupExtension:PyObject*:::???
1310_PyImport_FixupExtension:char*:::
1311_PyImport_FixupExtension:char*:::
1312
1313_PyImport_Init:void:::
1314
Fred Drakef913e542000-09-12 20:17:17 +00001315_PyObject_Del:void:::
1316_PyObject_Del:PyObject*:op:0:
1317
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001318_PyObject_New:PyObject*::+1:
1319_PyObject_New:PyTypeObject*:type:0:
1320
Fred Drakef913e542000-09-12 20:17:17 +00001321_PyObject_NewVar:PyVarObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001322_PyObject_NewVar:PyTypeObject*:type:0:
1323_PyObject_NewVar:int:size::
1324
1325_PyString_Resize:int:::
1326_PyString_Resize:PyObject**:string:+1:
1327_PyString_Resize:int:newsize::
1328
1329_PyTuple_Resize:int:::
1330_PyTuple_Resize:PyTupleObject**:p:+1:
1331_PyTuple_Resize:int:new::
1332_PyTuple_Resize:int:last_is_sticky::
1333
1334_Py_c_diff:Py_complex:::
1335_Py_c_diff:Py_complex:left::
1336_Py_c_diff:Py_complex:right::
1337
1338_Py_c_neg:Py_complex:::
1339_Py_c_neg:Py_complex:complex::
1340
1341_Py_c_pow:Py_complex:::
1342_Py_c_pow:Py_complex:num::
1343_Py_c_pow:Py_complex:exp::
1344
1345_Py_c_prod:Py_complex:::
1346_Py_c_prod:Py_complex:left::
1347_Py_c_prod:Py_complex:right::
1348
1349_Py_c_quot:Py_complex:::
1350_Py_c_quot:Py_complex:dividend::
1351_Py_c_quot:Py_complex:divisor::
1352
1353_Py_c_sum:Py_complex:::
1354_Py_c_sum:Py_complex:left::
1355_Py_c_sum:Py_complex:right::