blob: bb71d717e461bb2d9067e297a9179bcc94f686a3 [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
612PyObject_Length:int:::
613PyObject_Length:PyObject*:o:0:
614
615PyObject_Print:int:::
616PyObject_Print:PyObject*:o:0:
617PyObject_Print:FILE*:fp::
618PyObject_Print:int:flags::
619
620PyObject_Repr:PyObject*::+1:
621PyObject_Repr:PyObject*:o:0:
622
623PyObject_SetAttr:int:::
624PyObject_SetAttr:PyObject*:o:0:
625PyObject_SetAttr:PyObject*:attr_name:0:
626PyObject_SetAttr:PyObject*:v:+1:
627
628PyObject_SetAttrString:int:::
629PyObject_SetAttrString:PyObject*:o:0:
630PyObject_SetAttrString:char*:attr_name::
631PyObject_SetAttrString:PyObject*:v:+1:
632
633PyObject_SetItem:int:::
634PyObject_SetItem:PyObject*:o:0:
635PyObject_SetItem:PyObject*:key:0:
636PyObject_SetItem:PyObject*:v:+1:
637
638PyObject_Str:PyObject*::+1:
639PyObject_Str:PyObject*:o:0:
640
641PyObject_Type:PyObject*::+1:
642PyObject_Type:PyObject*:o:0:
643
Fred Drake805bf1b1999-10-20 16:03:38 +0000644PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000645PyParser_SimpleParseFile:FILE*:fp::
646PyParser_SimpleParseFile:char*:filename::
647PyParser_SimpleParseFile:int:start::
648
Fred Drake805bf1b1999-10-20 16:03:38 +0000649PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000650PyParser_SimpleParseString:char*:str::
651PyParser_SimpleParseString:int:start::
652
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000653PyRun_AnyFile:int:::
654PyRun_AnyFile:FILE*:fp::
655PyRun_AnyFile:char*:filename::
656
Fred Drake4ca744c2000-08-12 03:39:47 +0000657PyRun_File:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000658PyRun_File:FILE*:fp::
659PyRun_File:char*:filename::
660PyRun_File:int:start::
661PyRun_File:PyObject*:globals:0:
662PyRun_File:PyObject*:locals:0:
663
664PyRun_InteractiveLoop:int:::
665PyRun_InteractiveLoop:FILE*:fp::
666PyRun_InteractiveLoop:char*:filename::
667
668PyRun_InteractiveOne:int:::
669PyRun_InteractiveOne:FILE*:fp::
670PyRun_InteractiveOne:char*:filename::
671
672PyRun_SimpleFile:int:::
673PyRun_SimpleFile:FILE*:fp::
674PyRun_SimpleFile:char*:filename::
675
676PyRun_SimpleString:int:::
677PyRun_SimpleString:char*:command::
678
Fred Drake4ca744c2000-08-12 03:39:47 +0000679PyRun_String:PyObject*::+1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000680PyRun_String:char*:str::
681PyRun_String:int:start::
682PyRun_String:PyObject*:globals:0:
683PyRun_String:PyObject*:locals:0:
684
685PySequence_Check:int:::
686PySequence_Check:PyObject*:o:0:
687
688PySequence_Concat:PyObject*::+1:
689PySequence_Concat:PyObject*:o1:0:
690PySequence_Concat:PyObject*:o2:0:
691
692PySequence_Count:int:::
693PySequence_Count:PyObject*:o:0:
694PySequence_Count:PyObject*:value:0:
695
696PySequence_DelItem:int:::
697PySequence_DelItem:PyObject*:o:0:
698PySequence_DelItem:int:i::
699
700PySequence_DelSlice:int:::
701PySequence_DelSlice:PyObject*:o:0:
702PySequence_DelSlice:int:i1::
703PySequence_DelSlice:int:i2::
704
705PySequence_GetItem:PyObject*::+1:
706PySequence_GetItem:PyObject*:o:0:
707PySequence_GetItem:int:i::
708
709PySequence_GetSlice:PyObject*::+1:
710PySequence_GetSlice:PyObject*:o:0:
711PySequence_GetSlice:int:i1::
712PySequence_GetSlice:int:i2::
713
714PySequence_In:int:::
715PySequence_In:PyObject*:o:0:
716PySequence_In:PyObject*:value:0:
717
718PySequence_Index:int:::
719PySequence_Index:PyObject*:o:0:
720PySequence_Index:PyObject*:value:0:
721
722PySequence_Repeat:PyObject*::+1:
723PySequence_Repeat:PyObject*:o:0:
724PySequence_Repeat:int:count::
725
726PySequence_SetItem:int:::
727PySequence_SetItem:PyObject*:o:0:
728PySequence_SetItem:int:i::
729PySequence_SetItem:PyObject*:v:+1:
730
731PySequence_SetSlice:int:::
732PySequence_SetSlice:PyObject*:o:0:
733PySequence_SetSlice:int:i1::
734PySequence_SetSlice:int:i2::
735PySequence_SetSlice:PyObject*:v:+1:
736
Fred Drake1c2d06a2000-06-16 20:00:04 +0000737PySequence_List:PyObject*::+1:
738PySequence_List:PyObject*:o:0:
739
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000740PySequence_Tuple:PyObject*::+1:
741PySequence_Tuple:PyObject*:o:0:
742
743PyString_AS_STRING:char*:::
744PyString_AS_STRING:PyObject*:string:0:
745
746PyString_AsString:char*:::
747PyString_AsString:PyObject*:string:0:
748
749PyString_Check:int:::
750PyString_Check:PyObject*:o:0:
751
752PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000753PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000754PyString_Concat:PyObject*:newpart:0:
755
756PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000757PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000758PyString_ConcatAndDel:PyObject*:newpart:-1:
759
760PyString_Format:PyObject*::+1:
761PyString_Format:PyObject*:format:0:
762PyString_Format:PyObject*:args:0:
763
764PyString_FromString:PyObject*::+1:
765PyString_FromString:const char*:v::
766
767PyString_FromStringAndSize:PyObject*::+1:
768PyString_FromStringAndSize:const char*:v::
769PyString_FromStringAndSize:int:len::
770
771PyString_GET_SIZE:int:::
772PyString_GET_SIZE:PyObject*:string:0:
773
774PyString_InternFromString:PyObject*::+1:
775PyString_InternFromString:const char*:v::
776
777PyString_InternInPlace:void:::
778PyString_InternInPlace:PyObject**:string:+1:???
779
780PyString_Size:int:::
781PyString_Size:PyObject*:string:0:
782
Marc-André Lemburg47073202000-07-07 15:48:54 +0000783PyString_Decode:PyObject*::+1:
784PyString_Decode:const char*:s::
785PyString_Decode:int:size::
786PyString_Decode:const char*:encoding::
787PyString_Decode:const char*:errors::
788
789PyString_Encode:PyObject*::+1:
790PyString_Encode:const char*:s::
791PyString_Encode:int:size::
792PyString_Encode:const char*:encoding::
793PyString_Encode:const char*:errors::
794
795PyString_AsEncodedString:PyObject*::+1:
796PyString_AsEncodedString:PyObject*:str::
797PyString_AsEncodedString:const char*:encoding::
798PyString_AsEncodedString:const char*:errors::
799
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000800PySys_SetArgv:int:::
801PySys_SetArgv:int:argc::
802PySys_SetArgv:char**:argv::
803
804PyThreadState_Clear:void:::
805PyThreadState_Clear:PyThreadState*:tstate::
806
807PyThreadState_Delete:void:::
808PyThreadState_Delete:PyThreadState*:tstate::
809
810PyThreadState_Get:PyThreadState*:::
811
812PyThreadState_New:PyThreadState*:::
813PyThreadState_New:PyInterpreterState*:interp::
814
815PyThreadState_Swap:PyThreadState*:::
816PyThreadState_Swap:PyThreadState*:tstate::
817
818PyTuple_Check:int:::
819PyTuple_Check:PyObject*:p:0:
820
821PyTuple_GET_ITEM:PyObject*::0:
822PyTuple_GET_ITEM:PyTupleObject*:p:0:
823PyTuple_GET_ITEM:int:pos::
824
825PyTuple_GetItem:PyObject*::0:
826PyTuple_GetItem:PyTupleObject*:p:0:
827PyTuple_GetItem:int:pos::
828
829PyTuple_GetSlice:PyObject*::+1:
830PyTuple_GetSlice:PyTupleObject*:p:0:
831PyTuple_GetSlice:int:low::
832PyTuple_GetSlice:int:high::
833
834PyTuple_New:PyObject*::+1:
835PyTuple_New:int:len::
836
837PyTuple_SET_ITEM:void:::
838PyTuple_SET_ITEM:PyTupleObject*:p:0:
839PyTuple_SET_ITEM:int:pos::
840PyTuple_SET_ITEM:PyObject*:o:0:
841
842PyTuple_SetItem:int:::
843PyTuple_SetItem:PyTupleObject*:p:0:
844PyTuple_SetItem:int:pos::
845PyTuple_SetItem:PyObject*:o:0:
846
847PyTuple_Size:int:::
848PyTuple_Size:PyTupleObject*:p:0:
849
Fred Drake992fe5a2000-06-16 21:04:15 +0000850PyUnicode_Check:int:::
851PyUnicode_Check:PyObject*:o:0:
852
853PyUnicode_GET_SIZE:int:::
854PyUnicode_GET_SIZE:PyObject*:o:0:
855
856PyUnicode_GET_DATA_SIZE:int:::
857PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
858
859PyUnicode_AS_UNICODE:Py_UNICODE*:::
860PyUnicode_AS_UNICODE:PyObject*:o:0:
861
862PyUnicode_AS_DATA:const char*:::
863PyUnicode_AS_DATA:PyObject*:o:0:
864
865Py_UNICODE_ISSPACE:int:::
866Py_UNICODE_ISSPACE:Py_UNICODE:ch::
867
868Py_UNICODE_ISLOWER:int:::
869Py_UNICODE_ISLOWER:Py_UNICODE:ch::
870
871Py_UNICODE_ISUPPER:int:::
872Py_UNICODE_ISUPPER:Py_UNICODE:ch::
873
874Py_UNICODE_ISTITLE:int:::
875Py_UNICODE_ISTITLE:Py_UNICODE:ch::
876
877Py_UNICODE_ISLINEBREAK:int:::
878Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
879
880Py_UNICODE_ISDECIMAL:int:::
881Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
882
883Py_UNICODE_ISDIGIT:int:::
884Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
885
886Py_UNICODE_ISNUMERIC:int:::
887Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
888
889Py_UNICODE_TOLOWER:Py_UNICODE:::
890Py_UNICODE_TOLOWER:Py_UNICODE:ch::
891
892Py_UNICODE_TOUPPER:Py_UNICODE:::
893Py_UNICODE_TOUPPER:Py_UNICODE:ch::
894
895Py_UNICODE_TOTITLE:Py_UNICODE:::
896Py_UNICODE_TOTITLE:Py_UNICODE:ch::
897
898Py_UNICODE_TODECIMAL:int:::
899Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
900
901Py_UNICODE_TODIGIT:int:::
902Py_UNICODE_TODIGIT:Py_UNICODE:ch::
903
904Py_UNICODE_TONUMERIC:double:::
905Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
906
907PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000908PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +0000909PyUnicode_FromUnicode:int:size::
910
911PyUnicode_AsUnicode:Py_UNICODE*:::
912PyUnicode_AsUnicode:PyObject :*unicode:0:
913
914PyUnicode_GetSize:int:::
915PyUnicode_GetSize:PyObject :*unicode:0:
916
917PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000918PyUnicode_FromObject:PyObject*:*obj:0:
919
920PyUnicode_FromEncodedObject:PyObject*::+1:
921PyUnicode_FromEncodedObject:PyObject*:*obj:0:
922PyUnicode_FromEncodedObject:const char*:encoding::
923PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000924
925PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000926PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +0000927PyUnicode_FromWideChar:int:size::
928
929PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000930PyUnicode_AsWideChar:PyObject*:*unicode:0:
931PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +0000932PyUnicode_AsWideChar:int:size::
933
934PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000935PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000936PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000937PyUnicode_Decode:const char*:encoding::
938PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000939
940PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000941PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000942PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000943PyUnicode_Encode:const char*:encoding::
944PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000945
946PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000947PyUnicode_AsEncodedString:PyObject*:unicode::
948PyUnicode_AsEncodedString:const char*:encoding::
949PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000950
951PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000952PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000953PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000954PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000955
956PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000957PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000958PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000959PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000960
961PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000962PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +0000963
964PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000965PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000966PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000967PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000968PyUnicode_DecodeUTF16:int*:byteorder::
969
970PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000971PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000972PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000973PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000974PyUnicode_EncodeUTF16:int:byteorder::
975
976PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000977PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +0000978
979PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000980PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000981PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000982PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000983
984PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000985PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000986PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000987PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000988
989PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000990PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +0000991
992PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000993PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000994PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000995PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000996
997PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000998PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000999PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001000PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001001
1002PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001003PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001004
1005PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001006PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001007PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001008PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001009
1010PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001011PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001012PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001013PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001014
1015PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001016PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001017
1018PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001019PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001020PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001021PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001022
1023PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001024PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001025PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001026PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001027
1028PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001029PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001030
1031PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001032PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001033PyUnicode_DecodeCharmap:int:size::
1034PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001035PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001036
1037PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001038PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001039PyUnicode_EncodeCharmap:int:size::
1040PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001041PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001042
1043PyUnicode_AsCharmapString:PyObject*::+1:
1044PyUnicode_AsCharmapString:PyObject*:unicode:0:
1045PyUnicode_AsCharmapString:PyObject*:mapping:0:
1046
1047PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001048PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001049PyUnicode_TranslateCharmap:int:size::
1050PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001051PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001052
1053PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001054PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001055PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001056PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001057
1058PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001059PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001060PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001061PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001062
1063PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001064PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001065
1066PyUnicode_Concat:PyObject*::+1:
1067PyUnicode_Concat:PyObject*:left:0:
1068PyUnicode_Concat:PyObject*:right:0:
1069
1070PyUnicode_Split:PyObject*::+1:
1071PyUnicode_Split:PyObject*:left:0:
1072PyUnicode_Split:PyObject*:right:0:
1073PyUnicode_Split:int:maxsplit::
1074
1075PyUnicode_Splitlines:PyObject*::+1:
1076PyUnicode_Splitlines:PyObject*:s:0:
1077PyUnicode_Splitlines:int:maxsplit::
1078
1079PyUnicode_Translate:PyObject*::+1:
1080PyUnicode_Translate:PyObject*:str:0:
1081PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001082PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001083
1084PyUnicode_Join:PyObject*::+1:
1085PyUnicode_Join:PyObject*:separator:0:
1086PyUnicode_Join:PyObject*:seq:0:
1087
1088PyUnicode_Tailmatch:PyObject*::+1:
1089PyUnicode_Tailmatch:PyObject*:str:0:
1090PyUnicode_Tailmatch:PyObject*:substr:0:
1091PyUnicode_Tailmatch:int:start::
1092PyUnicode_Tailmatch:int:end::
1093PyUnicode_Tailmatch:int:direction::
1094
1095PyUnicode_Find:PyObject*::+1:
1096PyUnicode_Find:PyObject*:str:0:
1097PyUnicode_Find:PyObject*:substr:0:
1098PyUnicode_Find:int:start::
1099PyUnicode_Find:int:end::
1100PyUnicode_Find:int:direction::
1101
1102PyUnicode_Count:PyObject*::+1:
1103PyUnicode_Count:PyObject*:str:0:
1104PyUnicode_Count:PyObject*:substr:0:
1105PyUnicode_Count:int:start::
1106PyUnicode_Count:int:end::
1107
1108PyUnicode_Replace:PyObject*::+1:
1109PyUnicode_Replace:PyObject*:str:0:
1110PyUnicode_Replace:PyObject*:substr:0:
1111PyUnicode_Replace:PyObject*:replstr:0:
1112PyUnicode_Replace:int:maxcount::
1113
1114PyUnicode_Compare:int:::
1115PyUnicode_Compare:PyObject*:left:0:
1116PyUnicode_Compare:PyObject*:right:0:
1117
1118PyUnicode_Format:PyObject*::+1:
1119PyUnicode_Format:PyObject*:format:0:
1120PyUnicode_Format:PyObject*:args:0:
1121
1122PyUnicode_Contains:int:::
1123PyUnicode_Contains:PyObject*:container:0:
1124PyUnicode_Contains:PyObject*:element:0:
1125
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001126Py_AtExit:int:::
1127Py_AtExit:void (*)():func::
1128
1129Py_CompileString:PyObject*::+1:
1130Py_CompileString:char*:str::
1131Py_CompileString:char*:filename::
1132Py_CompileString:int:start::
1133
1134Py_DECREF:void:::
1135Py_DECREF:PyObject*:o:-1:
1136
1137Py_EndInterpreter:void:::
1138Py_EndInterpreter:PyThreadState*:tstate::
1139
1140Py_Exit:void:::
1141Py_Exit:int:status::
1142
1143Py_FatalError:void:::
1144Py_FatalError:char*:message::
1145
1146Py_FdIsInteractive:int:::
1147Py_FdIsInteractive:FILE*:fp::
1148Py_FdIsInteractive:char*:filename::
1149
1150Py_Finalize:void:::
1151
Fred Drake8520cc22000-04-10 19:38:24 +00001152Py_FindMethod:PyObject*::+1:
1153Py_FindMethod:PyMethodDef[]:methods::
1154Py_FindMethod:PyObject*:self:+1:
1155Py_FindMethod:char*:name::
1156
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001157Py_GetBuildInfoconst:char*:::
1158
1159Py_GetCompilerconst:char*:::
1160
1161Py_GetCopyrightconst:char*:::
1162
1163Py_GetExecPrefix:char*:::
1164
1165Py_GetPath:char*:::
1166
1167Py_GetPlatformconst:char*:::
1168
1169Py_GetPrefix:char*:::
1170
1171Py_GetProgramFullPath:char*:::
1172
1173Py_GetProgramName:char*:::
1174
1175Py_GetVersionconst:char*:::
1176
1177Py_INCREF:void:::
1178Py_INCREF:PyObject*:o:+1:
1179
1180Py_Initialize:void:::
1181
1182Py_IsInitialized:int:::
1183
1184Py_NewInterpreter:PyThreadState*:::
1185
1186Py_SetProgramName:void:::
1187Py_SetProgramName:char*:name::
1188
1189Py_XDECREF:void:::
1190Py_XDECREF:PyObject*:o:-1:if o is not NULL
1191
1192Py_XINCREF:void:::
1193Py_XINCREF:PyObject*:o:+1:if o is not NULL
1194
1195_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1196_PyImport_FindExtension:char*:::
1197_PyImport_FindExtension:char*:::
1198
1199_PyImport_Fini:void:::
1200
1201_PyImport_FixupExtension:PyObject*:::???
1202_PyImport_FixupExtension:char*:::
1203_PyImport_FixupExtension:char*:::
1204
1205_PyImport_Init:void:::
1206
1207_PyObject_New:PyObject*::+1:
1208_PyObject_New:PyTypeObject*:type:0:
1209
1210_PyObject_NewVar:PyObject*::+1:
1211_PyObject_NewVar:PyTypeObject*:type:0:
1212_PyObject_NewVar:int:size::
1213
1214_PyString_Resize:int:::
1215_PyString_Resize:PyObject**:string:+1:
1216_PyString_Resize:int:newsize::
1217
1218_PyTuple_Resize:int:::
1219_PyTuple_Resize:PyTupleObject**:p:+1:
1220_PyTuple_Resize:int:new::
1221_PyTuple_Resize:int:last_is_sticky::
1222
1223_Py_c_diff:Py_complex:::
1224_Py_c_diff:Py_complex:left::
1225_Py_c_diff:Py_complex:right::
1226
1227_Py_c_neg:Py_complex:::
1228_Py_c_neg:Py_complex:complex::
1229
1230_Py_c_pow:Py_complex:::
1231_Py_c_pow:Py_complex:num::
1232_Py_c_pow:Py_complex:exp::
1233
1234_Py_c_prod:Py_complex:::
1235_Py_c_prod:Py_complex:left::
1236_Py_c_prod:Py_complex:right::
1237
1238_Py_c_quot:Py_complex:::
1239_Py_c_quot:Py_complex:dividend::
1240_Py_c_quot:Py_complex:divisor::
1241
1242_Py_c_sum:Py_complex:::
1243_Py_c_sum:Py_complex:left::
1244_Py_c_sum:Py_complex:right::