blob: 5f1680026ebb0f11d25291b52909e8c89268cbe2 [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
Fred Drakef47d8ef2001-09-20 19:18:52 +0000452PyLong_FromLongLong:PyObject*::+1:
453PyLong_FromLongLong:long long:v::
454
455PyLong_FromUnsignedLongLong:PyObject*::+1:
456PyLong_FromUnsignedLongLong:unsigned long long:v::
457
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000458PyLong_FromString:PyObject*::+1:
459PyLong_FromString:char*:str::
460PyLong_FromString:char**:pend::
461PyLong_FromString:int:base::
462
Fred Drakef47d8ef2001-09-20 19:18:52 +0000463PyLong_FromUnicode:PyObject*::+1:
464PyLong_FromUnicode:Py_UNICODE:u::
465PyLong_FromUnicode:int:length::
466PyLong_FromUnicode:int:base::
467
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000468PyLong_FromUnsignedLong:PyObject*::+1:
469PyLong_FromUnsignedLong:unsignedlong:v::
470
Fred Drakef47d8ef2001-09-20 19:18:52 +0000471PyLong_FromVoidPtr:PyObject*::+1:
472PyLong_FromVoidPtr:void*:p::
473
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000474PyMapping_Check:int:::
475PyMapping_Check:PyObject*:o:0:
476
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000477PyMapping_DelItem:int:::
478PyMapping_DelItem:PyObject*:o:0:
479PyMapping_DelItem:PyObject*:key:0:
480
481PyMapping_DelItemString:int:::
482PyMapping_DelItemString:PyObject*:o:0:
483PyMapping_DelItemString:char*:key::
484
485PyMapping_GetItemString:PyObject*::+1:
486PyMapping_GetItemString:PyObject*:o:0:
487PyMapping_GetItemString:char*:key::
488
489PyMapping_HasKey:int:::
490PyMapping_HasKey:PyObject*:o:0:
491PyMapping_HasKey:PyObject*:key::
492
493PyMapping_HasKeyString:int:::
494PyMapping_HasKeyString:PyObject*:o:0:
495PyMapping_HasKeyString:char*:key::
496
497PyMapping_Items:PyObject*::+1:
498PyMapping_Items:PyObject*:o:0:
499
500PyMapping_Keys:PyObject*::+1:
501PyMapping_Keys:PyObject*:o:0:
502
503PyMapping_Length:int:::
504PyMapping_Length:PyObject*:o:0:
505
506PyMapping_SetItemString:int:::
507PyMapping_SetItemString:PyObject*:o:0:
508PyMapping_SetItemString:char*:key::
509PyMapping_SetItemString:PyObject*:v:+1:
510
511PyMapping_Values:PyObject*::+1:
512PyMapping_Values:PyObject*:o:0:
513
Fred Drake9c75ff72001-09-06 18:06:46 +0000514PyMethod_Class:PyObject*::0:
515PyMethod_Class:PyObject*:im:0:
516
517PyMethod_Function:PyObject*::0:
518PyMethod_Function:PyObject*:im:0:
519
520PyMethod_GET_CLASS:PyObject*::0:
521PyMethod_GET_CLASS:PyObject*:im:0:
522
523PyMethod_GET_FUNCTION:PyObject*::0:
524PyMethod_GET_FUNCTION:PyObject*:im:0:
525
526PyMethod_GET_SELF:PyObject*::0:
527PyMethod_GET_SELF:PyObject*:im:0:
528
529PyMethod_New:PyObject*::+1:
530PyMethod_New:PyObject*:func:0:
531PyMethod_New:PyObject*:self:0:
532PyMethod_New:PyObject*:class:0:
533
534PyMethod_Self:PyObject*::0:
535PyMethod_Self:PyObject*:im:0:
536
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000537PyModule_GetDict:PyObject*::0:
538PyModule_GetDict::PyObject* module:0:
539
540PyModule_GetFilename:char*:::
541PyModule_GetFilename:PyObject*:module:0:
542
543PyModule_GetName:char*:::
544PyModule_GetName:PyObject*:module:0:
545
546PyModule_New:PyObject*::+1:
547PyModule_New::char* name::
548
549PyNumber_Absolute:PyObject*::+1:
550PyNumber_Absolute:PyObject*:o:0:
551
552PyNumber_Add:PyObject*::+1:
553PyNumber_Add:PyObject*:o1:0:
554PyNumber_Add:PyObject*:o2:0:
555
556PyNumber_And:PyObject*::+1:
557PyNumber_And:PyObject*:o1:0:
558PyNumber_And:PyObject*:o2:0:
559
560PyNumber_Check:PyObject*:o:0:
561PyNumber_Check:int:::
562
563PyNumber_Coerce:int:::
564PyNumber_Coerce:PyObject**:p1:+1:
565PyNumber_Coerce:PyObject**:p2:+1:
566
567PyNumber_Divide:PyObject*::+1:
568PyNumber_Divide:PyObject*:o1:0:
569PyNumber_Divide:PyObject*:o2:0:
570
571PyNumber_Divmod:PyObject*::+1:
572PyNumber_Divmod:PyObject*:o1:0:
573PyNumber_Divmod:PyObject*:o2:0:
574
575PyNumber_Float:PyObject*::+1:
576PyNumber_Float:PyObject*:o:0:
577
Fred Drake03590c62001-08-08 18:50:18 +0000578PyNumber_FloorDivide:PyObject*::+1:
579PyNumber_FloorDivide:PyObject*:v:0:
580PyNumber_FloorDivide:PyObject*:w:0:
581
Fred Drake1fa93652000-09-22 18:19:37 +0000582PyNumber_InPlaceAdd:PyObject*::+1:
583PyNumber_InPlaceAdd:PyObject*:v:0:
584PyNumber_InPlaceAdd:PyObject*:w:0:
585
586PyNumber_InPlaceAnd:PyObject*::+1:
587PyNumber_InPlaceAnd:PyObject*:v:0:
588PyNumber_InPlaceAnd:PyObject*:w:0:
589
590PyNumber_InPlaceDivide:PyObject*::+1:
591PyNumber_InPlaceDivide:PyObject*:v:0:
592PyNumber_InPlaceDivide:PyObject*:w:0:
593
Fred Drake03590c62001-08-08 18:50:18 +0000594PyNumber_InPlaceFloorDivide:PyObject*::+1:
595PyNumber_InPlaceFloorDivide:PyObject*:v:0:
596PyNumber_InPlaceFloorDivide:PyObject*:w:0:
597
Fred Drake1fa93652000-09-22 18:19:37 +0000598PyNumber_InPlaceLshift:PyObject*::+1:
599PyNumber_InPlaceLshift:PyObject*:v:0:
600PyNumber_InPlaceLshift:PyObject*:w:0:
601
602PyNumber_InPlaceMultiply:PyObject*::+1:
603PyNumber_InPlaceMultiply:PyObject*:v:0:
604PyNumber_InPlaceMultiply:PyObject*:w:0:
605
606PyNumber_InPlaceOr:PyObject*::+1:
607PyNumber_InPlaceOr:PyObject*:v:0:
608PyNumber_InPlaceOr:PyObject*:w:0:
609
610PyNumber_InPlacePower:PyObject*::+1:
611PyNumber_InPlacePower:PyObject*:v:0:
612PyNumber_InPlacePower:PyObject*:w:0:
613PyNumber_InPlacePower:PyObject*:z:0:
614
615PyNumber_InPlaceRemainder:PyObject*::+1:
616PyNumber_InPlaceRemainder:PyObject*:v:0:
617PyNumber_InPlaceRemainder:PyObject*:w:0:
618
619PyNumber_InPlaceRshift:PyObject*::+1:
620PyNumber_InPlaceRshift:PyObject*:v:0:
621PyNumber_InPlaceRshift:PyObject*:w:0:
622
623PyNumber_InPlaceSubtract:PyObject*::+1:
624PyNumber_InPlaceSubtract:PyObject*:v:0:
625PyNumber_InPlaceSubtract:PyObject*:w:0:
626
Fred Drake03590c62001-08-08 18:50:18 +0000627PyNumber_InPlaceTrueDivide:PyObject*::+1:
628PyNumber_InPlaceTrueDivide:PyObject*:v:0:
629PyNumber_InPlaceTrueDivide:PyObject*:w:0:
630
Fred Drake1fa93652000-09-22 18:19:37 +0000631PyNumber_InPlaceXor:PyObject*::+1:
632PyNumber_InPlaceXor:PyObject*:v:0:
633PyNumber_InPlaceXor:PyObject*:w:0:
634
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000635PyNumber_Int:PyObject*::+1:
636PyNumber_Int:PyObject*:o:0:
637
638PyNumber_Invert:PyObject*::+1:
639PyNumber_Invert:PyObject*:o:0:
640
641PyNumber_Long:PyObject*::+1:
642PyNumber_Long:PyObject*:o:0:
643
644PyNumber_Lshift:PyObject*::+1:
645PyNumber_Lshift:PyObject*:o1:0:
646PyNumber_Lshift:PyObject*:o2:0:
647
648PyNumber_Multiply:PyObject*::+1:
649PyNumber_Multiply:PyObject*:o1:0:
650PyNumber_Multiply:PyObject*:o2:0:
651
652PyNumber_Negative:PyObject*::+1:
653PyNumber_Negative:PyObject*:o:0:
654
655PyNumber_Or:PyObject*::+1:
656PyNumber_Or:PyObject*:o1:0:
657PyNumber_Or:PyObject*:o2:0:
658
659PyNumber_Positive:PyObject*::+1:
660PyNumber_Positive:PyObject*:o:0:
661
662PyNumber_Power:PyObject*::+1:
663PyNumber_Power:PyObject*:o1:0:
664PyNumber_Power:PyObject*:o2:0:
665PyNumber_Power:PyObject*:o3:0:
666
667PyNumber_Remainder:PyObject*::+1:
668PyNumber_Remainder:PyObject*:o1:0:
669PyNumber_Remainder:PyObject*:o2:0:
670
671PyNumber_Rshift:PyObject*::+1:
672PyNumber_Rshift:PyObject*:o1:0:
673PyNumber_Rshift:PyObject*:o2:0:
674
675PyNumber_Subtract:PyObject*::+1:
676PyNumber_Subtract:PyObject*:o1:0:
677PyNumber_Subtract:PyObject*:o2:0:
678
Fred Drake03590c62001-08-08 18:50:18 +0000679PyNumber_TrueDivide:PyObject*::+1:
680PyNumber_TrueDivide:PyObject*:v:0:
681PyNumber_TrueDivide:PyObject*:w:0:
682
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000683PyNumber_Xor:PyObject*::+1:
684PyNumber_Xor:PyObject*:o1:0:
685PyNumber_Xor:PyObject*:o2:0:
686
687PyOS_GetLastModificationTime:long:::
688PyOS_GetLastModificationTime:char*:filename::
689
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000690PyObject_AsFileDescriptor:int:::
691PyObject_AsFileDescriptor:PyObject*:o:0:
692
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000693PyObject_CallFunction:PyObject*::+1:
694PyObject_CallFunction:PyObject*:callable_object:0:
695PyObject_CallFunction:char*:format::
696PyObject_CallFunction::...::
697
698PyObject_CallMethod:PyObject*::+1:
699PyObject_CallMethod:PyObject*:o:0:
700PyObject_CallMethod:char*:m::
701PyObject_CallMethod:char*:format::
702PyObject_CallMethod::...::
703
704PyObject_CallObject:PyObject*::+1:
705PyObject_CallObject:PyObject*:callable_object:0:
706PyObject_CallObject:PyObject*:args:0:
707
708PyObject_Cmp:int:::
709PyObject_Cmp:PyObject*:o1:0:
710PyObject_Cmp:PyObject*:o2:0:
711PyObject_Cmp:int*:result::
712
713PyObject_Compare:int:::
714PyObject_Compare:PyObject*:o1:0:
715PyObject_Compare:PyObject*:o2:0:
716
717PyObject_DelAttr:int:::
718PyObject_DelAttr:PyObject*:o:0:
719PyObject_DelAttr:PyObject*:attr_name:0:
720
721PyObject_DelAttrString:int:::
722PyObject_DelAttrString:PyObject*:o:0:
723PyObject_DelAttrString:char*:attr_name::
724
725PyObject_DelItem:int:::
726PyObject_DelItem:PyObject*:o:0:
727PyObject_DelItem:PyObject*:key:0:
728
Fred Drake9c75ff72001-09-06 18:06:46 +0000729PyObject_Dir:PyObject*::+1:
730PyObject_Dir:PyObject*:o:0:
731
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000732PyObject_GetAttr:PyObject*::+1:
733PyObject_GetAttr:PyObject*:o:0:
734PyObject_GetAttr:PyObject*:attr_name:0:
735
736PyObject_GetAttrString:PyObject*::+1:
737PyObject_GetAttrString:PyObject*:o:0:
738PyObject_GetAttrString:char*:attr_name::
739
740PyObject_GetItem:PyObject*::+1:
741PyObject_GetItem:PyObject*:o:0:
742PyObject_GetItem:PyObject*:key:0:
743
744PyObject_HasAttr:int:::
745PyObject_HasAttr:PyObject*:o:0:
746PyObject_HasAttr:PyObject*:attr_name:0:
747
748PyObject_HasAttrString:int:::
749PyObject_HasAttrString:PyObject*:o:0:
750PyObject_HasAttrString:char*:attr_name:0:
751
752PyObject_Hash:int:::
753PyObject_Hash:PyObject*:o:0:
754
755PyObject_IsTrue:int:::
756PyObject_IsTrue:PyObject*:o:0:
757
Fred Drakef913e542000-09-12 20:17:17 +0000758PyObject_Init:PyObject*::0:
759PyObject_Init:PyObject*:op:0:
760
761PyObject_InitVar:PyVarObject*::0:
762PyObject_InitVar:PyVarObject*:op:0:
763
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000764PyObject_Length:int:::
765PyObject_Length:PyObject*:o:0:
766
Fred Drake8e0c09d2001-07-06 23:31:49 +0000767PyObject_NEW:PyObject*::+1:
768
769PyObject_New:PyObject*::+1:
770
771PyObject_NEW_VAR:PyObject*::+1:
772
773PyObject_NewVar:PyObject*::+1:
774
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000775PyObject_Print:int:::
776PyObject_Print:PyObject*:o:0:
777PyObject_Print:FILE*:fp::
778PyObject_Print:int:flags::
779
780PyObject_Repr:PyObject*::+1:
781PyObject_Repr:PyObject*:o:0:
782
783PyObject_SetAttr:int:::
784PyObject_SetAttr:PyObject*:o:0:
785PyObject_SetAttr:PyObject*:attr_name:0:
786PyObject_SetAttr:PyObject*:v:+1:
787
788PyObject_SetAttrString:int:::
789PyObject_SetAttrString:PyObject*:o:0:
790PyObject_SetAttrString:char*:attr_name::
791PyObject_SetAttrString:PyObject*:v:+1:
792
793PyObject_SetItem:int:::
794PyObject_SetItem:PyObject*:o:0:
795PyObject_SetItem:PyObject*:key:0:
796PyObject_SetItem:PyObject*:v:+1:
797
798PyObject_Str:PyObject*::+1:
799PyObject_Str:PyObject*:o:0:
800
801PyObject_Type:PyObject*::+1:
802PyObject_Type:PyObject*:o:0:
803
Fred Drakeb2625eb2001-05-29 15:34:06 +0000804PyObject_Unicode:PyObject*::+1:
805PyObject_Unicode:PyObject*:o:0:
806
Fred Drake805bf1b1999-10-20 16:03:38 +0000807PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000808PyParser_SimpleParseFile:FILE*:fp::
809PyParser_SimpleParseFile:char*:filename::
810PyParser_SimpleParseFile:int:start::
811
Fred Drake805bf1b1999-10-20 16:03:38 +0000812PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000813PyParser_SimpleParseString:char*:str::
814PyParser_SimpleParseString:int:start::
815
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000816PyRun_AnyFile:int:::
817PyRun_AnyFile:FILE*:fp::
818PyRun_AnyFile:char*:filename::
819
Fred Drake4ca744c2000-08-12 03:39:47 +0000820PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000821PyRun_File:FILE*:fp::
822PyRun_File:char*:filename::
823PyRun_File:int:start::
824PyRun_File:PyObject*:globals:0:
825PyRun_File:PyObject*:locals:0:
826
827PyRun_InteractiveLoop:int:::
828PyRun_InteractiveLoop:FILE*:fp::
829PyRun_InteractiveLoop:char*:filename::
830
831PyRun_InteractiveOne:int:::
832PyRun_InteractiveOne:FILE*:fp::
833PyRun_InteractiveOne:char*:filename::
834
835PyRun_SimpleFile:int:::
836PyRun_SimpleFile:FILE*:fp::
837PyRun_SimpleFile:char*:filename::
838
839PyRun_SimpleString:int:::
840PyRun_SimpleString:char*:command::
841
Fred Drake4ca744c2000-08-12 03:39:47 +0000842PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000843PyRun_String:char*:str::
844PyRun_String:int:start::
845PyRun_String:PyObject*:globals:0:
846PyRun_String:PyObject*:locals:0:
847
848PySequence_Check:int:::
849PySequence_Check:PyObject*:o:0:
850
851PySequence_Concat:PyObject*::+1:
852PySequence_Concat:PyObject*:o1:0:
853PySequence_Concat:PyObject*:o2:0:
854
855PySequence_Count:int:::
856PySequence_Count:PyObject*:o:0:
857PySequence_Count:PyObject*:value:0:
858
859PySequence_DelItem:int:::
860PySequence_DelItem:PyObject*:o:0:
861PySequence_DelItem:int:i::
862
863PySequence_DelSlice:int:::
864PySequence_DelSlice:PyObject*:o:0:
865PySequence_DelSlice:int:i1::
866PySequence_DelSlice:int:i2::
867
Fred Drake81cccb72000-09-12 15:22:05 +0000868PySequence_Fast:PyObject*::+1:
869PySequence_Fast:PyObject*:v:0:
870PySequence_Fast:const char*:m::
871
872PySequence_Fast_GET_ITEM:PyObject*::0:
873PySequence_Fast_GET_ITEM:PyObject*:o:0:
874PySequence_Fast_GET_ITEM:int:i::
875
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000876PySequence_GetItem:PyObject*::+1:
877PySequence_GetItem:PyObject*:o:0:
878PySequence_GetItem:int:i::
879
880PySequence_GetSlice:PyObject*::+1:
881PySequence_GetSlice:PyObject*:o:0:
882PySequence_GetSlice:int:i1::
883PySequence_GetSlice:int:i2::
884
885PySequence_In:int:::
886PySequence_In:PyObject*:o:0:
887PySequence_In:PyObject*:value:0:
888
889PySequence_Index:int:::
890PySequence_Index:PyObject*:o:0:
891PySequence_Index:PyObject*:value:0:
892
Fred Drake1fa93652000-09-22 18:19:37 +0000893PySequence_InPlaceConcat:PyObject*::+1:
894PySequence_InPlaceConcat:PyObject*:s:0:
895PySequence_InPlaceConcat:PyObject*:o:0:
896
897PySequence_InPlaceRepeat:PyObject*::+1:
898PySequence_InPlaceRepeat:PyObject*:s:0:
899PySequence_InPlaceRepeat:PyObject*:o:0:
900
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000901PySequence_Repeat:PyObject*::+1:
902PySequence_Repeat:PyObject*:o:0:
903PySequence_Repeat:int:count::
904
905PySequence_SetItem:int:::
906PySequence_SetItem:PyObject*:o:0:
907PySequence_SetItem:int:i::
908PySequence_SetItem:PyObject*:v:+1:
909
910PySequence_SetSlice:int:::
911PySequence_SetSlice:PyObject*:o:0:
912PySequence_SetSlice:int:i1::
913PySequence_SetSlice:int:i2::
914PySequence_SetSlice:PyObject*:v:+1:
915
Fred Drake1c2d06a2000-06-16 20:00:04 +0000916PySequence_List:PyObject*::+1:
917PySequence_List:PyObject*:o:0:
918
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000919PySequence_Tuple:PyObject*::+1:
920PySequence_Tuple:PyObject*:o:0:
921
922PyString_AS_STRING:char*:::
923PyString_AS_STRING:PyObject*:string:0:
924
Fred Drakeb2625eb2001-05-29 15:34:06 +0000925PyString_AsDecodedObject:PyObject*::+1:
926PyString_AsDecodedObject:PyObject*:str:0:
927PyString_AsDecodedObject:const char*:encoding::
928PyString_AsDecodedObject:const char*:errors::
929
930PyString_AsEncodedObject:PyObject*::+1:
931PyString_AsEncodedObject:PyObject*:str:0:
932PyString_AsEncodedObject:const char*:encoding::
933PyString_AsEncodedObject:const char*:errors::
934
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000935PyString_AsString:char*:::
936PyString_AsString:PyObject*:string:0:
937
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +0000938PyString_AsStringAndSize:int:::
939PyString_AsStringAndSize:PyObject*:obj:0:
940PyString_AsStringAndSize:char**:buffer::
941PyString_AsStringAndSize:int*:length::
942
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000943PyString_Check:int:::
944PyString_Check:PyObject*:o:0:
945
946PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000947PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000948PyString_Concat:PyObject*:newpart:0:
949
950PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000951PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000952PyString_ConcatAndDel:PyObject*:newpart:-1:
953
954PyString_Format:PyObject*::+1:
955PyString_Format:PyObject*:format:0:
956PyString_Format:PyObject*:args:0:
957
958PyString_FromString:PyObject*::+1:
959PyString_FromString:const char*:v::
960
961PyString_FromStringAndSize:PyObject*::+1:
962PyString_FromStringAndSize:const char*:v::
963PyString_FromStringAndSize:int:len::
964
Barry Warsaw8c64a542001-08-28 02:32:04 +0000965PyString_FromFormat:PyObject*::+1:
966PyString_FromFormat:const char*:format::
967PyString_FromFormat::...::
968
969PyString_FromFormatV:PyObject*::+1:
970PyString_FromFormatV:const char*:format::
971PyString_FromFormatV:va_list:vargs::
972
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000973PyString_GET_SIZE:int:::
974PyString_GET_SIZE:PyObject*:string:0:
975
976PyString_InternFromString:PyObject*::+1:
977PyString_InternFromString:const char*:v::
978
979PyString_InternInPlace:void:::
980PyString_InternInPlace:PyObject**:string:+1:???
981
982PyString_Size:int:::
983PyString_Size:PyObject*:string:0:
984
Marc-André Lemburg47073202000-07-07 15:48:54 +0000985PyString_Decode:PyObject*::+1:
986PyString_Decode:const char*:s::
987PyString_Decode:int:size::
988PyString_Decode:const char*:encoding::
989PyString_Decode:const char*:errors::
990
991PyString_Encode:PyObject*::+1:
992PyString_Encode:const char*:s::
993PyString_Encode:int:size::
994PyString_Encode:const char*:encoding::
995PyString_Encode:const char*:errors::
996
997PyString_AsEncodedString:PyObject*::+1:
998PyString_AsEncodedString:PyObject*:str::
999PyString_AsEncodedString:const char*:encoding::
1000PyString_AsEncodedString:const char*:errors::
1001
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001002PySys_SetArgv:int:::
1003PySys_SetArgv:int:argc::
1004PySys_SetArgv:char**:argv::
1005
1006PyThreadState_Clear:void:::
1007PyThreadState_Clear:PyThreadState*:tstate::
1008
1009PyThreadState_Delete:void:::
1010PyThreadState_Delete:PyThreadState*:tstate::
1011
1012PyThreadState_Get:PyThreadState*:::
1013
Fred Drakeb2625eb2001-05-29 15:34:06 +00001014PyThreadState_GetDict:PyObject*::0:
1015
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001016PyThreadState_New:PyThreadState*:::
1017PyThreadState_New:PyInterpreterState*:interp::
1018
1019PyThreadState_Swap:PyThreadState*:::
1020PyThreadState_Swap:PyThreadState*:tstate::
1021
1022PyTuple_Check:int:::
1023PyTuple_Check:PyObject*:p:0:
1024
1025PyTuple_GET_ITEM:PyObject*::0:
1026PyTuple_GET_ITEM:PyTupleObject*:p:0:
1027PyTuple_GET_ITEM:int:pos::
1028
1029PyTuple_GetItem:PyObject*::0:
1030PyTuple_GetItem:PyTupleObject*:p:0:
1031PyTuple_GetItem:int:pos::
1032
1033PyTuple_GetSlice:PyObject*::+1:
1034PyTuple_GetSlice:PyTupleObject*:p:0:
1035PyTuple_GetSlice:int:low::
1036PyTuple_GetSlice:int:high::
1037
1038PyTuple_New:PyObject*::+1:
1039PyTuple_New:int:len::
1040
1041PyTuple_SET_ITEM:void:::
1042PyTuple_SET_ITEM:PyTupleObject*:p:0:
1043PyTuple_SET_ITEM:int:pos::
1044PyTuple_SET_ITEM:PyObject*:o:0:
1045
1046PyTuple_SetItem:int:::
1047PyTuple_SetItem:PyTupleObject*:p:0:
1048PyTuple_SetItem:int:pos::
1049PyTuple_SetItem:PyObject*:o:0:
1050
1051PyTuple_Size:int:::
1052PyTuple_Size:PyTupleObject*:p:0:
1053
Fred Drake992fe5a2000-06-16 21:04:15 +00001054PyUnicode_Check:int:::
1055PyUnicode_Check:PyObject*:o:0:
1056
1057PyUnicode_GET_SIZE:int:::
1058PyUnicode_GET_SIZE:PyObject*:o:0:
1059
1060PyUnicode_GET_DATA_SIZE:int:::
1061PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
1062
1063PyUnicode_AS_UNICODE:Py_UNICODE*:::
1064PyUnicode_AS_UNICODE:PyObject*:o:0:
1065
1066PyUnicode_AS_DATA:const char*:::
1067PyUnicode_AS_DATA:PyObject*:o:0:
1068
1069Py_UNICODE_ISSPACE:int:::
1070Py_UNICODE_ISSPACE:Py_UNICODE:ch::
1071
1072Py_UNICODE_ISLOWER:int:::
1073Py_UNICODE_ISLOWER:Py_UNICODE:ch::
1074
1075Py_UNICODE_ISUPPER:int:::
1076Py_UNICODE_ISUPPER:Py_UNICODE:ch::
1077
1078Py_UNICODE_ISTITLE:int:::
1079Py_UNICODE_ISTITLE:Py_UNICODE:ch::
1080
1081Py_UNICODE_ISLINEBREAK:int:::
1082Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
1083
1084Py_UNICODE_ISDECIMAL:int:::
1085Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
1086
1087Py_UNICODE_ISDIGIT:int:::
1088Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
1089
1090Py_UNICODE_ISNUMERIC:int:::
1091Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
1092
1093Py_UNICODE_TOLOWER:Py_UNICODE:::
1094Py_UNICODE_TOLOWER:Py_UNICODE:ch::
1095
1096Py_UNICODE_TOUPPER:Py_UNICODE:::
1097Py_UNICODE_TOUPPER:Py_UNICODE:ch::
1098
1099Py_UNICODE_TOTITLE:Py_UNICODE:::
1100Py_UNICODE_TOTITLE:Py_UNICODE:ch::
1101
1102Py_UNICODE_TODECIMAL:int:::
1103Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
1104
1105Py_UNICODE_TODIGIT:int:::
1106Py_UNICODE_TODIGIT:Py_UNICODE:ch::
1107
1108Py_UNICODE_TONUMERIC:double:::
1109Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
1110
1111PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001112PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +00001113PyUnicode_FromUnicode:int:size::
1114
1115PyUnicode_AsUnicode:Py_UNICODE*:::
1116PyUnicode_AsUnicode:PyObject :*unicode:0:
1117
1118PyUnicode_GetSize:int:::
1119PyUnicode_GetSize:PyObject :*unicode:0:
1120
1121PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001122PyUnicode_FromObject:PyObject*:*obj:0:
1123
1124PyUnicode_FromEncodedObject:PyObject*::+1:
1125PyUnicode_FromEncodedObject:PyObject*:*obj:0:
1126PyUnicode_FromEncodedObject:const char*:encoding::
1127PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001128
1129PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001130PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001131PyUnicode_FromWideChar:int:size::
1132
1133PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001134PyUnicode_AsWideChar:PyObject*:*unicode:0:
1135PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001136PyUnicode_AsWideChar:int:size::
1137
1138PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001139PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001140PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001141PyUnicode_Decode:const char*:encoding::
1142PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001143
1144PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001145PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001146PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001147PyUnicode_Encode:const char*:encoding::
1148PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001149
1150PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001151PyUnicode_AsEncodedString:PyObject*:unicode::
1152PyUnicode_AsEncodedString:const char*:encoding::
1153PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001154
1155PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001156PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001157PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001158PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001159
1160PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001161PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001162PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001163PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001164
1165PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001166PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001167
1168PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001169PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001170PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001171PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001172PyUnicode_DecodeUTF16:int*:byteorder::
1173
1174PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001175PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001176PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001177PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001178PyUnicode_EncodeUTF16:int:byteorder::
1179
1180PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001181PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001182
1183PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001184PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001185PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001186PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001187
1188PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001189PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001190PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001191PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001192
1193PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001194PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001195
1196PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001197PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001198PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001199PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001200
1201PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001202PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001203PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001204PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001205
1206PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001207PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001208
1209PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001210PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001211PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001212PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001213
1214PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001215PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001216PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001217PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001218
1219PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001220PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001221
1222PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001223PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001224PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001225PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001226
1227PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001228PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001229PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001230PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001231
1232PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001233PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001234
1235PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001236PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001237PyUnicode_DecodeCharmap:int:size::
1238PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001239PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001240
1241PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001242PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001243PyUnicode_EncodeCharmap:int:size::
1244PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001245PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001246
1247PyUnicode_AsCharmapString:PyObject*::+1:
1248PyUnicode_AsCharmapString:PyObject*:unicode:0:
1249PyUnicode_AsCharmapString:PyObject*:mapping:0:
1250
1251PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001252PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001253PyUnicode_TranslateCharmap:int:size::
1254PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001255PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001256
1257PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001258PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001259PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001260PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001261
1262PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001263PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001264PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001265PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001266
1267PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001268PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001269
1270PyUnicode_Concat:PyObject*::+1:
1271PyUnicode_Concat:PyObject*:left:0:
1272PyUnicode_Concat:PyObject*:right:0:
1273
1274PyUnicode_Split:PyObject*::+1:
1275PyUnicode_Split:PyObject*:left:0:
1276PyUnicode_Split:PyObject*:right:0:
1277PyUnicode_Split:int:maxsplit::
1278
1279PyUnicode_Splitlines:PyObject*::+1:
1280PyUnicode_Splitlines:PyObject*:s:0:
1281PyUnicode_Splitlines:int:maxsplit::
1282
1283PyUnicode_Translate:PyObject*::+1:
1284PyUnicode_Translate:PyObject*:str:0:
1285PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001286PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001287
1288PyUnicode_Join:PyObject*::+1:
1289PyUnicode_Join:PyObject*:separator:0:
1290PyUnicode_Join:PyObject*:seq:0:
1291
1292PyUnicode_Tailmatch:PyObject*::+1:
1293PyUnicode_Tailmatch:PyObject*:str:0:
1294PyUnicode_Tailmatch:PyObject*:substr:0:
1295PyUnicode_Tailmatch:int:start::
1296PyUnicode_Tailmatch:int:end::
1297PyUnicode_Tailmatch:int:direction::
1298
1299PyUnicode_Find:PyObject*::+1:
1300PyUnicode_Find:PyObject*:str:0:
1301PyUnicode_Find:PyObject*:substr:0:
1302PyUnicode_Find:int:start::
1303PyUnicode_Find:int:end::
1304PyUnicode_Find:int:direction::
1305
1306PyUnicode_Count:PyObject*::+1:
1307PyUnicode_Count:PyObject*:str:0:
1308PyUnicode_Count:PyObject*:substr:0:
1309PyUnicode_Count:int:start::
1310PyUnicode_Count:int:end::
1311
1312PyUnicode_Replace:PyObject*::+1:
1313PyUnicode_Replace:PyObject*:str:0:
1314PyUnicode_Replace:PyObject*:substr:0:
1315PyUnicode_Replace:PyObject*:replstr:0:
1316PyUnicode_Replace:int:maxcount::
1317
1318PyUnicode_Compare:int:::
1319PyUnicode_Compare:PyObject*:left:0:
1320PyUnicode_Compare:PyObject*:right:0:
1321
1322PyUnicode_Format:PyObject*::+1:
1323PyUnicode_Format:PyObject*:format:0:
1324PyUnicode_Format:PyObject*:args:0:
1325
1326PyUnicode_Contains:int:::
1327PyUnicode_Contains:PyObject*:container:0:
1328PyUnicode_Contains:PyObject*:element:0:
1329
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001330Py_AtExit:int:::
1331Py_AtExit:void (*)():func::
1332
Fred Drake6d988552001-07-20 20:55:31 +00001333Py_BuildValue:PyObject*::+1:
1334Py_BuildValue:char*:format::
1335
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001336Py_CompileString:PyObject*::+1:
1337Py_CompileString:char*:str::
1338Py_CompileString:char*:filename::
1339Py_CompileString:int:start::
1340
1341Py_DECREF:void:::
1342Py_DECREF:PyObject*:o:-1:
1343
1344Py_EndInterpreter:void:::
1345Py_EndInterpreter:PyThreadState*:tstate::
1346
1347Py_Exit:void:::
1348Py_Exit:int:status::
1349
1350Py_FatalError:void:::
1351Py_FatalError:char*:message::
1352
1353Py_FdIsInteractive:int:::
1354Py_FdIsInteractive:FILE*:fp::
1355Py_FdIsInteractive:char*:filename::
1356
1357Py_Finalize:void:::
1358
Fred Drake8520cc22000-04-10 19:38:24 +00001359Py_FindMethod:PyObject*::+1:
1360Py_FindMethod:PyMethodDef[]:methods::
1361Py_FindMethod:PyObject*:self:+1:
1362Py_FindMethod:char*:name::
1363
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001364Py_GetBuildInfoconst:char*:::
1365
1366Py_GetCompilerconst:char*:::
1367
1368Py_GetCopyrightconst:char*:::
1369
1370Py_GetExecPrefix:char*:::
1371
1372Py_GetPath:char*:::
1373
1374Py_GetPlatformconst:char*:::
1375
1376Py_GetPrefix:char*:::
1377
1378Py_GetProgramFullPath:char*:::
1379
1380Py_GetProgramName:char*:::
1381
1382Py_GetVersionconst:char*:::
1383
1384Py_INCREF:void:::
1385Py_INCREF:PyObject*:o:+1:
1386
1387Py_Initialize:void:::
1388
1389Py_IsInitialized:int:::
1390
1391Py_NewInterpreter:PyThreadState*:::
1392
1393Py_SetProgramName:void:::
1394Py_SetProgramName:char*:name::
1395
1396Py_XDECREF:void:::
1397Py_XDECREF:PyObject*:o:-1:if o is not NULL
1398
1399Py_XINCREF:void:::
1400Py_XINCREF:PyObject*:o:+1:if o is not NULL
1401
1402_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1403_PyImport_FindExtension:char*:::
1404_PyImport_FindExtension:char*:::
1405
1406_PyImport_Fini:void:::
1407
1408_PyImport_FixupExtension:PyObject*:::???
1409_PyImport_FixupExtension:char*:::
1410_PyImport_FixupExtension:char*:::
1411
1412_PyImport_Init:void:::
1413
Fred Drakef913e542000-09-12 20:17:17 +00001414_PyObject_Del:void:::
1415_PyObject_Del:PyObject*:op:0:
1416
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001417_PyObject_New:PyObject*::+1:
1418_PyObject_New:PyTypeObject*:type:0:
1419
Fred Drake8e0c09d2001-07-06 23:31:49 +00001420_PyObject_NewVar:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001421_PyObject_NewVar:PyTypeObject*:type:0:
1422_PyObject_NewVar:int:size::
1423
1424_PyString_Resize:int:::
1425_PyString_Resize:PyObject**:string:+1:
1426_PyString_Resize:int:newsize::
1427
1428_PyTuple_Resize:int:::
1429_PyTuple_Resize:PyTupleObject**:p:+1:
1430_PyTuple_Resize:int:new::
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001431
1432_Py_c_diff:Py_complex:::
1433_Py_c_diff:Py_complex:left::
1434_Py_c_diff:Py_complex:right::
1435
1436_Py_c_neg:Py_complex:::
1437_Py_c_neg:Py_complex:complex::
1438
1439_Py_c_pow:Py_complex:::
1440_Py_c_pow:Py_complex:num::
1441_Py_c_pow:Py_complex:exp::
1442
1443_Py_c_prod:Py_complex:::
1444_Py_c_prod:Py_complex:left::
1445_Py_c_prod:Py_complex:right::
1446
1447_Py_c_quot:Py_complex:::
1448_Py_c_quot:Py_complex:dividend::
1449_Py_c_quot:Py_complex:divisor::
1450
1451_Py_c_sum:Py_complex:::
1452_Py_c_sum:Py_complex:left::
1453_Py_c_sum:Py_complex:right::