blob: 8021151de79d0b70a491e84293132396550bf7e3 [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
24# The parameter names are as they appear in the API manual, not the source
25# code.
26
Fred Drakeeb725cd2000-04-03 15:06:40 +000027PyBuffer_FromObject:PyObject*::+1:
28PyBuffer_FromObject:PyObject*:base:+1:
29PyBuffer_FromObject:int:offset::
30PyBuffer_FromObject:int:size::
31
32PyBuffer_FromReadWriteObject:PyObject*::+1:
33PyBuffer_FromReadWriteObject:PyObject*:base:+1:
34PyBuffer_FromReadWriteObject:int:offset::
35PyBuffer_FromReadWriteObject:int:size::
36
37PyBuffer_FromMemory:PyObject*::+1:
38PyBuffer_FromMemory:void*:ptr::
39PyBuffer_FromMemory:int:size::
40
41PyBuffer_FromReadWriteMemory:PyObject*::+1:
42PyBuffer_FromReadWriteMemory:void*:ptr::
43PyBuffer_FromReadWriteMemory:int:size::
44
45PyBuffer_New:PyObject*::+1:
46PyBuffer_New:int:size::
47
Fred Drake7b7dc6b1999-10-20 15:06:24 +000048PyCObject_AsVoidPtr:void*:::
49PyCObject_AsVoidPtr:PyObject*:self:0:
50
51PyCObject_FromVoidPtr:PyObject*::+1:
52PyCObject_FromVoidPtr:void*:cobj::
53PyCObject_FromVoidPtr::void (* destr)(void* )::
54
55PyCObject_FromVoidPtrAndDesc:PyObject*::+1:
56PyCObject_FromVoidPtrAndDesc:void*:cobj::
57PyCObject_FromVoidPtrAndDesc:void*:desc::
58PyCObject_FromVoidPtrAndDesc:void(*)(void*,void*):destr::
59
60PyCObject_GetDesc:void*:::
61PyCObject_GetDesc:PyObject*:self:0:
62
63PyCallable_Check:int:::
64PyCallable_Check:PyObject*:o:0:
65
66PyComplex_AsCComplex:Py_complex:::
67PyComplex_AsCComplex:PyObject*:op:0:
68
69PyComplex_Check:int:::
70PyComplex_Check:PyObject*:p:0:
71
72PyComplex_FromCComplex:PyObject*::+1:
73PyComplex_FromCComplex::Py_complex v::
74
75PyComplex_FromDoubles:PyObject*::+1:
76PyComplex_FromDoubles::double real::
77PyComplex_FromDoubles::double imag::
78
79PyComplex_ImagAsDouble:double:::
80PyComplex_ImagAsDouble:PyObject*:op:0:
81
82PyComplex_RealAsDouble:double:::
83PyComplex_RealAsDouble:PyObject*:op:0:
84
85PyDict_Check:int:::
86PyDict_Check:PyObject*:p:0:
87
88PyDict_Clear:void:::
89PyDict_Clear:PyDictObject*:p:0:
90
91PyDict_DelItem:int:::
92PyDict_DelItem:PyDictObject*:p:0:
93PyDict_DelItem:PyObject*:key:0:
94
95PyDict_DelItemString:int:::
96PyDict_DelItemString:PyDictObject*:p:0:
97PyDict_DelItemString:char*:key::
98
Fred Drake805bf1b1999-10-20 16:03:38 +000099PyDict_GetItem:PyObject*::0:0
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000100PyDict_GetItem:PyDictObject*:p:0:
101PyDict_GetItem:PyObject*:key:0:
102
Fred Drake805bf1b1999-10-20 16:03:38 +0000103PyDict_GetItemString:PyObject*::0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000104PyDict_GetItemString:PyDictObject*:p:0:
105PyDict_GetItemString:char*:key::
106
107PyDict_Items:PyObject*::+1:
108PyDict_Items:PyDictObject*:p:0:
109
110PyDict_Keys:PyObject*::+1:
111PyDict_Keys:PyDictObject*:p:0:
112
113PyDict_New:PyObject*::+1:
114
Jeremy Hyltona12c7a72000-03-30 22:27:31 +0000115PyDict_Copy:PyObject*::+1:
116PyDict_Copy:PyObject*:p:0:
117
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000118PyDict_Next:int:::
119PyDict_Next:PyDictObject*:p:0:
120PyDict_Next:int:ppos::
121PyDict_Next:PyObject**:pkey:0:
122PyDict_Next:PyObject**:pvalue:0:
123
124PyDict_SetItem:int:::
125PyDict_SetItem:PyDictObject*:p:0:
126PyDict_SetItem:PyObject*:key:+1:
127PyDict_SetItem:PyObject*:val:+1:
128
129PyDict_SetItemString:int:::
130PyDict_SetItemString:PyDictObject*:p:0:
131PyDict_SetItemString:char*:key::
132PyDict_SetItemString:PyObject*:val:+1:
133
134PyDict_Size:int:::
135PyDict_Size:PyDictObject*:p::
136
137PyDict_Values:PyObject*::+1:
138PyDict_Values:PyDictObject*:p:0:
139
140PyErr_BadArgument:int:::
141
142PyErr_BadInternalCall:void:::
143
144PyErr_CheckSignals:int:::
145
146PyErr_Clear:void:::
147
148PyErr_ExceptionMatches:int:::
149PyErr_ExceptionMatches:PyObject*:exc:0:
150
151PyErr_Fetch:void:::
152PyErr_Fetch:PyObject**:ptype:0:
153PyErr_Fetch:PyObject**:pvalue:0:
154PyErr_Fetch:PyObject**:ptraceback:0:
155
156PyErr_GivenExceptionMatches:int:::
157PyErr_GivenExceptionMatches:PyObject*:given:0:
158PyErr_GivenExceptionMatches:PyObject*:exc:0:
159
160PyErr_NewException:PyObject*::+1:
161PyErr_NewException:char*:name::
162PyErr_NewException:PyObject*:base:0:
163PyErr_NewException:PyObject*:dict:0:
164
Fred Drakedb2764d2000-04-10 18:25:09 +0000165PyErr_NoMemory:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000166
167PyErr_NormalizeException:void:::
168PyErr_NormalizeException:PyObject**:exc::???
169PyErr_NormalizeException:PyObject**:val::???
170PyErr_NormalizeException:PyObject**:tb::???
171
172PyErr_Occurred:PyObject*::0:
173
174PyErr_Print:void:::
175
176PyErr_Restore:void:::
Fred Drake34c391d2000-08-15 04:36:16 +0000177PyErr_Restore:PyObject*:type:-1:
178PyErr_Restore:PyObject*:value:-1:
179PyErr_Restore:PyObject*:traceback:-1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000180
Fred Drakedb2764d2000-04-10 18:25:09 +0000181PyErr_SetFromErrno:PyObject*::null:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000182PyErr_SetFromErrno:PyObject*:type:0:
183
184PyErr_SetInterrupt:void:::
185
186PyErr_SetNone:void:::
187PyErr_SetNone:PyObject*:type:+1:
188
189PyErr_SetObject:void:::
190PyErr_SetObject:PyObject*:type:+1:
191PyErr_SetObject:PyObject*:value:+1:
192
193PyErr_SetString:void:::
194PyErr_SetString:PyObject*:type:+1:
195PyErr_SetString:char*:message::
196
Jeremy Hylton98605b52000-04-10 18:40:57 +0000197PyErr_Format:PyObject*::null:
198PyErr_Format:PyObject*:exception:+1:
199PyErr_Format:char*:format::
200PyErr_Format::...::
201
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000202PyEval_AcquireLock:void:::
203
204PyEval_AcquireThread:void:::
205PyEval_AcquireThread:PyThreadState*:tstate::
206
207PyEval_InitThreads:void:::
208
209PyEval_ReleaseLock:void:::
210
211PyEval_ReleaseThread:void:::
212PyEval_ReleaseThread:PyThreadState*:tstate::
213
214PyEval_RestoreThread:void:::
215PyEval_RestoreThread:PyThreadState*:tstate::
216
217PyEval_SaveThread:PyThreadState*:::
218
Fred Drake4ca744c2000-08-12 03:39:47 +0000219PyEval_EvalCode:PyObject*::+1:
220PyEval_EvalCode:PyCodeObject*:co:0:
221PyEval_EvalCode:PyObject*:globals:0:
222PyEval_EvalCode:PyObject*:locals:0:
223
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000224PyFile_AsFile:FILE*:::
225PyFile_AsFile:PyFileObject*:p:0:
226
227PyFile_Check:int:::
228PyFile_Check:PyObject*:p:0:
229
230PyFile_FromFile:PyObject*::+1:
231PyFile_FromFile:FILE*:fp::
232PyFile_FromFile:char*:name::
233PyFile_FromFile:char*:mode::
234PyFile_FromFile:int(*:close)::
235
236PyFile_FromString:PyObject*::+1:
237PyFile_FromString:char*:name::
238PyFile_FromString:char*:mode::
239
240PyFile_GetLine:PyObject*::+1:
241PyFile_GetLine:PyObject*:p::
242PyFile_GetLine:int:n::
243
244PyFile_Name:PyObject*::0:
245PyFile_Name:PyObject*:p:0:
246
247PyFile_SetBufSize:void:::
248PyFile_SetBufSize:PyFileObject*:p:0:
249PyFile_SetBufSize:int:n::
250
251PyFile_SoftSpace:int:::
252PyFile_SoftSpace:PyFileObject*:p:0:
253PyFile_SoftSpace:int:newflag::
254
255PyFile_WriteObject:int:::
256PyFile_WriteObject:PyObject*:obj:0:
257PyFile_WriteObject:PyFileObject*:p:0:
258PyFile_WriteObject:int:flags::
259
260PyFile_WriteString:int:::
261PyFile_WriteString:char*:s::
262PyFile_WriteString:PyFileObject*:p:0:
263PyFile_WriteString:int:flags::
264
265PyFloat_AS_DOUBLE:double:::
266PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
267
268PyFloat_AsDouble:double:::
269PyFloat_AsDouble:PyObject*:pyfloat:0:
270
271PyFloat_Check:int:::
272PyFloat_Check:PyObject*:p:0:
273
274PyFloat_FromDouble:PyObject*::+1:
275PyFloat_FromDouble:double:v::
276
Fred Drake805bf1b1999-10-20 16:03:38 +0000277PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000278PyImport_AddModule:char*:name::
279
280PyImport_Cleanup:void:::
281
282PyImport_ExecCodeModule:PyObject*::+1:
283PyImport_ExecCodeModule:char*:name::
284PyImport_ExecCodeModule:PyObject*:co:0:
285
286PyImport_GetMagicNumber:long:::
287
288PyImport_GetModuleDict:PyObject*::0:
289
290PyImport_Import:PyObject*::+1:
291PyImport_Import:PyObject*:name:0:
292
293PyImport_ImportFrozenModule:int:::
294PyImport_ImportFrozenModule:char*:::
295
Fred Drakeeb725cd2000-04-03 15:06:40 +0000296PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000297PyImport_ImportModule:char*:name::
298
Fred Drakeeb725cd2000-04-03 15:06:40 +0000299PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000300PyImport_ImportModuleEx:char*:name::
301PyImport_ImportModuleEx:PyObject*:globals:0:???
302PyImport_ImportModuleEx:PyObject*:locals:0:???
303PyImport_ImportModuleEx:PyObject*:fromlist:0:???
304
Fred Drakeeb725cd2000-04-03 15:06:40 +0000305PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000306PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000307
308PyInt_AS_LONG:long:::
309PyInt_AS_LONG:PyIntObject*:io:0:
310
311PyInt_AsLong:long:::
312PyInt_AsLong:PyObject*:io:0:
313
314PyInt_Check:int:::
315PyInt_Check:PyObject*::0:
316
317PyInt_FromLong:PyObject*::+1:
318PyInt_FromLong:long:ival::
319
320PyInt_GetMax:long:::
321
322PyInterpreterState_Clear:void:::
323PyInterpreterState_Clear:PyInterpreterState*:interp::
324
325PyInterpreterState_Delete:void:::
326PyInterpreterState_Delete:PyInterpreterState*:interp::
327
328PyInterpreterState_New:PyInterpreterState*:::
329
330PyList_Append:int:::
331PyList_Append:PyObject*:list:0:
332PyList_Append:PyObject*:item:+1:
333
334PyList_AsTuple:PyObject*::+1:
335PyList_AsTuple:PyObject*:list:0:
336
337PyList_Check:int:::
338PyList_Check:PyObject*:p:0:
339
340PyList_GET_ITEM:PyObject*::0:
341PyList_GET_ITEM:PyObject*:list:0:
342PyList_GET_ITEM:int:i:0:
343
344PyList_GET_SIZE:int:::
345PyList_GET_SIZE:PyObject*:list:0:
346
347PyList_GetItem:PyObject*::0:
348PyList_GetItem:PyObject*:list:0:
349PyList_GetItem:int:index::
350
351PyList_GetSlice:PyObject*::+1:
352PyList_GetSlice:PyObject*:list:0:
353PyList_GetSlice:int:low::
354PyList_GetSlice:int:high::
355
356PyList_Insert:int:::
357PyList_Insert:PyObject*:list:0:
358PyList_Insert:int:index::
359PyList_Insert:PyObject*:item:+1:
360
361PyList_New:PyObject*::+1:
362PyList_New:int:len::
363
364PyList_Reverse:int:::
365PyList_Reverse:PyObject*:list:0:
366
367PyList_SET_ITEM:PyObject*::0:
368PyList_SET_ITEM:PyObject*:list:0:
369PyList_SET_ITEM:int:i::
370PyList_SET_ITEM:PyObject*:o:0:
371
372PyList_SetItem:int:::
373PyList_SetItem:PyObject*:list:0:
374PyList_SetItem:int:index::
375PyList_SetItem:PyObject*:item:0:
376
377PyList_SetSlice:int:::
378PyList_SetSlice:PyObject*:list:0:
379PyList_SetSlice:int:low::
380PyList_SetSlice:int:high::
381PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
382
383PyList_Size:int:::
384PyList_Size:PyObject*:list:0:
385
386PyList_Sort:int:::
387PyList_Sort:PyObject*:list:0:
388
389PyLong_AsDouble:double:::
390PyLong_AsDouble:PyObject*:pylong:0:
391
392PyLong_AsLong:long:::
393PyLong_AsLong:PyObject*:pylong:0:
394
395PyLong_AsUnsignedLong:unsigned long:::
396PyLong_AsUnsignedLong:PyObject*:pylong:0:
397
398PyLong_Check:int:::
399PyLong_Check:PyObject*:p:0:
400
401PyLong_FromDouble:PyObject*::+1:
402PyLong_FromDouble:double:v::
403
404PyLong_FromLong:PyObject*::+1:
405PyLong_FromLong:long:v::
406
407PyLong_FromString:PyObject*::+1:
408PyLong_FromString:char*:str::
409PyLong_FromString:char**:pend::
410PyLong_FromString:int:base::
411
412PyLong_FromUnsignedLong:PyObject*::+1:
413PyLong_FromUnsignedLong:unsignedlong:v::
414
415PyMapping_Check:int:::
416PyMapping_Check:PyObject*:o:0:
417
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000418PyMapping_DelItem:int:::
419PyMapping_DelItem:PyObject*:o:0:
420PyMapping_DelItem:PyObject*:key:0:
421
422PyMapping_DelItemString:int:::
423PyMapping_DelItemString:PyObject*:o:0:
424PyMapping_DelItemString:char*:key::
425
426PyMapping_GetItemString:PyObject*::+1:
427PyMapping_GetItemString:PyObject*:o:0:
428PyMapping_GetItemString:char*:key::
429
430PyMapping_HasKey:int:::
431PyMapping_HasKey:PyObject*:o:0:
432PyMapping_HasKey:PyObject*:key::
433
434PyMapping_HasKeyString:int:::
435PyMapping_HasKeyString:PyObject*:o:0:
436PyMapping_HasKeyString:char*:key::
437
438PyMapping_Items:PyObject*::+1:
439PyMapping_Items:PyObject*:o:0:
440
441PyMapping_Keys:PyObject*::+1:
442PyMapping_Keys:PyObject*:o:0:
443
444PyMapping_Length:int:::
445PyMapping_Length:PyObject*:o:0:
446
447PyMapping_SetItemString:int:::
448PyMapping_SetItemString:PyObject*:o:0:
449PyMapping_SetItemString:char*:key::
450PyMapping_SetItemString:PyObject*:v:+1:
451
452PyMapping_Values:PyObject*::+1:
453PyMapping_Values:PyObject*:o:0:
454
455PyModule_GetDict:PyObject*::0:
456PyModule_GetDict::PyObject* module:0:
457
458PyModule_GetFilename:char*:::
459PyModule_GetFilename:PyObject*:module:0:
460
461PyModule_GetName:char*:::
462PyModule_GetName:PyObject*:module:0:
463
464PyModule_New:PyObject*::+1:
465PyModule_New::char* name::
466
467PyNumber_Absolute:PyObject*::+1:
468PyNumber_Absolute:PyObject*:o:0:
469
470PyNumber_Add:PyObject*::+1:
471PyNumber_Add:PyObject*:o1:0:
472PyNumber_Add:PyObject*:o2:0:
473
474PyNumber_And:PyObject*::+1:
475PyNumber_And:PyObject*:o1:0:
476PyNumber_And:PyObject*:o2:0:
477
478PyNumber_Check:PyObject*:o:0:
479PyNumber_Check:int:::
480
481PyNumber_Coerce:int:::
482PyNumber_Coerce:PyObject**:p1:+1:
483PyNumber_Coerce:PyObject**:p2:+1:
484
485PyNumber_Divide:PyObject*::+1:
486PyNumber_Divide:PyObject*:o1:0:
487PyNumber_Divide:PyObject*:o2:0:
488
489PyNumber_Divmod:PyObject*::+1:
490PyNumber_Divmod:PyObject*:o1:0:
491PyNumber_Divmod:PyObject*:o2:0:
492
493PyNumber_Float:PyObject*::+1:
494PyNumber_Float:PyObject*:o:0:
495
Fred Drake1fa93652000-09-22 18:19:37 +0000496PyNumber_InPlaceAdd:PyObject*::+1:
497PyNumber_InPlaceAdd:PyObject*:v:0:
498PyNumber_InPlaceAdd:PyObject*:w:0:
499
500PyNumber_InPlaceAnd:PyObject*::+1:
501PyNumber_InPlaceAnd:PyObject*:v:0:
502PyNumber_InPlaceAnd:PyObject*:w:0:
503
504PyNumber_InPlaceDivide:PyObject*::+1:
505PyNumber_InPlaceDivide:PyObject*:v:0:
506PyNumber_InPlaceDivide:PyObject*:w:0:
507
508PyNumber_InPlaceLshift:PyObject*::+1:
509PyNumber_InPlaceLshift:PyObject*:v:0:
510PyNumber_InPlaceLshift:PyObject*:w:0:
511
512PyNumber_InPlaceMultiply:PyObject*::+1:
513PyNumber_InPlaceMultiply:PyObject*:v:0:
514PyNumber_InPlaceMultiply:PyObject*:w:0:
515
516PyNumber_InPlaceOr:PyObject*::+1:
517PyNumber_InPlaceOr:PyObject*:v:0:
518PyNumber_InPlaceOr:PyObject*:w:0:
519
520PyNumber_InPlacePower:PyObject*::+1:
521PyNumber_InPlacePower:PyObject*:v:0:
522PyNumber_InPlacePower:PyObject*:w:0:
523PyNumber_InPlacePower:PyObject*:z:0:
524
525PyNumber_InPlaceRemainder:PyObject*::+1:
526PyNumber_InPlaceRemainder:PyObject*:v:0:
527PyNumber_InPlaceRemainder:PyObject*:w:0:
528
529PyNumber_InPlaceRshift:PyObject*::+1:
530PyNumber_InPlaceRshift:PyObject*:v:0:
531PyNumber_InPlaceRshift:PyObject*:w:0:
532
533PyNumber_InPlaceSubtract:PyObject*::+1:
534PyNumber_InPlaceSubtract:PyObject*:v:0:
535PyNumber_InPlaceSubtract:PyObject*:w:0:
536
537PyNumber_InPlaceXor:PyObject*::+1:
538PyNumber_InPlaceXor:PyObject*:v:0:
539PyNumber_InPlaceXor:PyObject*:w:0:
540
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000541PyNumber_Int:PyObject*::+1:
542PyNumber_Int:PyObject*:o:0:
543
544PyNumber_Invert:PyObject*::+1:
545PyNumber_Invert:PyObject*:o:0:
546
547PyNumber_Long:PyObject*::+1:
548PyNumber_Long:PyObject*:o:0:
549
550PyNumber_Lshift:PyObject*::+1:
551PyNumber_Lshift:PyObject*:o1:0:
552PyNumber_Lshift:PyObject*:o2:0:
553
554PyNumber_Multiply:PyObject*::+1:
555PyNumber_Multiply:PyObject*:o1:0:
556PyNumber_Multiply:PyObject*:o2:0:
557
558PyNumber_Negative:PyObject*::+1:
559PyNumber_Negative:PyObject*:o:0:
560
561PyNumber_Or:PyObject*::+1:
562PyNumber_Or:PyObject*:o1:0:
563PyNumber_Or:PyObject*:o2:0:
564
565PyNumber_Positive:PyObject*::+1:
566PyNumber_Positive:PyObject*:o:0:
567
568PyNumber_Power:PyObject*::+1:
569PyNumber_Power:PyObject*:o1:0:
570PyNumber_Power:PyObject*:o2:0:
571PyNumber_Power:PyObject*:o3:0:
572
573PyNumber_Remainder:PyObject*::+1:
574PyNumber_Remainder:PyObject*:o1:0:
575PyNumber_Remainder:PyObject*:o2:0:
576
577PyNumber_Rshift:PyObject*::+1:
578PyNumber_Rshift:PyObject*:o1:0:
579PyNumber_Rshift:PyObject*:o2:0:
580
581PyNumber_Subtract:PyObject*::+1:
582PyNumber_Subtract:PyObject*:o1:0:
583PyNumber_Subtract:PyObject*:o2:0:
584
585PyNumber_Xor:PyObject*::+1:
586PyNumber_Xor:PyObject*:o1:0:
587PyNumber_Xor:PyObject*:o2:0:
588
589PyOS_GetLastModificationTime:long:::
590PyOS_GetLastModificationTime:char*:filename::
591
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000592PyObject_AsFileDescriptor:int:::
593PyObject_AsFileDescriptor:PyObject*:o:0:
594
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000595PyObject_CallFunction:PyObject*::+1:
596PyObject_CallFunction:PyObject*:callable_object:0:
597PyObject_CallFunction:char*:format::
598PyObject_CallFunction::...::
599
600PyObject_CallMethod:PyObject*::+1:
601PyObject_CallMethod:PyObject*:o:0:
602PyObject_CallMethod:char*:m::
603PyObject_CallMethod:char*:format::
604PyObject_CallMethod::...::
605
606PyObject_CallObject:PyObject*::+1:
607PyObject_CallObject:PyObject*:callable_object:0:
608PyObject_CallObject:PyObject*:args:0:
609
610PyObject_Cmp:int:::
611PyObject_Cmp:PyObject*:o1:0:
612PyObject_Cmp:PyObject*:o2:0:
613PyObject_Cmp:int*:result::
614
615PyObject_Compare:int:::
616PyObject_Compare:PyObject*:o1:0:
617PyObject_Compare:PyObject*:o2:0:
618
619PyObject_DelAttr:int:::
620PyObject_DelAttr:PyObject*:o:0:
621PyObject_DelAttr:PyObject*:attr_name:0:
622
623PyObject_DelAttrString:int:::
624PyObject_DelAttrString:PyObject*:o:0:
625PyObject_DelAttrString:char*:attr_name::
626
627PyObject_DelItem:int:::
628PyObject_DelItem:PyObject*:o:0:
629PyObject_DelItem:PyObject*:key:0:
630
631PyObject_GetAttr:PyObject*::+1:
632PyObject_GetAttr:PyObject*:o:0:
633PyObject_GetAttr:PyObject*:attr_name:0:
634
635PyObject_GetAttrString:PyObject*::+1:
636PyObject_GetAttrString:PyObject*:o:0:
637PyObject_GetAttrString:char*:attr_name::
638
639PyObject_GetItem:PyObject*::+1:
640PyObject_GetItem:PyObject*:o:0:
641PyObject_GetItem:PyObject*:key:0:
642
643PyObject_HasAttr:int:::
644PyObject_HasAttr:PyObject*:o:0:
645PyObject_HasAttr:PyObject*:attr_name:0:
646
647PyObject_HasAttrString:int:::
648PyObject_HasAttrString:PyObject*:o:0:
649PyObject_HasAttrString:char*:attr_name:0:
650
651PyObject_Hash:int:::
652PyObject_Hash:PyObject*:o:0:
653
654PyObject_IsTrue:int:::
655PyObject_IsTrue:PyObject*:o:0:
656
Fred Drakef913e542000-09-12 20:17:17 +0000657PyObject_Init:PyObject*::0:
658PyObject_Init:PyObject*:op:0:
659
660PyObject_InitVar:PyVarObject*::0:
661PyObject_InitVar:PyVarObject*:op:0:
662
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000663PyObject_Length:int:::
664PyObject_Length:PyObject*:o:0:
665
666PyObject_Print:int:::
667PyObject_Print:PyObject*:o:0:
668PyObject_Print:FILE*:fp::
669PyObject_Print:int:flags::
670
671PyObject_Repr:PyObject*::+1:
672PyObject_Repr:PyObject*:o:0:
673
674PyObject_SetAttr:int:::
675PyObject_SetAttr:PyObject*:o:0:
676PyObject_SetAttr:PyObject*:attr_name:0:
677PyObject_SetAttr:PyObject*:v:+1:
678
679PyObject_SetAttrString:int:::
680PyObject_SetAttrString:PyObject*:o:0:
681PyObject_SetAttrString:char*:attr_name::
682PyObject_SetAttrString:PyObject*:v:+1:
683
684PyObject_SetItem:int:::
685PyObject_SetItem:PyObject*:o:0:
686PyObject_SetItem:PyObject*:key:0:
687PyObject_SetItem:PyObject*:v:+1:
688
689PyObject_Str:PyObject*::+1:
690PyObject_Str:PyObject*:o:0:
691
692PyObject_Type:PyObject*::+1:
693PyObject_Type:PyObject*:o:0:
694
Fred Drake805bf1b1999-10-20 16:03:38 +0000695PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000696PyParser_SimpleParseFile:FILE*:fp::
697PyParser_SimpleParseFile:char*:filename::
698PyParser_SimpleParseFile:int:start::
699
Fred Drake805bf1b1999-10-20 16:03:38 +0000700PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000701PyParser_SimpleParseString:char*:str::
702PyParser_SimpleParseString:int:start::
703
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000704PyRun_AnyFile:int:::
705PyRun_AnyFile:FILE*:fp::
706PyRun_AnyFile:char*:filename::
707
Fred Drake4ca744c2000-08-12 03:39:47 +0000708PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000709PyRun_File:FILE*:fp::
710PyRun_File:char*:filename::
711PyRun_File:int:start::
712PyRun_File:PyObject*:globals:0:
713PyRun_File:PyObject*:locals:0:
714
715PyRun_InteractiveLoop:int:::
716PyRun_InteractiveLoop:FILE*:fp::
717PyRun_InteractiveLoop:char*:filename::
718
719PyRun_InteractiveOne:int:::
720PyRun_InteractiveOne:FILE*:fp::
721PyRun_InteractiveOne:char*:filename::
722
723PyRun_SimpleFile:int:::
724PyRun_SimpleFile:FILE*:fp::
725PyRun_SimpleFile:char*:filename::
726
727PyRun_SimpleString:int:::
728PyRun_SimpleString:char*:command::
729
Fred Drake4ca744c2000-08-12 03:39:47 +0000730PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000731PyRun_String:char*:str::
732PyRun_String:int:start::
733PyRun_String:PyObject*:globals:0:
734PyRun_String:PyObject*:locals:0:
735
736PySequence_Check:int:::
737PySequence_Check:PyObject*:o:0:
738
739PySequence_Concat:PyObject*::+1:
740PySequence_Concat:PyObject*:o1:0:
741PySequence_Concat:PyObject*:o2:0:
742
743PySequence_Count:int:::
744PySequence_Count:PyObject*:o:0:
745PySequence_Count:PyObject*:value:0:
746
747PySequence_DelItem:int:::
748PySequence_DelItem:PyObject*:o:0:
749PySequence_DelItem:int:i::
750
751PySequence_DelSlice:int:::
752PySequence_DelSlice:PyObject*:o:0:
753PySequence_DelSlice:int:i1::
754PySequence_DelSlice:int:i2::
755
Fred Drake81cccb72000-09-12 15:22:05 +0000756PySequence_Fast:PyObject*::+1:
757PySequence_Fast:PyObject*:v:0:
758PySequence_Fast:const char*:m::
759
760PySequence_Fast_GET_ITEM:PyObject*::0:
761PySequence_Fast_GET_ITEM:PyObject*:o:0:
762PySequence_Fast_GET_ITEM:int:i::
763
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000764PySequence_GetItem:PyObject*::+1:
765PySequence_GetItem:PyObject*:o:0:
766PySequence_GetItem:int:i::
767
768PySequence_GetSlice:PyObject*::+1:
769PySequence_GetSlice:PyObject*:o:0:
770PySequence_GetSlice:int:i1::
771PySequence_GetSlice:int:i2::
772
773PySequence_In:int:::
774PySequence_In:PyObject*:o:0:
775PySequence_In:PyObject*:value:0:
776
777PySequence_Index:int:::
778PySequence_Index:PyObject*:o:0:
779PySequence_Index:PyObject*:value:0:
780
Fred Drake1fa93652000-09-22 18:19:37 +0000781PySequence_InPlaceConcat:PyObject*::+1:
782PySequence_InPlaceConcat:PyObject*:s:0:
783PySequence_InPlaceConcat:PyObject*:o:0:
784
785PySequence_InPlaceRepeat:PyObject*::+1:
786PySequence_InPlaceRepeat:PyObject*:s:0:
787PySequence_InPlaceRepeat:PyObject*:o:0:
788
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000789PySequence_Repeat:PyObject*::+1:
790PySequence_Repeat:PyObject*:o:0:
791PySequence_Repeat:int:count::
792
793PySequence_SetItem:int:::
794PySequence_SetItem:PyObject*:o:0:
795PySequence_SetItem:int:i::
796PySequence_SetItem:PyObject*:v:+1:
797
798PySequence_SetSlice:int:::
799PySequence_SetSlice:PyObject*:o:0:
800PySequence_SetSlice:int:i1::
801PySequence_SetSlice:int:i2::
802PySequence_SetSlice:PyObject*:v:+1:
803
Fred Drake1c2d06a2000-06-16 20:00:04 +0000804PySequence_List:PyObject*::+1:
805PySequence_List:PyObject*:o:0:
806
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000807PySequence_Tuple:PyObject*::+1:
808PySequence_Tuple:PyObject*:o:0:
809
810PyString_AS_STRING:char*:::
811PyString_AS_STRING:PyObject*:string:0:
812
813PyString_AsString:char*:::
814PyString_AsString:PyObject*:string:0:
815
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +0000816PyString_AsStringAndSize:int:::
817PyString_AsStringAndSize:PyObject*:obj:0:
818PyString_AsStringAndSize:char**:buffer::
819PyString_AsStringAndSize:int*:length::
820
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000821PyString_Check:int:::
822PyString_Check:PyObject*:o:0:
823
824PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000825PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000826PyString_Concat:PyObject*:newpart:0:
827
828PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000829PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000830PyString_ConcatAndDel:PyObject*:newpart:-1:
831
832PyString_Format:PyObject*::+1:
833PyString_Format:PyObject*:format:0:
834PyString_Format:PyObject*:args:0:
835
836PyString_FromString:PyObject*::+1:
837PyString_FromString:const char*:v::
838
839PyString_FromStringAndSize:PyObject*::+1:
840PyString_FromStringAndSize:const char*:v::
841PyString_FromStringAndSize:int:len::
842
843PyString_GET_SIZE:int:::
844PyString_GET_SIZE:PyObject*:string:0:
845
846PyString_InternFromString:PyObject*::+1:
847PyString_InternFromString:const char*:v::
848
849PyString_InternInPlace:void:::
850PyString_InternInPlace:PyObject**:string:+1:???
851
852PyString_Size:int:::
853PyString_Size:PyObject*:string:0:
854
Marc-André Lemburg47073202000-07-07 15:48:54 +0000855PyString_Decode:PyObject*::+1:
856PyString_Decode:const char*:s::
857PyString_Decode:int:size::
858PyString_Decode:const char*:encoding::
859PyString_Decode:const char*:errors::
860
861PyString_Encode:PyObject*::+1:
862PyString_Encode:const char*:s::
863PyString_Encode:int:size::
864PyString_Encode:const char*:encoding::
865PyString_Encode:const char*:errors::
866
867PyString_AsEncodedString:PyObject*::+1:
868PyString_AsEncodedString:PyObject*:str::
869PyString_AsEncodedString:const char*:encoding::
870PyString_AsEncodedString:const char*:errors::
871
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000872PySys_SetArgv:int:::
873PySys_SetArgv:int:argc::
874PySys_SetArgv:char**:argv::
875
876PyThreadState_Clear:void:::
877PyThreadState_Clear:PyThreadState*:tstate::
878
879PyThreadState_Delete:void:::
880PyThreadState_Delete:PyThreadState*:tstate::
881
882PyThreadState_Get:PyThreadState*:::
883
884PyThreadState_New:PyThreadState*:::
885PyThreadState_New:PyInterpreterState*:interp::
886
887PyThreadState_Swap:PyThreadState*:::
888PyThreadState_Swap:PyThreadState*:tstate::
889
890PyTuple_Check:int:::
891PyTuple_Check:PyObject*:p:0:
892
893PyTuple_GET_ITEM:PyObject*::0:
894PyTuple_GET_ITEM:PyTupleObject*:p:0:
895PyTuple_GET_ITEM:int:pos::
896
897PyTuple_GetItem:PyObject*::0:
898PyTuple_GetItem:PyTupleObject*:p:0:
899PyTuple_GetItem:int:pos::
900
901PyTuple_GetSlice:PyObject*::+1:
902PyTuple_GetSlice:PyTupleObject*:p:0:
903PyTuple_GetSlice:int:low::
904PyTuple_GetSlice:int:high::
905
906PyTuple_New:PyObject*::+1:
907PyTuple_New:int:len::
908
909PyTuple_SET_ITEM:void:::
910PyTuple_SET_ITEM:PyTupleObject*:p:0:
911PyTuple_SET_ITEM:int:pos::
912PyTuple_SET_ITEM:PyObject*:o:0:
913
914PyTuple_SetItem:int:::
915PyTuple_SetItem:PyTupleObject*:p:0:
916PyTuple_SetItem:int:pos::
917PyTuple_SetItem:PyObject*:o:0:
918
919PyTuple_Size:int:::
920PyTuple_Size:PyTupleObject*:p:0:
921
Fred Drake992fe5a2000-06-16 21:04:15 +0000922PyUnicode_Check:int:::
923PyUnicode_Check:PyObject*:o:0:
924
925PyUnicode_GET_SIZE:int:::
926PyUnicode_GET_SIZE:PyObject*:o:0:
927
928PyUnicode_GET_DATA_SIZE:int:::
929PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
930
931PyUnicode_AS_UNICODE:Py_UNICODE*:::
932PyUnicode_AS_UNICODE:PyObject*:o:0:
933
934PyUnicode_AS_DATA:const char*:::
935PyUnicode_AS_DATA:PyObject*:o:0:
936
937Py_UNICODE_ISSPACE:int:::
938Py_UNICODE_ISSPACE:Py_UNICODE:ch::
939
940Py_UNICODE_ISLOWER:int:::
941Py_UNICODE_ISLOWER:Py_UNICODE:ch::
942
943Py_UNICODE_ISUPPER:int:::
944Py_UNICODE_ISUPPER:Py_UNICODE:ch::
945
946Py_UNICODE_ISTITLE:int:::
947Py_UNICODE_ISTITLE:Py_UNICODE:ch::
948
949Py_UNICODE_ISLINEBREAK:int:::
950Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
951
952Py_UNICODE_ISDECIMAL:int:::
953Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
954
955Py_UNICODE_ISDIGIT:int:::
956Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
957
958Py_UNICODE_ISNUMERIC:int:::
959Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
960
961Py_UNICODE_TOLOWER:Py_UNICODE:::
962Py_UNICODE_TOLOWER:Py_UNICODE:ch::
963
964Py_UNICODE_TOUPPER:Py_UNICODE:::
965Py_UNICODE_TOUPPER:Py_UNICODE:ch::
966
967Py_UNICODE_TOTITLE:Py_UNICODE:::
968Py_UNICODE_TOTITLE:Py_UNICODE:ch::
969
970Py_UNICODE_TODECIMAL:int:::
971Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
972
973Py_UNICODE_TODIGIT:int:::
974Py_UNICODE_TODIGIT:Py_UNICODE:ch::
975
976Py_UNICODE_TONUMERIC:double:::
977Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
978
979PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000980PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +0000981PyUnicode_FromUnicode:int:size::
982
983PyUnicode_AsUnicode:Py_UNICODE*:::
984PyUnicode_AsUnicode:PyObject :*unicode:0:
985
986PyUnicode_GetSize:int:::
987PyUnicode_GetSize:PyObject :*unicode:0:
988
989PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000990PyUnicode_FromObject:PyObject*:*obj:0:
991
992PyUnicode_FromEncodedObject:PyObject*::+1:
993PyUnicode_FromEncodedObject:PyObject*:*obj:0:
994PyUnicode_FromEncodedObject:const char*:encoding::
995PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000996
997PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000998PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +0000999PyUnicode_FromWideChar:int:size::
1000
1001PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001002PyUnicode_AsWideChar:PyObject*:*unicode:0:
1003PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +00001004PyUnicode_AsWideChar:int:size::
1005
1006PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001007PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001008PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001009PyUnicode_Decode:const char*:encoding::
1010PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001011
1012PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001013PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001014PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001015PyUnicode_Encode:const char*:encoding::
1016PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001017
1018PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001019PyUnicode_AsEncodedString:PyObject*:unicode::
1020PyUnicode_AsEncodedString:const char*:encoding::
1021PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001022
1023PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001024PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001025PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001026PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001027
1028PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001029PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001030PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001031PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001032
1033PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001034PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001035
1036PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001037PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001038PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001039PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001040PyUnicode_DecodeUTF16:int*:byteorder::
1041
1042PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001043PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001044PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001045PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001046PyUnicode_EncodeUTF16:int:byteorder::
1047
1048PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001049PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001050
1051PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001052PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001053PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001054PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001055
1056PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001057PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001058PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001059PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001060
1061PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001062PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001063
1064PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001065PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001066PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001067PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001068
1069PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001070PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001071PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001072PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001073
1074PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001075PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001076
1077PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001078PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001079PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001080PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001081
1082PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001083PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001084PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001085PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001086
1087PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001088PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001089
1090PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001091PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001092PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001093PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001094
1095PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001096PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001097PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001098PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001099
1100PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001101PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001102
1103PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001104PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001105PyUnicode_DecodeCharmap:int:size::
1106PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001107PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001108
1109PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001110PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001111PyUnicode_EncodeCharmap:int:size::
1112PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001113PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001114
1115PyUnicode_AsCharmapString:PyObject*::+1:
1116PyUnicode_AsCharmapString:PyObject*:unicode:0:
1117PyUnicode_AsCharmapString:PyObject*:mapping:0:
1118
1119PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001120PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001121PyUnicode_TranslateCharmap:int:size::
1122PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001123PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001124
1125PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001126PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001127PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001128PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001129
1130PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001131PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001132PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001133PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001134
1135PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001136PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001137
1138PyUnicode_Concat:PyObject*::+1:
1139PyUnicode_Concat:PyObject*:left:0:
1140PyUnicode_Concat:PyObject*:right:0:
1141
1142PyUnicode_Split:PyObject*::+1:
1143PyUnicode_Split:PyObject*:left:0:
1144PyUnicode_Split:PyObject*:right:0:
1145PyUnicode_Split:int:maxsplit::
1146
1147PyUnicode_Splitlines:PyObject*::+1:
1148PyUnicode_Splitlines:PyObject*:s:0:
1149PyUnicode_Splitlines:int:maxsplit::
1150
1151PyUnicode_Translate:PyObject*::+1:
1152PyUnicode_Translate:PyObject*:str:0:
1153PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001154PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001155
1156PyUnicode_Join:PyObject*::+1:
1157PyUnicode_Join:PyObject*:separator:0:
1158PyUnicode_Join:PyObject*:seq:0:
1159
1160PyUnicode_Tailmatch:PyObject*::+1:
1161PyUnicode_Tailmatch:PyObject*:str:0:
1162PyUnicode_Tailmatch:PyObject*:substr:0:
1163PyUnicode_Tailmatch:int:start::
1164PyUnicode_Tailmatch:int:end::
1165PyUnicode_Tailmatch:int:direction::
1166
1167PyUnicode_Find:PyObject*::+1:
1168PyUnicode_Find:PyObject*:str:0:
1169PyUnicode_Find:PyObject*:substr:0:
1170PyUnicode_Find:int:start::
1171PyUnicode_Find:int:end::
1172PyUnicode_Find:int:direction::
1173
1174PyUnicode_Count:PyObject*::+1:
1175PyUnicode_Count:PyObject*:str:0:
1176PyUnicode_Count:PyObject*:substr:0:
1177PyUnicode_Count:int:start::
1178PyUnicode_Count:int:end::
1179
1180PyUnicode_Replace:PyObject*::+1:
1181PyUnicode_Replace:PyObject*:str:0:
1182PyUnicode_Replace:PyObject*:substr:0:
1183PyUnicode_Replace:PyObject*:replstr:0:
1184PyUnicode_Replace:int:maxcount::
1185
1186PyUnicode_Compare:int:::
1187PyUnicode_Compare:PyObject*:left:0:
1188PyUnicode_Compare:PyObject*:right:0:
1189
1190PyUnicode_Format:PyObject*::+1:
1191PyUnicode_Format:PyObject*:format:0:
1192PyUnicode_Format:PyObject*:args:0:
1193
1194PyUnicode_Contains:int:::
1195PyUnicode_Contains:PyObject*:container:0:
1196PyUnicode_Contains:PyObject*:element:0:
1197
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001198Py_AtExit:int:::
1199Py_AtExit:void (*)():func::
1200
1201Py_CompileString:PyObject*::+1:
1202Py_CompileString:char*:str::
1203Py_CompileString:char*:filename::
1204Py_CompileString:int:start::
1205
1206Py_DECREF:void:::
1207Py_DECREF:PyObject*:o:-1:
1208
1209Py_EndInterpreter:void:::
1210Py_EndInterpreter:PyThreadState*:tstate::
1211
1212Py_Exit:void:::
1213Py_Exit:int:status::
1214
1215Py_FatalError:void:::
1216Py_FatalError:char*:message::
1217
1218Py_FdIsInteractive:int:::
1219Py_FdIsInteractive:FILE*:fp::
1220Py_FdIsInteractive:char*:filename::
1221
1222Py_Finalize:void:::
1223
Fred Drake8520cc22000-04-10 19:38:24 +00001224Py_FindMethod:PyObject*::+1:
1225Py_FindMethod:PyMethodDef[]:methods::
1226Py_FindMethod:PyObject*:self:+1:
1227Py_FindMethod:char*:name::
1228
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001229Py_GetBuildInfoconst:char*:::
1230
1231Py_GetCompilerconst:char*:::
1232
1233Py_GetCopyrightconst:char*:::
1234
1235Py_GetExecPrefix:char*:::
1236
1237Py_GetPath:char*:::
1238
1239Py_GetPlatformconst:char*:::
1240
1241Py_GetPrefix:char*:::
1242
1243Py_GetProgramFullPath:char*:::
1244
1245Py_GetProgramName:char*:::
1246
1247Py_GetVersionconst:char*:::
1248
1249Py_INCREF:void:::
1250Py_INCREF:PyObject*:o:+1:
1251
1252Py_Initialize:void:::
1253
1254Py_IsInitialized:int:::
1255
1256Py_NewInterpreter:PyThreadState*:::
1257
1258Py_SetProgramName:void:::
1259Py_SetProgramName:char*:name::
1260
1261Py_XDECREF:void:::
1262Py_XDECREF:PyObject*:o:-1:if o is not NULL
1263
1264Py_XINCREF:void:::
1265Py_XINCREF:PyObject*:o:+1:if o is not NULL
1266
1267_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1268_PyImport_FindExtension:char*:::
1269_PyImport_FindExtension:char*:::
1270
1271_PyImport_Fini:void:::
1272
1273_PyImport_FixupExtension:PyObject*:::???
1274_PyImport_FixupExtension:char*:::
1275_PyImport_FixupExtension:char*:::
1276
1277_PyImport_Init:void:::
1278
Fred Drakef913e542000-09-12 20:17:17 +00001279_PyObject_Del:void:::
1280_PyObject_Del:PyObject*:op:0:
1281
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001282_PyObject_New:PyObject*::+1:
1283_PyObject_New:PyTypeObject*:type:0:
1284
Fred Drakef913e542000-09-12 20:17:17 +00001285_PyObject_NewVar:PyVarObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001286_PyObject_NewVar:PyTypeObject*:type:0:
1287_PyObject_NewVar:int:size::
1288
1289_PyString_Resize:int:::
1290_PyString_Resize:PyObject**:string:+1:
1291_PyString_Resize:int:newsize::
1292
1293_PyTuple_Resize:int:::
1294_PyTuple_Resize:PyTupleObject**:p:+1:
1295_PyTuple_Resize:int:new::
1296_PyTuple_Resize:int:last_is_sticky::
1297
1298_Py_c_diff:Py_complex:::
1299_Py_c_diff:Py_complex:left::
1300_Py_c_diff:Py_complex:right::
1301
1302_Py_c_neg:Py_complex:::
1303_Py_c_neg:Py_complex:complex::
1304
1305_Py_c_pow:Py_complex:::
1306_Py_c_pow:Py_complex:num::
1307_Py_c_pow:Py_complex:exp::
1308
1309_Py_c_prod:Py_complex:::
1310_Py_c_prod:Py_complex:left::
1311_Py_c_prod:Py_complex:right::
1312
1313_Py_c_quot:Py_complex:::
1314_Py_c_quot:Py_complex:dividend::
1315_Py_c_quot:Py_complex:divisor::
1316
1317_Py_c_sum:Py_complex:::
1318_Py_c_sum:Py_complex:left::
1319_Py_c_sum:Py_complex:right::