blob: be4651893a858db06bc2b59af935fed4def8cf92 [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:::
177PyErr_Restore:PyObject*:type:0:
178PyErr_Restore:PyObject*:value:0:
179PyErr_Restore:PyObject*:traceback:0:
180
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
219PyFile_AsFile:FILE*:::
220PyFile_AsFile:PyFileObject*:p:0:
221
222PyFile_Check:int:::
223PyFile_Check:PyObject*:p:0:
224
225PyFile_FromFile:PyObject*::+1:
226PyFile_FromFile:FILE*:fp::
227PyFile_FromFile:char*:name::
228PyFile_FromFile:char*:mode::
229PyFile_FromFile:int(*:close)::
230
231PyFile_FromString:PyObject*::+1:
232PyFile_FromString:char*:name::
233PyFile_FromString:char*:mode::
234
235PyFile_GetLine:PyObject*::+1:
236PyFile_GetLine:PyObject*:p::
237PyFile_GetLine:int:n::
238
239PyFile_Name:PyObject*::0:
240PyFile_Name:PyObject*:p:0:
241
242PyFile_SetBufSize:void:::
243PyFile_SetBufSize:PyFileObject*:p:0:
244PyFile_SetBufSize:int:n::
245
246PyFile_SoftSpace:int:::
247PyFile_SoftSpace:PyFileObject*:p:0:
248PyFile_SoftSpace:int:newflag::
249
250PyFile_WriteObject:int:::
251PyFile_WriteObject:PyObject*:obj:0:
252PyFile_WriteObject:PyFileObject*:p:0:
253PyFile_WriteObject:int:flags::
254
255PyFile_WriteString:int:::
256PyFile_WriteString:char*:s::
257PyFile_WriteString:PyFileObject*:p:0:
258PyFile_WriteString:int:flags::
259
260PyFloat_AS_DOUBLE:double:::
261PyFloat_AS_DOUBLE:PyObject*:pyfloat:0:
262
263PyFloat_AsDouble:double:::
264PyFloat_AsDouble:PyObject*:pyfloat:0:
265
266PyFloat_Check:int:::
267PyFloat_Check:PyObject*:p:0:
268
269PyFloat_FromDouble:PyObject*::+1:
270PyFloat_FromDouble:double:v::
271
Fred Drake805bf1b1999-10-20 16:03:38 +0000272PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000273PyImport_AddModule:char*:name::
274
275PyImport_Cleanup:void:::
276
277PyImport_ExecCodeModule:PyObject*::+1:
278PyImport_ExecCodeModule:char*:name::
279PyImport_ExecCodeModule:PyObject*:co:0:
280
281PyImport_GetMagicNumber:long:::
282
283PyImport_GetModuleDict:PyObject*::0:
284
285PyImport_Import:PyObject*::+1:
286PyImport_Import:PyObject*:name:0:
287
288PyImport_ImportFrozenModule:int:::
289PyImport_ImportFrozenModule:char*:::
290
Fred Drakeeb725cd2000-04-03 15:06:40 +0000291PyImport_ImportModule:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000292PyImport_ImportModule:char*:name::
293
Fred Drakeeb725cd2000-04-03 15:06:40 +0000294PyImport_ImportModuleEx:PyObject*::+1:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000295PyImport_ImportModuleEx:char*:name::
296PyImport_ImportModuleEx:PyObject*:globals:0:???
297PyImport_ImportModuleEx:PyObject*:locals:0:???
298PyImport_ImportModuleEx:PyObject*:fromlist:0:???
299
Fred Drakeeb725cd2000-04-03 15:06:40 +0000300PyImport_ReloadModule:PyObject*::+1:
Fred Drake805bf1b1999-10-20 16:03:38 +0000301PyImport_ReloadModule:PyObject*:m:0:
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000302
303PyInt_AS_LONG:long:::
304PyInt_AS_LONG:PyIntObject*:io:0:
305
306PyInt_AsLong:long:::
307PyInt_AsLong:PyObject*:io:0:
308
309PyInt_Check:int:::
310PyInt_Check:PyObject*::0:
311
312PyInt_FromLong:PyObject*::+1:
313PyInt_FromLong:long:ival::
314
315PyInt_GetMax:long:::
316
317PyInterpreterState_Clear:void:::
318PyInterpreterState_Clear:PyInterpreterState*:interp::
319
320PyInterpreterState_Delete:void:::
321PyInterpreterState_Delete:PyInterpreterState*:interp::
322
323PyInterpreterState_New:PyInterpreterState*:::
324
325PyList_Append:int:::
326PyList_Append:PyObject*:list:0:
327PyList_Append:PyObject*:item:+1:
328
329PyList_AsTuple:PyObject*::+1:
330PyList_AsTuple:PyObject*:list:0:
331
332PyList_Check:int:::
333PyList_Check:PyObject*:p:0:
334
335PyList_GET_ITEM:PyObject*::0:
336PyList_GET_ITEM:PyObject*:list:0:
337PyList_GET_ITEM:int:i:0:
338
339PyList_GET_SIZE:int:::
340PyList_GET_SIZE:PyObject*:list:0:
341
342PyList_GetItem:PyObject*::0:
343PyList_GetItem:PyObject*:list:0:
344PyList_GetItem:int:index::
345
346PyList_GetSlice:PyObject*::+1:
347PyList_GetSlice:PyObject*:list:0:
348PyList_GetSlice:int:low::
349PyList_GetSlice:int:high::
350
351PyList_Insert:int:::
352PyList_Insert:PyObject*:list:0:
353PyList_Insert:int:index::
354PyList_Insert:PyObject*:item:+1:
355
356PyList_New:PyObject*::+1:
357PyList_New:int:len::
358
359PyList_Reverse:int:::
360PyList_Reverse:PyObject*:list:0:
361
362PyList_SET_ITEM:PyObject*::0:
363PyList_SET_ITEM:PyObject*:list:0:
364PyList_SET_ITEM:int:i::
365PyList_SET_ITEM:PyObject*:o:0:
366
367PyList_SetItem:int:::
368PyList_SetItem:PyObject*:list:0:
369PyList_SetItem:int:index::
370PyList_SetItem:PyObject*:item:0:
371
372PyList_SetSlice:int:::
373PyList_SetSlice:PyObject*:list:0:
374PyList_SetSlice:int:low::
375PyList_SetSlice:int:high::
376PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
377
378PyList_Size:int:::
379PyList_Size:PyObject*:list:0:
380
381PyList_Sort:int:::
382PyList_Sort:PyObject*:list:0:
383
384PyLong_AsDouble:double:::
385PyLong_AsDouble:PyObject*:pylong:0:
386
387PyLong_AsLong:long:::
388PyLong_AsLong:PyObject*:pylong:0:
389
390PyLong_AsUnsignedLong:unsigned long:::
391PyLong_AsUnsignedLong:PyObject*:pylong:0:
392
393PyLong_Check:int:::
394PyLong_Check:PyObject*:p:0:
395
396PyLong_FromDouble:PyObject*::+1:
397PyLong_FromDouble:double:v::
398
399PyLong_FromLong:PyObject*::+1:
400PyLong_FromLong:long:v::
401
402PyLong_FromString:PyObject*::+1:
403PyLong_FromString:char*:str::
404PyLong_FromString:char**:pend::
405PyLong_FromString:int:base::
406
407PyLong_FromUnsignedLong:PyObject*::+1:
408PyLong_FromUnsignedLong:unsignedlong:v::
409
410PyMapping_Check:int:::
411PyMapping_Check:PyObject*:o:0:
412
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000413PyMapping_DelItem:int:::
414PyMapping_DelItem:PyObject*:o:0:
415PyMapping_DelItem:PyObject*:key:0:
416
417PyMapping_DelItemString:int:::
418PyMapping_DelItemString:PyObject*:o:0:
419PyMapping_DelItemString:char*:key::
420
421PyMapping_GetItemString:PyObject*::+1:
422PyMapping_GetItemString:PyObject*:o:0:
423PyMapping_GetItemString:char*:key::
424
425PyMapping_HasKey:int:::
426PyMapping_HasKey:PyObject*:o:0:
427PyMapping_HasKey:PyObject*:key::
428
429PyMapping_HasKeyString:int:::
430PyMapping_HasKeyString:PyObject*:o:0:
431PyMapping_HasKeyString:char*:key::
432
433PyMapping_Items:PyObject*::+1:
434PyMapping_Items:PyObject*:o:0:
435
436PyMapping_Keys:PyObject*::+1:
437PyMapping_Keys:PyObject*:o:0:
438
439PyMapping_Length:int:::
440PyMapping_Length:PyObject*:o:0:
441
442PyMapping_SetItemString:int:::
443PyMapping_SetItemString:PyObject*:o:0:
444PyMapping_SetItemString:char*:key::
445PyMapping_SetItemString:PyObject*:v:+1:
446
447PyMapping_Values:PyObject*::+1:
448PyMapping_Values:PyObject*:o:0:
449
450PyModule_GetDict:PyObject*::0:
451PyModule_GetDict::PyObject* module:0:
452
453PyModule_GetFilename:char*:::
454PyModule_GetFilename:PyObject*:module:0:
455
456PyModule_GetName:char*:::
457PyModule_GetName:PyObject*:module:0:
458
459PyModule_New:PyObject*::+1:
460PyModule_New::char* name::
461
462PyNumber_Absolute:PyObject*::+1:
463PyNumber_Absolute:PyObject*:o:0:
464
465PyNumber_Add:PyObject*::+1:
466PyNumber_Add:PyObject*:o1:0:
467PyNumber_Add:PyObject*:o2:0:
468
469PyNumber_And:PyObject*::+1:
470PyNumber_And:PyObject*:o1:0:
471PyNumber_And:PyObject*:o2:0:
472
473PyNumber_Check:PyObject*:o:0:
474PyNumber_Check:int:::
475
476PyNumber_Coerce:int:::
477PyNumber_Coerce:PyObject**:p1:+1:
478PyNumber_Coerce:PyObject**:p2:+1:
479
480PyNumber_Divide:PyObject*::+1:
481PyNumber_Divide:PyObject*:o1:0:
482PyNumber_Divide:PyObject*:o2:0:
483
484PyNumber_Divmod:PyObject*::+1:
485PyNumber_Divmod:PyObject*:o1:0:
486PyNumber_Divmod:PyObject*:o2:0:
487
488PyNumber_Float:PyObject*::+1:
489PyNumber_Float:PyObject*:o:0:
490
491PyNumber_Int:PyObject*::+1:
492PyNumber_Int:PyObject*:o:0:
493
494PyNumber_Invert:PyObject*::+1:
495PyNumber_Invert:PyObject*:o:0:
496
497PyNumber_Long:PyObject*::+1:
498PyNumber_Long:PyObject*:o:0:
499
500PyNumber_Lshift:PyObject*::+1:
501PyNumber_Lshift:PyObject*:o1:0:
502PyNumber_Lshift:PyObject*:o2:0:
503
504PyNumber_Multiply:PyObject*::+1:
505PyNumber_Multiply:PyObject*:o1:0:
506PyNumber_Multiply:PyObject*:o2:0:
507
508PyNumber_Negative:PyObject*::+1:
509PyNumber_Negative:PyObject*:o:0:
510
511PyNumber_Or:PyObject*::+1:
512PyNumber_Or:PyObject*:o1:0:
513PyNumber_Or:PyObject*:o2:0:
514
515PyNumber_Positive:PyObject*::+1:
516PyNumber_Positive:PyObject*:o:0:
517
518PyNumber_Power:PyObject*::+1:
519PyNumber_Power:PyObject*:o1:0:
520PyNumber_Power:PyObject*:o2:0:
521PyNumber_Power:PyObject*:o3:0:
522
523PyNumber_Remainder:PyObject*::+1:
524PyNumber_Remainder:PyObject*:o1:0:
525PyNumber_Remainder:PyObject*:o2:0:
526
527PyNumber_Rshift:PyObject*::+1:
528PyNumber_Rshift:PyObject*:o1:0:
529PyNumber_Rshift:PyObject*:o2:0:
530
531PyNumber_Subtract:PyObject*::+1:
532PyNumber_Subtract:PyObject*:o1:0:
533PyNumber_Subtract:PyObject*:o2:0:
534
535PyNumber_Xor:PyObject*::+1:
536PyNumber_Xor:PyObject*:o1:0:
537PyNumber_Xor:PyObject*:o2:0:
538
539PyOS_GetLastModificationTime:long:::
540PyOS_GetLastModificationTime:char*:filename::
541
542PyObject_CallFunction:PyObject*::+1:
543PyObject_CallFunction:PyObject*:callable_object:0:
544PyObject_CallFunction:char*:format::
545PyObject_CallFunction::...::
546
547PyObject_CallMethod:PyObject*::+1:
548PyObject_CallMethod:PyObject*:o:0:
549PyObject_CallMethod:char*:m::
550PyObject_CallMethod:char*:format::
551PyObject_CallMethod::...::
552
553PyObject_CallObject:PyObject*::+1:
554PyObject_CallObject:PyObject*:callable_object:0:
555PyObject_CallObject:PyObject*:args:0:
556
557PyObject_Cmp:int:::
558PyObject_Cmp:PyObject*:o1:0:
559PyObject_Cmp:PyObject*:o2:0:
560PyObject_Cmp:int*:result::
561
562PyObject_Compare:int:::
563PyObject_Compare:PyObject*:o1:0:
564PyObject_Compare:PyObject*:o2:0:
565
566PyObject_DelAttr:int:::
567PyObject_DelAttr:PyObject*:o:0:
568PyObject_DelAttr:PyObject*:attr_name:0:
569
570PyObject_DelAttrString:int:::
571PyObject_DelAttrString:PyObject*:o:0:
572PyObject_DelAttrString:char*:attr_name::
573
574PyObject_DelItem:int:::
575PyObject_DelItem:PyObject*:o:0:
576PyObject_DelItem:PyObject*:key:0:
577
578PyObject_GetAttr:PyObject*::+1:
579PyObject_GetAttr:PyObject*:o:0:
580PyObject_GetAttr:PyObject*:attr_name:0:
581
582PyObject_GetAttrString:PyObject*::+1:
583PyObject_GetAttrString:PyObject*:o:0:
584PyObject_GetAttrString:char*:attr_name::
585
586PyObject_GetItem:PyObject*::+1:
587PyObject_GetItem:PyObject*:o:0:
588PyObject_GetItem:PyObject*:key:0:
589
590PyObject_HasAttr:int:::
591PyObject_HasAttr:PyObject*:o:0:
592PyObject_HasAttr:PyObject*:attr_name:0:
593
594PyObject_HasAttrString:int:::
595PyObject_HasAttrString:PyObject*:o:0:
596PyObject_HasAttrString:char*:attr_name:0:
597
598PyObject_Hash:int:::
599PyObject_Hash:PyObject*:o:0:
600
601PyObject_IsTrue:int:::
602PyObject_IsTrue:PyObject*:o:0:
603
604PyObject_Length:int:::
605PyObject_Length:PyObject*:o:0:
606
607PyObject_Print:int:::
608PyObject_Print:PyObject*:o:0:
609PyObject_Print:FILE*:fp::
610PyObject_Print:int:flags::
611
612PyObject_Repr:PyObject*::+1:
613PyObject_Repr:PyObject*:o:0:
614
615PyObject_SetAttr:int:::
616PyObject_SetAttr:PyObject*:o:0:
617PyObject_SetAttr:PyObject*:attr_name:0:
618PyObject_SetAttr:PyObject*:v:+1:
619
620PyObject_SetAttrString:int:::
621PyObject_SetAttrString:PyObject*:o:0:
622PyObject_SetAttrString:char*:attr_name::
623PyObject_SetAttrString:PyObject*:v:+1:
624
625PyObject_SetItem:int:::
626PyObject_SetItem:PyObject*:o:0:
627PyObject_SetItem:PyObject*:key:0:
628PyObject_SetItem:PyObject*:v:+1:
629
630PyObject_Str:PyObject*::+1:
631PyObject_Str:PyObject*:o:0:
632
633PyObject_Type:PyObject*::+1:
634PyObject_Type:PyObject*:o:0:
635
Fred Drake805bf1b1999-10-20 16:03:38 +0000636PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000637PyParser_SimpleParseFile:FILE*:fp::
638PyParser_SimpleParseFile:char*:filename::
639PyParser_SimpleParseFile:int:start::
640
Fred Drake805bf1b1999-10-20 16:03:38 +0000641PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000642PyParser_SimpleParseString:char*:str::
643PyParser_SimpleParseString:int:start::
644
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000645PyRun_AnyFile:int:::
646PyRun_AnyFile:FILE*:fp::
647PyRun_AnyFile:char*:filename::
648
Fred Drake805bf1b1999-10-20 16:03:38 +0000649PyRun_File:PyObject*::1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000650PyRun_File:FILE*:fp::
651PyRun_File:char*:filename::
652PyRun_File:int:start::
653PyRun_File:PyObject*:globals:0:
654PyRun_File:PyObject*:locals:0:
655
656PyRun_InteractiveLoop:int:::
657PyRun_InteractiveLoop:FILE*:fp::
658PyRun_InteractiveLoop:char*:filename::
659
660PyRun_InteractiveOne:int:::
661PyRun_InteractiveOne:FILE*:fp::
662PyRun_InteractiveOne:char*:filename::
663
664PyRun_SimpleFile:int:::
665PyRun_SimpleFile:FILE*:fp::
666PyRun_SimpleFile:char*:filename::
667
668PyRun_SimpleString:int:::
669PyRun_SimpleString:char*:command::
670
Fred Drake805bf1b1999-10-20 16:03:38 +0000671PyRun_String:PyObject*::1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000672PyRun_String:char*:str::
673PyRun_String:int:start::
674PyRun_String:PyObject*:globals:0:
675PyRun_String:PyObject*:locals:0:
676
677PySequence_Check:int:::
678PySequence_Check:PyObject*:o:0:
679
680PySequence_Concat:PyObject*::+1:
681PySequence_Concat:PyObject*:o1:0:
682PySequence_Concat:PyObject*:o2:0:
683
684PySequence_Count:int:::
685PySequence_Count:PyObject*:o:0:
686PySequence_Count:PyObject*:value:0:
687
688PySequence_DelItem:int:::
689PySequence_DelItem:PyObject*:o:0:
690PySequence_DelItem:int:i::
691
692PySequence_DelSlice:int:::
693PySequence_DelSlice:PyObject*:o:0:
694PySequence_DelSlice:int:i1::
695PySequence_DelSlice:int:i2::
696
697PySequence_GetItem:PyObject*::+1:
698PySequence_GetItem:PyObject*:o:0:
699PySequence_GetItem:int:i::
700
701PySequence_GetSlice:PyObject*::+1:
702PySequence_GetSlice:PyObject*:o:0:
703PySequence_GetSlice:int:i1::
704PySequence_GetSlice:int:i2::
705
706PySequence_In:int:::
707PySequence_In:PyObject*:o:0:
708PySequence_In:PyObject*:value:0:
709
710PySequence_Index:int:::
711PySequence_Index:PyObject*:o:0:
712PySequence_Index:PyObject*:value:0:
713
714PySequence_Repeat:PyObject*::+1:
715PySequence_Repeat:PyObject*:o:0:
716PySequence_Repeat:int:count::
717
718PySequence_SetItem:int:::
719PySequence_SetItem:PyObject*:o:0:
720PySequence_SetItem:int:i::
721PySequence_SetItem:PyObject*:v:+1:
722
723PySequence_SetSlice:int:::
724PySequence_SetSlice:PyObject*:o:0:
725PySequence_SetSlice:int:i1::
726PySequence_SetSlice:int:i2::
727PySequence_SetSlice:PyObject*:v:+1:
728
Fred Drake1c2d06a2000-06-16 20:00:04 +0000729PySequence_List:PyObject*::+1:
730PySequence_List:PyObject*:o:0:
731
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000732PySequence_Tuple:PyObject*::+1:
733PySequence_Tuple:PyObject*:o:0:
734
735PyString_AS_STRING:char*:::
736PyString_AS_STRING:PyObject*:string:0:
737
738PyString_AsString:char*:::
739PyString_AsString:PyObject*:string:0:
740
741PyString_Check:int:::
742PyString_Check:PyObject*:o:0:
743
744PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000745PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000746PyString_Concat:PyObject*:newpart:0:
747
748PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000749PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000750PyString_ConcatAndDel:PyObject*:newpart:-1:
751
752PyString_Format:PyObject*::+1:
753PyString_Format:PyObject*:format:0:
754PyString_Format:PyObject*:args:0:
755
756PyString_FromString:PyObject*::+1:
757PyString_FromString:const char*:v::
758
759PyString_FromStringAndSize:PyObject*::+1:
760PyString_FromStringAndSize:const char*:v::
761PyString_FromStringAndSize:int:len::
762
763PyString_GET_SIZE:int:::
764PyString_GET_SIZE:PyObject*:string:0:
765
766PyString_InternFromString:PyObject*::+1:
767PyString_InternFromString:const char*:v::
768
769PyString_InternInPlace:void:::
770PyString_InternInPlace:PyObject**:string:+1:???
771
772PyString_Size:int:::
773PyString_Size:PyObject*:string:0:
774
Marc-André Lemburg47073202000-07-07 15:48:54 +0000775PyString_Decode:PyObject*::+1:
776PyString_Decode:const char*:s::
777PyString_Decode:int:size::
778PyString_Decode:const char*:encoding::
779PyString_Decode:const char*:errors::
780
781PyString_Encode:PyObject*::+1:
782PyString_Encode:const char*:s::
783PyString_Encode:int:size::
784PyString_Encode:const char*:encoding::
785PyString_Encode:const char*:errors::
786
787PyString_AsEncodedString:PyObject*::+1:
788PyString_AsEncodedString:PyObject*:str::
789PyString_AsEncodedString:const char*:encoding::
790PyString_AsEncodedString:const char*:errors::
791
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000792PySys_SetArgv:int:::
793PySys_SetArgv:int:argc::
794PySys_SetArgv:char**:argv::
795
796PyThreadState_Clear:void:::
797PyThreadState_Clear:PyThreadState*:tstate::
798
799PyThreadState_Delete:void:::
800PyThreadState_Delete:PyThreadState*:tstate::
801
802PyThreadState_Get:PyThreadState*:::
803
804PyThreadState_New:PyThreadState*:::
805PyThreadState_New:PyInterpreterState*:interp::
806
807PyThreadState_Swap:PyThreadState*:::
808PyThreadState_Swap:PyThreadState*:tstate::
809
810PyTuple_Check:int:::
811PyTuple_Check:PyObject*:p:0:
812
813PyTuple_GET_ITEM:PyObject*::0:
814PyTuple_GET_ITEM:PyTupleObject*:p:0:
815PyTuple_GET_ITEM:int:pos::
816
817PyTuple_GetItem:PyObject*::0:
818PyTuple_GetItem:PyTupleObject*:p:0:
819PyTuple_GetItem:int:pos::
820
821PyTuple_GetSlice:PyObject*::+1:
822PyTuple_GetSlice:PyTupleObject*:p:0:
823PyTuple_GetSlice:int:low::
824PyTuple_GetSlice:int:high::
825
826PyTuple_New:PyObject*::+1:
827PyTuple_New:int:len::
828
829PyTuple_SET_ITEM:void:::
830PyTuple_SET_ITEM:PyTupleObject*:p:0:
831PyTuple_SET_ITEM:int:pos::
832PyTuple_SET_ITEM:PyObject*:o:0:
833
834PyTuple_SetItem:int:::
835PyTuple_SetItem:PyTupleObject*:p:0:
836PyTuple_SetItem:int:pos::
837PyTuple_SetItem:PyObject*:o:0:
838
839PyTuple_Size:int:::
840PyTuple_Size:PyTupleObject*:p:0:
841
Fred Drake992fe5a2000-06-16 21:04:15 +0000842PyUnicode_Check:int:::
843PyUnicode_Check:PyObject*:o:0:
844
845PyUnicode_GET_SIZE:int:::
846PyUnicode_GET_SIZE:PyObject*:o:0:
847
848PyUnicode_GET_DATA_SIZE:int:::
849PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
850
851PyUnicode_AS_UNICODE:Py_UNICODE*:::
852PyUnicode_AS_UNICODE:PyObject*:o:0:
853
854PyUnicode_AS_DATA:const char*:::
855PyUnicode_AS_DATA:PyObject*:o:0:
856
857Py_UNICODE_ISSPACE:int:::
858Py_UNICODE_ISSPACE:Py_UNICODE:ch::
859
860Py_UNICODE_ISLOWER:int:::
861Py_UNICODE_ISLOWER:Py_UNICODE:ch::
862
863Py_UNICODE_ISUPPER:int:::
864Py_UNICODE_ISUPPER:Py_UNICODE:ch::
865
866Py_UNICODE_ISTITLE:int:::
867Py_UNICODE_ISTITLE:Py_UNICODE:ch::
868
869Py_UNICODE_ISLINEBREAK:int:::
870Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
871
872Py_UNICODE_ISDECIMAL:int:::
873Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
874
875Py_UNICODE_ISDIGIT:int:::
876Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
877
878Py_UNICODE_ISNUMERIC:int:::
879Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
880
881Py_UNICODE_TOLOWER:Py_UNICODE:::
882Py_UNICODE_TOLOWER:Py_UNICODE:ch::
883
884Py_UNICODE_TOUPPER:Py_UNICODE:::
885Py_UNICODE_TOUPPER:Py_UNICODE:ch::
886
887Py_UNICODE_TOTITLE:Py_UNICODE:::
888Py_UNICODE_TOTITLE:Py_UNICODE:ch::
889
890Py_UNICODE_TODECIMAL:int:::
891Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
892
893Py_UNICODE_TODIGIT:int:::
894Py_UNICODE_TODIGIT:Py_UNICODE:ch::
895
896Py_UNICODE_TONUMERIC:double:::
897Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
898
899PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000900PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +0000901PyUnicode_FromUnicode:int:size::
902
903PyUnicode_AsUnicode:Py_UNICODE*:::
904PyUnicode_AsUnicode:PyObject :*unicode:0:
905
906PyUnicode_GetSize:int:::
907PyUnicode_GetSize:PyObject :*unicode:0:
908
909PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000910PyUnicode_FromObject:PyObject*:*obj:0:
911
912PyUnicode_FromEncodedObject:PyObject*::+1:
913PyUnicode_FromEncodedObject:PyObject*:*obj:0:
914PyUnicode_FromEncodedObject:const char*:encoding::
915PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000916
917PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000918PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +0000919PyUnicode_FromWideChar:int:size::
920
921PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000922PyUnicode_AsWideChar:PyObject*:*unicode:0:
923PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +0000924PyUnicode_AsWideChar:int:size::
925
926PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000927PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000928PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000929PyUnicode_Decode:const char*:encoding::
930PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000931
932PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000933PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000934PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000935PyUnicode_Encode:const char*:encoding::
936PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000937
938PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000939PyUnicode_AsEncodedString:PyObject*:unicode::
940PyUnicode_AsEncodedString:const char*:encoding::
941PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000942
943PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000944PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000945PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000946PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000947
948PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000949PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000950PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000951PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000952
953PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000954PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +0000955
956PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000957PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000958PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000959PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000960PyUnicode_DecodeUTF16:int*:byteorder::
961
962PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000963PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000964PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000965PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000966PyUnicode_EncodeUTF16:int:byteorder::
967
968PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000969PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +0000970
971PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000972PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000973PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000974PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000975
976PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000977PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000978PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000979PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000980
981PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000982PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +0000983
984PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000985PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000986PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000987PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000988
989PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000990PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000991PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000992PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000993
994PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000995PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +0000996
997PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000998PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000999PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001000PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001001
1002PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001003PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001004PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001005PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001006
1007PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001008PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001009
1010PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001011PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001012PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001013PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001014
1015PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001016PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001017PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001018PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001019
1020PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001021PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001022
1023PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001024PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001025PyUnicode_DecodeCharmap:int:size::
1026PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001027PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001028
1029PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001030PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001031PyUnicode_EncodeCharmap:int:size::
1032PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001033PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001034
1035PyUnicode_AsCharmapString:PyObject*::+1:
1036PyUnicode_AsCharmapString:PyObject*:unicode:0:
1037PyUnicode_AsCharmapString:PyObject*:mapping:0:
1038
1039PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001040PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001041PyUnicode_TranslateCharmap:int:size::
1042PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001043PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001044
1045PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001046PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001047PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001048PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001049
1050PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001051PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001052PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001053PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001054
1055PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001056PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001057
1058PyUnicode_Concat:PyObject*::+1:
1059PyUnicode_Concat:PyObject*:left:0:
1060PyUnicode_Concat:PyObject*:right:0:
1061
1062PyUnicode_Split:PyObject*::+1:
1063PyUnicode_Split:PyObject*:left:0:
1064PyUnicode_Split:PyObject*:right:0:
1065PyUnicode_Split:int:maxsplit::
1066
1067PyUnicode_Splitlines:PyObject*::+1:
1068PyUnicode_Splitlines:PyObject*:s:0:
1069PyUnicode_Splitlines:int:maxsplit::
1070
1071PyUnicode_Translate:PyObject*::+1:
1072PyUnicode_Translate:PyObject*:str:0:
1073PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001074PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001075
1076PyUnicode_Join:PyObject*::+1:
1077PyUnicode_Join:PyObject*:separator:0:
1078PyUnicode_Join:PyObject*:seq:0:
1079
1080PyUnicode_Tailmatch:PyObject*::+1:
1081PyUnicode_Tailmatch:PyObject*:str:0:
1082PyUnicode_Tailmatch:PyObject*:substr:0:
1083PyUnicode_Tailmatch:int:start::
1084PyUnicode_Tailmatch:int:end::
1085PyUnicode_Tailmatch:int:direction::
1086
1087PyUnicode_Find:PyObject*::+1:
1088PyUnicode_Find:PyObject*:str:0:
1089PyUnicode_Find:PyObject*:substr:0:
1090PyUnicode_Find:int:start::
1091PyUnicode_Find:int:end::
1092PyUnicode_Find:int:direction::
1093
1094PyUnicode_Count:PyObject*::+1:
1095PyUnicode_Count:PyObject*:str:0:
1096PyUnicode_Count:PyObject*:substr:0:
1097PyUnicode_Count:int:start::
1098PyUnicode_Count:int:end::
1099
1100PyUnicode_Replace:PyObject*::+1:
1101PyUnicode_Replace:PyObject*:str:0:
1102PyUnicode_Replace:PyObject*:substr:0:
1103PyUnicode_Replace:PyObject*:replstr:0:
1104PyUnicode_Replace:int:maxcount::
1105
1106PyUnicode_Compare:int:::
1107PyUnicode_Compare:PyObject*:left:0:
1108PyUnicode_Compare:PyObject*:right:0:
1109
1110PyUnicode_Format:PyObject*::+1:
1111PyUnicode_Format:PyObject*:format:0:
1112PyUnicode_Format:PyObject*:args:0:
1113
1114PyUnicode_Contains:int:::
1115PyUnicode_Contains:PyObject*:container:0:
1116PyUnicode_Contains:PyObject*:element:0:
1117
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001118Py_AtExit:int:::
1119Py_AtExit:void (*)():func::
1120
1121Py_CompileString:PyObject*::+1:
1122Py_CompileString:char*:str::
1123Py_CompileString:char*:filename::
1124Py_CompileString:int:start::
1125
1126Py_DECREF:void:::
1127Py_DECREF:PyObject*:o:-1:
1128
1129Py_EndInterpreter:void:::
1130Py_EndInterpreter:PyThreadState*:tstate::
1131
1132Py_Exit:void:::
1133Py_Exit:int:status::
1134
1135Py_FatalError:void:::
1136Py_FatalError:char*:message::
1137
1138Py_FdIsInteractive:int:::
1139Py_FdIsInteractive:FILE*:fp::
1140Py_FdIsInteractive:char*:filename::
1141
1142Py_Finalize:void:::
1143
Fred Drake8520cc22000-04-10 19:38:24 +00001144Py_FindMethod:PyObject*::+1:
1145Py_FindMethod:PyMethodDef[]:methods::
1146Py_FindMethod:PyObject*:self:+1:
1147Py_FindMethod:char*:name::
1148
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001149Py_GetBuildInfoconst:char*:::
1150
1151Py_GetCompilerconst:char*:::
1152
1153Py_GetCopyrightconst:char*:::
1154
1155Py_GetExecPrefix:char*:::
1156
1157Py_GetPath:char*:::
1158
1159Py_GetPlatformconst:char*:::
1160
1161Py_GetPrefix:char*:::
1162
1163Py_GetProgramFullPath:char*:::
1164
1165Py_GetProgramName:char*:::
1166
1167Py_GetVersionconst:char*:::
1168
1169Py_INCREF:void:::
1170Py_INCREF:PyObject*:o:+1:
1171
1172Py_Initialize:void:::
1173
1174Py_IsInitialized:int:::
1175
1176Py_NewInterpreter:PyThreadState*:::
1177
1178Py_SetProgramName:void:::
1179Py_SetProgramName:char*:name::
1180
1181Py_XDECREF:void:::
1182Py_XDECREF:PyObject*:o:-1:if o is not NULL
1183
1184Py_XINCREF:void:::
1185Py_XINCREF:PyObject*:o:+1:if o is not NULL
1186
1187_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1188_PyImport_FindExtension:char*:::
1189_PyImport_FindExtension:char*:::
1190
1191_PyImport_Fini:void:::
1192
1193_PyImport_FixupExtension:PyObject*:::???
1194_PyImport_FixupExtension:char*:::
1195_PyImport_FixupExtension:char*:::
1196
1197_PyImport_Init:void:::
1198
1199_PyObject_New:PyObject*::+1:
1200_PyObject_New:PyTypeObject*:type:0:
1201
1202_PyObject_NewVar:PyObject*::+1:
1203_PyObject_NewVar:PyTypeObject*:type:0:
1204_PyObject_NewVar:int:size::
1205
1206_PyString_Resize:int:::
1207_PyString_Resize:PyObject**:string:+1:
1208_PyString_Resize:int:newsize::
1209
1210_PyTuple_Resize:int:::
1211_PyTuple_Resize:PyTupleObject**:p:+1:
1212_PyTuple_Resize:int:new::
1213_PyTuple_Resize:int:last_is_sticky::
1214
1215_Py_c_diff:Py_complex:::
1216_Py_c_diff:Py_complex:left::
1217_Py_c_diff:Py_complex:right::
1218
1219_Py_c_neg:Py_complex:::
1220_Py_c_neg:Py_complex:complex::
1221
1222_Py_c_pow:Py_complex:::
1223_Py_c_pow:Py_complex:num::
1224_Py_c_pow:Py_complex:exp::
1225
1226_Py_c_prod:Py_complex:::
1227_Py_c_prod:Py_complex:left::
1228_Py_c_prod:Py_complex:right::
1229
1230_Py_c_quot:Py_complex:::
1231_Py_c_quot:Py_complex:dividend::
1232_Py_c_quot:Py_complex:divisor::
1233
1234_Py_c_sum:Py_complex:::
1235_Py_c_sum:Py_complex:left::
1236_Py_c_sum:Py_complex:right::