blob: f3ef0ac3708713297e07203d77e5d70c09acb282 [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
496PyNumber_Int:PyObject*::+1:
497PyNumber_Int:PyObject*:o:0:
498
499PyNumber_Invert:PyObject*::+1:
500PyNumber_Invert:PyObject*:o:0:
501
502PyNumber_Long:PyObject*::+1:
503PyNumber_Long:PyObject*:o:0:
504
505PyNumber_Lshift:PyObject*::+1:
506PyNumber_Lshift:PyObject*:o1:0:
507PyNumber_Lshift:PyObject*:o2:0:
508
509PyNumber_Multiply:PyObject*::+1:
510PyNumber_Multiply:PyObject*:o1:0:
511PyNumber_Multiply:PyObject*:o2:0:
512
513PyNumber_Negative:PyObject*::+1:
514PyNumber_Negative:PyObject*:o:0:
515
516PyNumber_Or:PyObject*::+1:
517PyNumber_Or:PyObject*:o1:0:
518PyNumber_Or:PyObject*:o2:0:
519
520PyNumber_Positive:PyObject*::+1:
521PyNumber_Positive:PyObject*:o:0:
522
523PyNumber_Power:PyObject*::+1:
524PyNumber_Power:PyObject*:o1:0:
525PyNumber_Power:PyObject*:o2:0:
526PyNumber_Power:PyObject*:o3:0:
527
528PyNumber_Remainder:PyObject*::+1:
529PyNumber_Remainder:PyObject*:o1:0:
530PyNumber_Remainder:PyObject*:o2:0:
531
532PyNumber_Rshift:PyObject*::+1:
533PyNumber_Rshift:PyObject*:o1:0:
534PyNumber_Rshift:PyObject*:o2:0:
535
536PyNumber_Subtract:PyObject*::+1:
537PyNumber_Subtract:PyObject*:o1:0:
538PyNumber_Subtract:PyObject*:o2:0:
539
540PyNumber_Xor:PyObject*::+1:
541PyNumber_Xor:PyObject*:o1:0:
542PyNumber_Xor:PyObject*:o2:0:
543
544PyOS_GetLastModificationTime:long:::
545PyOS_GetLastModificationTime:char*:filename::
546
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000547PyObject_AsFileDescriptor:int:::
548PyObject_AsFileDescriptor:PyObject*:o:0:
549
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000550PyObject_CallFunction:PyObject*::+1:
551PyObject_CallFunction:PyObject*:callable_object:0:
552PyObject_CallFunction:char*:format::
553PyObject_CallFunction::...::
554
555PyObject_CallMethod:PyObject*::+1:
556PyObject_CallMethod:PyObject*:o:0:
557PyObject_CallMethod:char*:m::
558PyObject_CallMethod:char*:format::
559PyObject_CallMethod::...::
560
561PyObject_CallObject:PyObject*::+1:
562PyObject_CallObject:PyObject*:callable_object:0:
563PyObject_CallObject:PyObject*:args:0:
564
565PyObject_Cmp:int:::
566PyObject_Cmp:PyObject*:o1:0:
567PyObject_Cmp:PyObject*:o2:0:
568PyObject_Cmp:int*:result::
569
570PyObject_Compare:int:::
571PyObject_Compare:PyObject*:o1:0:
572PyObject_Compare:PyObject*:o2:0:
573
574PyObject_DelAttr:int:::
575PyObject_DelAttr:PyObject*:o:0:
576PyObject_DelAttr:PyObject*:attr_name:0:
577
578PyObject_DelAttrString:int:::
579PyObject_DelAttrString:PyObject*:o:0:
580PyObject_DelAttrString:char*:attr_name::
581
582PyObject_DelItem:int:::
583PyObject_DelItem:PyObject*:o:0:
584PyObject_DelItem:PyObject*:key:0:
585
586PyObject_GetAttr:PyObject*::+1:
587PyObject_GetAttr:PyObject*:o:0:
588PyObject_GetAttr:PyObject*:attr_name:0:
589
590PyObject_GetAttrString:PyObject*::+1:
591PyObject_GetAttrString:PyObject*:o:0:
592PyObject_GetAttrString:char*:attr_name::
593
594PyObject_GetItem:PyObject*::+1:
595PyObject_GetItem:PyObject*:o:0:
596PyObject_GetItem:PyObject*:key:0:
597
598PyObject_HasAttr:int:::
599PyObject_HasAttr:PyObject*:o:0:
600PyObject_HasAttr:PyObject*:attr_name:0:
601
602PyObject_HasAttrString:int:::
603PyObject_HasAttrString:PyObject*:o:0:
604PyObject_HasAttrString:char*:attr_name:0:
605
606PyObject_Hash:int:::
607PyObject_Hash:PyObject*:o:0:
608
609PyObject_IsTrue:int:::
610PyObject_IsTrue:PyObject*:o:0:
611
Fred Drakef913e542000-09-12 20:17:17 +0000612PyObject_Init:PyObject*::0:
613PyObject_Init:PyObject*:op:0:
614
615PyObject_InitVar:PyVarObject*::0:
616PyObject_InitVar:PyVarObject*:op:0:
617
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000618PyObject_Length:int:::
619PyObject_Length:PyObject*:o:0:
620
621PyObject_Print:int:::
622PyObject_Print:PyObject*:o:0:
623PyObject_Print:FILE*:fp::
624PyObject_Print:int:flags::
625
626PyObject_Repr:PyObject*::+1:
627PyObject_Repr:PyObject*:o:0:
628
629PyObject_SetAttr:int:::
630PyObject_SetAttr:PyObject*:o:0:
631PyObject_SetAttr:PyObject*:attr_name:0:
632PyObject_SetAttr:PyObject*:v:+1:
633
634PyObject_SetAttrString:int:::
635PyObject_SetAttrString:PyObject*:o:0:
636PyObject_SetAttrString:char*:attr_name::
637PyObject_SetAttrString:PyObject*:v:+1:
638
639PyObject_SetItem:int:::
640PyObject_SetItem:PyObject*:o:0:
641PyObject_SetItem:PyObject*:key:0:
642PyObject_SetItem:PyObject*:v:+1:
643
644PyObject_Str:PyObject*::+1:
645PyObject_Str:PyObject*:o:0:
646
647PyObject_Type:PyObject*::+1:
648PyObject_Type:PyObject*:o:0:
649
Fred Drake805bf1b1999-10-20 16:03:38 +0000650PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000651PyParser_SimpleParseFile:FILE*:fp::
652PyParser_SimpleParseFile:char*:filename::
653PyParser_SimpleParseFile:int:start::
654
Fred Drake805bf1b1999-10-20 16:03:38 +0000655PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000656PyParser_SimpleParseString:char*:str::
657PyParser_SimpleParseString:int:start::
658
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000659PyRun_AnyFile:int:::
660PyRun_AnyFile:FILE*:fp::
661PyRun_AnyFile:char*:filename::
662
Fred Drake4ca744c2000-08-12 03:39:47 +0000663PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000664PyRun_File:FILE*:fp::
665PyRun_File:char*:filename::
666PyRun_File:int:start::
667PyRun_File:PyObject*:globals:0:
668PyRun_File:PyObject*:locals:0:
669
670PyRun_InteractiveLoop:int:::
671PyRun_InteractiveLoop:FILE*:fp::
672PyRun_InteractiveLoop:char*:filename::
673
674PyRun_InteractiveOne:int:::
675PyRun_InteractiveOne:FILE*:fp::
676PyRun_InteractiveOne:char*:filename::
677
678PyRun_SimpleFile:int:::
679PyRun_SimpleFile:FILE*:fp::
680PyRun_SimpleFile:char*:filename::
681
682PyRun_SimpleString:int:::
683PyRun_SimpleString:char*:command::
684
Fred Drake4ca744c2000-08-12 03:39:47 +0000685PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000686PyRun_String:char*:str::
687PyRun_String:int:start::
688PyRun_String:PyObject*:globals:0:
689PyRun_String:PyObject*:locals:0:
690
691PySequence_Check:int:::
692PySequence_Check:PyObject*:o:0:
693
694PySequence_Concat:PyObject*::+1:
695PySequence_Concat:PyObject*:o1:0:
696PySequence_Concat:PyObject*:o2:0:
697
698PySequence_Count:int:::
699PySequence_Count:PyObject*:o:0:
700PySequence_Count:PyObject*:value:0:
701
702PySequence_DelItem:int:::
703PySequence_DelItem:PyObject*:o:0:
704PySequence_DelItem:int:i::
705
706PySequence_DelSlice:int:::
707PySequence_DelSlice:PyObject*:o:0:
708PySequence_DelSlice:int:i1::
709PySequence_DelSlice:int:i2::
710
Fred Drake81cccb72000-09-12 15:22:05 +0000711PySequence_Fast:PyObject*::+1:
712PySequence_Fast:PyObject*:v:0:
713PySequence_Fast:const char*:m::
714
715PySequence_Fast_GET_ITEM:PyObject*::0:
716PySequence_Fast_GET_ITEM:PyObject*:o:0:
717PySequence_Fast_GET_ITEM:int:i::
718
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000719PySequence_GetItem:PyObject*::+1:
720PySequence_GetItem:PyObject*:o:0:
721PySequence_GetItem:int:i::
722
723PySequence_GetSlice:PyObject*::+1:
724PySequence_GetSlice:PyObject*:o:0:
725PySequence_GetSlice:int:i1::
726PySequence_GetSlice:int:i2::
727
728PySequence_In:int:::
729PySequence_In:PyObject*:o:0:
730PySequence_In:PyObject*:value:0:
731
732PySequence_Index:int:::
733PySequence_Index:PyObject*:o:0:
734PySequence_Index:PyObject*:value:0:
735
736PySequence_Repeat:PyObject*::+1:
737PySequence_Repeat:PyObject*:o:0:
738PySequence_Repeat:int:count::
739
740PySequence_SetItem:int:::
741PySequence_SetItem:PyObject*:o:0:
742PySequence_SetItem:int:i::
743PySequence_SetItem:PyObject*:v:+1:
744
745PySequence_SetSlice:int:::
746PySequence_SetSlice:PyObject*:o:0:
747PySequence_SetSlice:int:i1::
748PySequence_SetSlice:int:i2::
749PySequence_SetSlice:PyObject*:v:+1:
750
Fred Drake1c2d06a2000-06-16 20:00:04 +0000751PySequence_List:PyObject*::+1:
752PySequence_List:PyObject*:o:0:
753
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000754PySequence_Tuple:PyObject*::+1:
755PySequence_Tuple:PyObject*:o:0:
756
757PyString_AS_STRING:char*:::
758PyString_AS_STRING:PyObject*:string:0:
759
760PyString_AsString:char*:::
761PyString_AsString:PyObject*:string:0:
762
Marc-André Lemburgd1ba4432000-09-19 21:04:18 +0000763PyString_AsStringAndSize:int:::
764PyString_AsStringAndSize:PyObject*:obj:0:
765PyString_AsStringAndSize:char**:buffer::
766PyString_AsStringAndSize:int*:length::
767
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000768PyString_Check:int:::
769PyString_Check:PyObject*:o:0:
770
771PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000772PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000773PyString_Concat:PyObject*:newpart:0:
774
775PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000776PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000777PyString_ConcatAndDel:PyObject*:newpart:-1:
778
779PyString_Format:PyObject*::+1:
780PyString_Format:PyObject*:format:0:
781PyString_Format:PyObject*:args:0:
782
783PyString_FromString:PyObject*::+1:
784PyString_FromString:const char*:v::
785
786PyString_FromStringAndSize:PyObject*::+1:
787PyString_FromStringAndSize:const char*:v::
788PyString_FromStringAndSize:int:len::
789
790PyString_GET_SIZE:int:::
791PyString_GET_SIZE:PyObject*:string:0:
792
793PyString_InternFromString:PyObject*::+1:
794PyString_InternFromString:const char*:v::
795
796PyString_InternInPlace:void:::
797PyString_InternInPlace:PyObject**:string:+1:???
798
799PyString_Size:int:::
800PyString_Size:PyObject*:string:0:
801
Marc-André Lemburg47073202000-07-07 15:48:54 +0000802PyString_Decode:PyObject*::+1:
803PyString_Decode:const char*:s::
804PyString_Decode:int:size::
805PyString_Decode:const char*:encoding::
806PyString_Decode:const char*:errors::
807
808PyString_Encode:PyObject*::+1:
809PyString_Encode:const char*:s::
810PyString_Encode:int:size::
811PyString_Encode:const char*:encoding::
812PyString_Encode:const char*:errors::
813
814PyString_AsEncodedString:PyObject*::+1:
815PyString_AsEncodedString:PyObject*:str::
816PyString_AsEncodedString:const char*:encoding::
817PyString_AsEncodedString:const char*:errors::
818
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000819PySys_SetArgv:int:::
820PySys_SetArgv:int:argc::
821PySys_SetArgv:char**:argv::
822
823PyThreadState_Clear:void:::
824PyThreadState_Clear:PyThreadState*:tstate::
825
826PyThreadState_Delete:void:::
827PyThreadState_Delete:PyThreadState*:tstate::
828
829PyThreadState_Get:PyThreadState*:::
830
831PyThreadState_New:PyThreadState*:::
832PyThreadState_New:PyInterpreterState*:interp::
833
834PyThreadState_Swap:PyThreadState*:::
835PyThreadState_Swap:PyThreadState*:tstate::
836
837PyTuple_Check:int:::
838PyTuple_Check:PyObject*:p:0:
839
840PyTuple_GET_ITEM:PyObject*::0:
841PyTuple_GET_ITEM:PyTupleObject*:p:0:
842PyTuple_GET_ITEM:int:pos::
843
844PyTuple_GetItem:PyObject*::0:
845PyTuple_GetItem:PyTupleObject*:p:0:
846PyTuple_GetItem:int:pos::
847
848PyTuple_GetSlice:PyObject*::+1:
849PyTuple_GetSlice:PyTupleObject*:p:0:
850PyTuple_GetSlice:int:low::
851PyTuple_GetSlice:int:high::
852
853PyTuple_New:PyObject*::+1:
854PyTuple_New:int:len::
855
856PyTuple_SET_ITEM:void:::
857PyTuple_SET_ITEM:PyTupleObject*:p:0:
858PyTuple_SET_ITEM:int:pos::
859PyTuple_SET_ITEM:PyObject*:o:0:
860
861PyTuple_SetItem:int:::
862PyTuple_SetItem:PyTupleObject*:p:0:
863PyTuple_SetItem:int:pos::
864PyTuple_SetItem:PyObject*:o:0:
865
866PyTuple_Size:int:::
867PyTuple_Size:PyTupleObject*:p:0:
868
Fred Drake992fe5a2000-06-16 21:04:15 +0000869PyUnicode_Check:int:::
870PyUnicode_Check:PyObject*:o:0:
871
872PyUnicode_GET_SIZE:int:::
873PyUnicode_GET_SIZE:PyObject*:o:0:
874
875PyUnicode_GET_DATA_SIZE:int:::
876PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
877
878PyUnicode_AS_UNICODE:Py_UNICODE*:::
879PyUnicode_AS_UNICODE:PyObject*:o:0:
880
881PyUnicode_AS_DATA:const char*:::
882PyUnicode_AS_DATA:PyObject*:o:0:
883
884Py_UNICODE_ISSPACE:int:::
885Py_UNICODE_ISSPACE:Py_UNICODE:ch::
886
887Py_UNICODE_ISLOWER:int:::
888Py_UNICODE_ISLOWER:Py_UNICODE:ch::
889
890Py_UNICODE_ISUPPER:int:::
891Py_UNICODE_ISUPPER:Py_UNICODE:ch::
892
893Py_UNICODE_ISTITLE:int:::
894Py_UNICODE_ISTITLE:Py_UNICODE:ch::
895
896Py_UNICODE_ISLINEBREAK:int:::
897Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
898
899Py_UNICODE_ISDECIMAL:int:::
900Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
901
902Py_UNICODE_ISDIGIT:int:::
903Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
904
905Py_UNICODE_ISNUMERIC:int:::
906Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
907
908Py_UNICODE_TOLOWER:Py_UNICODE:::
909Py_UNICODE_TOLOWER:Py_UNICODE:ch::
910
911Py_UNICODE_TOUPPER:Py_UNICODE:::
912Py_UNICODE_TOUPPER:Py_UNICODE:ch::
913
914Py_UNICODE_TOTITLE:Py_UNICODE:::
915Py_UNICODE_TOTITLE:Py_UNICODE:ch::
916
917Py_UNICODE_TODECIMAL:int:::
918Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
919
920Py_UNICODE_TODIGIT:int:::
921Py_UNICODE_TODIGIT:Py_UNICODE:ch::
922
923Py_UNICODE_TONUMERIC:double:::
924Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
925
926PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000927PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +0000928PyUnicode_FromUnicode:int:size::
929
930PyUnicode_AsUnicode:Py_UNICODE*:::
931PyUnicode_AsUnicode:PyObject :*unicode:0:
932
933PyUnicode_GetSize:int:::
934PyUnicode_GetSize:PyObject :*unicode:0:
935
936PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000937PyUnicode_FromObject:PyObject*:*obj:0:
938
939PyUnicode_FromEncodedObject:PyObject*::+1:
940PyUnicode_FromEncodedObject:PyObject*:*obj:0:
941PyUnicode_FromEncodedObject:const char*:encoding::
942PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000943
944PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000945PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +0000946PyUnicode_FromWideChar:int:size::
947
948PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000949PyUnicode_AsWideChar:PyObject*:*unicode:0:
950PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +0000951PyUnicode_AsWideChar:int:size::
952
953PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000954PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000955PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000956PyUnicode_Decode:const char*:encoding::
957PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000958
959PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000960PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000961PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000962PyUnicode_Encode:const char*:encoding::
963PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000964
965PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000966PyUnicode_AsEncodedString:PyObject*:unicode::
967PyUnicode_AsEncodedString:const char*:encoding::
968PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000969
970PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000971PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000972PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000973PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000974
975PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000976PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000977PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000978PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000979
980PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000981PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +0000982
983PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000984PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000985PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000986PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000987PyUnicode_DecodeUTF16:int*:byteorder::
988
989PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000990PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000991PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000992PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000993PyUnicode_EncodeUTF16:int:byteorder::
994
995PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000996PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +0000997
998PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000999PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001000PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001001PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001002
1003PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001004PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001005PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001006PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001007
1008PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001009PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001010
1011PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001012PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001013PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001014PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001015
1016PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001017PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001018PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001019PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001020
1021PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001022PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001023
1024PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001025PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001026PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001027PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001028
1029PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001030PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001031PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001032PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001033
1034PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001035PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001036
1037PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001038PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001039PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001040PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001041
1042PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001043PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001044PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001045PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001046
1047PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001048PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001049
1050PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001051PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001052PyUnicode_DecodeCharmap:int:size::
1053PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001054PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001055
1056PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001057PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001058PyUnicode_EncodeCharmap:int:size::
1059PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001060PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001061
1062PyUnicode_AsCharmapString:PyObject*::+1:
1063PyUnicode_AsCharmapString:PyObject*:unicode:0:
1064PyUnicode_AsCharmapString:PyObject*:mapping:0:
1065
1066PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001067PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001068PyUnicode_TranslateCharmap:int:size::
1069PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001070PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001071
1072PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001073PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001074PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001075PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001076
1077PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001078PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001079PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001080PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001081
1082PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001083PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001084
1085PyUnicode_Concat:PyObject*::+1:
1086PyUnicode_Concat:PyObject*:left:0:
1087PyUnicode_Concat:PyObject*:right:0:
1088
1089PyUnicode_Split:PyObject*::+1:
1090PyUnicode_Split:PyObject*:left:0:
1091PyUnicode_Split:PyObject*:right:0:
1092PyUnicode_Split:int:maxsplit::
1093
1094PyUnicode_Splitlines:PyObject*::+1:
1095PyUnicode_Splitlines:PyObject*:s:0:
1096PyUnicode_Splitlines:int:maxsplit::
1097
1098PyUnicode_Translate:PyObject*::+1:
1099PyUnicode_Translate:PyObject*:str:0:
1100PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001101PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001102
1103PyUnicode_Join:PyObject*::+1:
1104PyUnicode_Join:PyObject*:separator:0:
1105PyUnicode_Join:PyObject*:seq:0:
1106
1107PyUnicode_Tailmatch:PyObject*::+1:
1108PyUnicode_Tailmatch:PyObject*:str:0:
1109PyUnicode_Tailmatch:PyObject*:substr:0:
1110PyUnicode_Tailmatch:int:start::
1111PyUnicode_Tailmatch:int:end::
1112PyUnicode_Tailmatch:int:direction::
1113
1114PyUnicode_Find:PyObject*::+1:
1115PyUnicode_Find:PyObject*:str:0:
1116PyUnicode_Find:PyObject*:substr:0:
1117PyUnicode_Find:int:start::
1118PyUnicode_Find:int:end::
1119PyUnicode_Find:int:direction::
1120
1121PyUnicode_Count:PyObject*::+1:
1122PyUnicode_Count:PyObject*:str:0:
1123PyUnicode_Count:PyObject*:substr:0:
1124PyUnicode_Count:int:start::
1125PyUnicode_Count:int:end::
1126
1127PyUnicode_Replace:PyObject*::+1:
1128PyUnicode_Replace:PyObject*:str:0:
1129PyUnicode_Replace:PyObject*:substr:0:
1130PyUnicode_Replace:PyObject*:replstr:0:
1131PyUnicode_Replace:int:maxcount::
1132
1133PyUnicode_Compare:int:::
1134PyUnicode_Compare:PyObject*:left:0:
1135PyUnicode_Compare:PyObject*:right:0:
1136
1137PyUnicode_Format:PyObject*::+1:
1138PyUnicode_Format:PyObject*:format:0:
1139PyUnicode_Format:PyObject*:args:0:
1140
1141PyUnicode_Contains:int:::
1142PyUnicode_Contains:PyObject*:container:0:
1143PyUnicode_Contains:PyObject*:element:0:
1144
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001145Py_AtExit:int:::
1146Py_AtExit:void (*)():func::
1147
1148Py_CompileString:PyObject*::+1:
1149Py_CompileString:char*:str::
1150Py_CompileString:char*:filename::
1151Py_CompileString:int:start::
1152
1153Py_DECREF:void:::
1154Py_DECREF:PyObject*:o:-1:
1155
1156Py_EndInterpreter:void:::
1157Py_EndInterpreter:PyThreadState*:tstate::
1158
1159Py_Exit:void:::
1160Py_Exit:int:status::
1161
1162Py_FatalError:void:::
1163Py_FatalError:char*:message::
1164
1165Py_FdIsInteractive:int:::
1166Py_FdIsInteractive:FILE*:fp::
1167Py_FdIsInteractive:char*:filename::
1168
1169Py_Finalize:void:::
1170
Fred Drake8520cc22000-04-10 19:38:24 +00001171Py_FindMethod:PyObject*::+1:
1172Py_FindMethod:PyMethodDef[]:methods::
1173Py_FindMethod:PyObject*:self:+1:
1174Py_FindMethod:char*:name::
1175
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001176Py_GetBuildInfoconst:char*:::
1177
1178Py_GetCompilerconst:char*:::
1179
1180Py_GetCopyrightconst:char*:::
1181
1182Py_GetExecPrefix:char*:::
1183
1184Py_GetPath:char*:::
1185
1186Py_GetPlatformconst:char*:::
1187
1188Py_GetPrefix:char*:::
1189
1190Py_GetProgramFullPath:char*:::
1191
1192Py_GetProgramName:char*:::
1193
1194Py_GetVersionconst:char*:::
1195
1196Py_INCREF:void:::
1197Py_INCREF:PyObject*:o:+1:
1198
1199Py_Initialize:void:::
1200
1201Py_IsInitialized:int:::
1202
1203Py_NewInterpreter:PyThreadState*:::
1204
1205Py_SetProgramName:void:::
1206Py_SetProgramName:char*:name::
1207
1208Py_XDECREF:void:::
1209Py_XDECREF:PyObject*:o:-1:if o is not NULL
1210
1211Py_XINCREF:void:::
1212Py_XINCREF:PyObject*:o:+1:if o is not NULL
1213
1214_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1215_PyImport_FindExtension:char*:::
1216_PyImport_FindExtension:char*:::
1217
1218_PyImport_Fini:void:::
1219
1220_PyImport_FixupExtension:PyObject*:::???
1221_PyImport_FixupExtension:char*:::
1222_PyImport_FixupExtension:char*:::
1223
1224_PyImport_Init:void:::
1225
Fred Drakef913e542000-09-12 20:17:17 +00001226_PyObject_Del:void:::
1227_PyObject_Del:PyObject*:op:0:
1228
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001229_PyObject_New:PyObject*::+1:
1230_PyObject_New:PyTypeObject*:type:0:
1231
Fred Drakef913e542000-09-12 20:17:17 +00001232_PyObject_NewVar:PyVarObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001233_PyObject_NewVar:PyTypeObject*:type:0:
1234_PyObject_NewVar:int:size::
1235
1236_PyString_Resize:int:::
1237_PyString_Resize:PyObject**:string:+1:
1238_PyString_Resize:int:newsize::
1239
1240_PyTuple_Resize:int:::
1241_PyTuple_Resize:PyTupleObject**:p:+1:
1242_PyTuple_Resize:int:new::
1243_PyTuple_Resize:int:last_is_sticky::
1244
1245_Py_c_diff:Py_complex:::
1246_Py_c_diff:Py_complex:left::
1247_Py_c_diff:Py_complex:right::
1248
1249_Py_c_neg:Py_complex:::
1250_Py_c_neg:Py_complex:complex::
1251
1252_Py_c_pow:Py_complex:::
1253_Py_c_pow:Py_complex:num::
1254_Py_c_pow:Py_complex:exp::
1255
1256_Py_c_prod:Py_complex:::
1257_Py_c_prod:Py_complex:left::
1258_Py_c_prod:Py_complex:right::
1259
1260_Py_c_quot:Py_complex:::
1261_Py_c_quot:Py_complex:dividend::
1262_Py_c_quot:Py_complex:divisor::
1263
1264_Py_c_sum:Py_complex:::
1265_Py_c_sum:Py_complex:left::
1266_Py_c_sum:Py_complex:right::