blob: c31d3b379f7d88fbae12b09634d1d52c4783d75c [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
Andrew M. Kuchling8c46b302000-07-13 23:58:16 +0000542PyObject_AsFileDescriptor:int:::
543PyObject_AsFileDescriptor:PyObject*:o:0:
544
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000545PyObject_CallFunction:PyObject*::+1:
546PyObject_CallFunction:PyObject*:callable_object:0:
547PyObject_CallFunction:char*:format::
548PyObject_CallFunction::...::
549
550PyObject_CallMethod:PyObject*::+1:
551PyObject_CallMethod:PyObject*:o:0:
552PyObject_CallMethod:char*:m::
553PyObject_CallMethod:char*:format::
554PyObject_CallMethod::...::
555
556PyObject_CallObject:PyObject*::+1:
557PyObject_CallObject:PyObject*:callable_object:0:
558PyObject_CallObject:PyObject*:args:0:
559
560PyObject_Cmp:int:::
561PyObject_Cmp:PyObject*:o1:0:
562PyObject_Cmp:PyObject*:o2:0:
563PyObject_Cmp:int*:result::
564
565PyObject_Compare:int:::
566PyObject_Compare:PyObject*:o1:0:
567PyObject_Compare:PyObject*:o2:0:
568
569PyObject_DelAttr:int:::
570PyObject_DelAttr:PyObject*:o:0:
571PyObject_DelAttr:PyObject*:attr_name:0:
572
573PyObject_DelAttrString:int:::
574PyObject_DelAttrString:PyObject*:o:0:
575PyObject_DelAttrString:char*:attr_name::
576
577PyObject_DelItem:int:::
578PyObject_DelItem:PyObject*:o:0:
579PyObject_DelItem:PyObject*:key:0:
580
581PyObject_GetAttr:PyObject*::+1:
582PyObject_GetAttr:PyObject*:o:0:
583PyObject_GetAttr:PyObject*:attr_name:0:
584
585PyObject_GetAttrString:PyObject*::+1:
586PyObject_GetAttrString:PyObject*:o:0:
587PyObject_GetAttrString:char*:attr_name::
588
589PyObject_GetItem:PyObject*::+1:
590PyObject_GetItem:PyObject*:o:0:
591PyObject_GetItem:PyObject*:key:0:
592
593PyObject_HasAttr:int:::
594PyObject_HasAttr:PyObject*:o:0:
595PyObject_HasAttr:PyObject*:attr_name:0:
596
597PyObject_HasAttrString:int:::
598PyObject_HasAttrString:PyObject*:o:0:
599PyObject_HasAttrString:char*:attr_name:0:
600
601PyObject_Hash:int:::
602PyObject_Hash:PyObject*:o:0:
603
604PyObject_IsTrue:int:::
605PyObject_IsTrue:PyObject*:o:0:
606
607PyObject_Length:int:::
608PyObject_Length:PyObject*:o:0:
609
610PyObject_Print:int:::
611PyObject_Print:PyObject*:o:0:
612PyObject_Print:FILE*:fp::
613PyObject_Print:int:flags::
614
615PyObject_Repr:PyObject*::+1:
616PyObject_Repr:PyObject*:o:0:
617
618PyObject_SetAttr:int:::
619PyObject_SetAttr:PyObject*:o:0:
620PyObject_SetAttr:PyObject*:attr_name:0:
621PyObject_SetAttr:PyObject*:v:+1:
622
623PyObject_SetAttrString:int:::
624PyObject_SetAttrString:PyObject*:o:0:
625PyObject_SetAttrString:char*:attr_name::
626PyObject_SetAttrString:PyObject*:v:+1:
627
628PyObject_SetItem:int:::
629PyObject_SetItem:PyObject*:o:0:
630PyObject_SetItem:PyObject*:key:0:
631PyObject_SetItem:PyObject*:v:+1:
632
633PyObject_Str:PyObject*::+1:
634PyObject_Str:PyObject*:o:0:
635
636PyObject_Type:PyObject*::+1:
637PyObject_Type:PyObject*:o:0:
638
Fred Drake805bf1b1999-10-20 16:03:38 +0000639PyParser_SimpleParseFile:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000640PyParser_SimpleParseFile:FILE*:fp::
641PyParser_SimpleParseFile:char*:filename::
642PyParser_SimpleParseFile:int:start::
643
Fred Drake805bf1b1999-10-20 16:03:38 +0000644PyParser_SimpleParseString:struct _node*:::
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000645PyParser_SimpleParseString:char*:str::
646PyParser_SimpleParseString:int:start::
647
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000648PyRun_AnyFile:int:::
649PyRun_AnyFile:FILE*:fp::
650PyRun_AnyFile:char*:filename::
651
Fred Drake805bf1b1999-10-20 16:03:38 +0000652PyRun_File:PyObject*::1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000653PyRun_File:FILE*:fp::
654PyRun_File:char*:filename::
655PyRun_File:int:start::
656PyRun_File:PyObject*:globals:0:
657PyRun_File:PyObject*:locals:0:
658
659PyRun_InteractiveLoop:int:::
660PyRun_InteractiveLoop:FILE*:fp::
661PyRun_InteractiveLoop:char*:filename::
662
663PyRun_InteractiveOne:int:::
664PyRun_InteractiveOne:FILE*:fp::
665PyRun_InteractiveOne:char*:filename::
666
667PyRun_SimpleFile:int:::
668PyRun_SimpleFile:FILE*:fp::
669PyRun_SimpleFile:char*:filename::
670
671PyRun_SimpleString:int:::
672PyRun_SimpleString:char*:command::
673
Fred Drake805bf1b1999-10-20 16:03:38 +0000674PyRun_String:PyObject*::1:??? -- same as eval_code2()
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000675PyRun_String:char*:str::
676PyRun_String:int:start::
677PyRun_String:PyObject*:globals:0:
678PyRun_String:PyObject*:locals:0:
679
680PySequence_Check:int:::
681PySequence_Check:PyObject*:o:0:
682
683PySequence_Concat:PyObject*::+1:
684PySequence_Concat:PyObject*:o1:0:
685PySequence_Concat:PyObject*:o2:0:
686
687PySequence_Count:int:::
688PySequence_Count:PyObject*:o:0:
689PySequence_Count:PyObject*:value:0:
690
691PySequence_DelItem:int:::
692PySequence_DelItem:PyObject*:o:0:
693PySequence_DelItem:int:i::
694
695PySequence_DelSlice:int:::
696PySequence_DelSlice:PyObject*:o:0:
697PySequence_DelSlice:int:i1::
698PySequence_DelSlice:int:i2::
699
700PySequence_GetItem:PyObject*::+1:
701PySequence_GetItem:PyObject*:o:0:
702PySequence_GetItem:int:i::
703
704PySequence_GetSlice:PyObject*::+1:
705PySequence_GetSlice:PyObject*:o:0:
706PySequence_GetSlice:int:i1::
707PySequence_GetSlice:int:i2::
708
709PySequence_In:int:::
710PySequence_In:PyObject*:o:0:
711PySequence_In:PyObject*:value:0:
712
713PySequence_Index:int:::
714PySequence_Index:PyObject*:o:0:
715PySequence_Index:PyObject*:value:0:
716
717PySequence_Repeat:PyObject*::+1:
718PySequence_Repeat:PyObject*:o:0:
719PySequence_Repeat:int:count::
720
721PySequence_SetItem:int:::
722PySequence_SetItem:PyObject*:o:0:
723PySequence_SetItem:int:i::
724PySequence_SetItem:PyObject*:v:+1:
725
726PySequence_SetSlice:int:::
727PySequence_SetSlice:PyObject*:o:0:
728PySequence_SetSlice:int:i1::
729PySequence_SetSlice:int:i2::
730PySequence_SetSlice:PyObject*:v:+1:
731
Fred Drake1c2d06a2000-06-16 20:00:04 +0000732PySequence_List:PyObject*::+1:
733PySequence_List:PyObject*:o:0:
734
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000735PySequence_Tuple:PyObject*::+1:
736PySequence_Tuple:PyObject*:o:0:
737
738PyString_AS_STRING:char*:::
739PyString_AS_STRING:PyObject*:string:0:
740
741PyString_AsString:char*:::
742PyString_AsString:PyObject*:string:0:
743
744PyString_Check:int:::
745PyString_Check:PyObject*:o:0:
746
747PyString_Concat:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000748PyString_Concat:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000749PyString_Concat:PyObject*:newpart:0:
750
751PyString_ConcatAndDel:void:::
Fred Drake805bf1b1999-10-20 16:03:38 +0000752PyString_ConcatAndDel:PyObject**:string:0:??? -- replaces w/ new string or NULL
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000753PyString_ConcatAndDel:PyObject*:newpart:-1:
754
755PyString_Format:PyObject*::+1:
756PyString_Format:PyObject*:format:0:
757PyString_Format:PyObject*:args:0:
758
759PyString_FromString:PyObject*::+1:
760PyString_FromString:const char*:v::
761
762PyString_FromStringAndSize:PyObject*::+1:
763PyString_FromStringAndSize:const char*:v::
764PyString_FromStringAndSize:int:len::
765
766PyString_GET_SIZE:int:::
767PyString_GET_SIZE:PyObject*:string:0:
768
769PyString_InternFromString:PyObject*::+1:
770PyString_InternFromString:const char*:v::
771
772PyString_InternInPlace:void:::
773PyString_InternInPlace:PyObject**:string:+1:???
774
775PyString_Size:int:::
776PyString_Size:PyObject*:string:0:
777
Marc-André Lemburg47073202000-07-07 15:48:54 +0000778PyString_Decode:PyObject*::+1:
779PyString_Decode:const char*:s::
780PyString_Decode:int:size::
781PyString_Decode:const char*:encoding::
782PyString_Decode:const char*:errors::
783
784PyString_Encode:PyObject*::+1:
785PyString_Encode:const char*:s::
786PyString_Encode:int:size::
787PyString_Encode:const char*:encoding::
788PyString_Encode:const char*:errors::
789
790PyString_AsEncodedString:PyObject*::+1:
791PyString_AsEncodedString:PyObject*:str::
792PyString_AsEncodedString:const char*:encoding::
793PyString_AsEncodedString:const char*:errors::
794
Fred Drake7b7dc6b1999-10-20 15:06:24 +0000795PySys_SetArgv:int:::
796PySys_SetArgv:int:argc::
797PySys_SetArgv:char**:argv::
798
799PyThreadState_Clear:void:::
800PyThreadState_Clear:PyThreadState*:tstate::
801
802PyThreadState_Delete:void:::
803PyThreadState_Delete:PyThreadState*:tstate::
804
805PyThreadState_Get:PyThreadState*:::
806
807PyThreadState_New:PyThreadState*:::
808PyThreadState_New:PyInterpreterState*:interp::
809
810PyThreadState_Swap:PyThreadState*:::
811PyThreadState_Swap:PyThreadState*:tstate::
812
813PyTuple_Check:int:::
814PyTuple_Check:PyObject*:p:0:
815
816PyTuple_GET_ITEM:PyObject*::0:
817PyTuple_GET_ITEM:PyTupleObject*:p:0:
818PyTuple_GET_ITEM:int:pos::
819
820PyTuple_GetItem:PyObject*::0:
821PyTuple_GetItem:PyTupleObject*:p:0:
822PyTuple_GetItem:int:pos::
823
824PyTuple_GetSlice:PyObject*::+1:
825PyTuple_GetSlice:PyTupleObject*:p:0:
826PyTuple_GetSlice:int:low::
827PyTuple_GetSlice:int:high::
828
829PyTuple_New:PyObject*::+1:
830PyTuple_New:int:len::
831
832PyTuple_SET_ITEM:void:::
833PyTuple_SET_ITEM:PyTupleObject*:p:0:
834PyTuple_SET_ITEM:int:pos::
835PyTuple_SET_ITEM:PyObject*:o:0:
836
837PyTuple_SetItem:int:::
838PyTuple_SetItem:PyTupleObject*:p:0:
839PyTuple_SetItem:int:pos::
840PyTuple_SetItem:PyObject*:o:0:
841
842PyTuple_Size:int:::
843PyTuple_Size:PyTupleObject*:p:0:
844
Fred Drake992fe5a2000-06-16 21:04:15 +0000845PyUnicode_Check:int:::
846PyUnicode_Check:PyObject*:o:0:
847
848PyUnicode_GET_SIZE:int:::
849PyUnicode_GET_SIZE:PyObject*:o:0:
850
851PyUnicode_GET_DATA_SIZE:int:::
852PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
853
854PyUnicode_AS_UNICODE:Py_UNICODE*:::
855PyUnicode_AS_UNICODE:PyObject*:o:0:
856
857PyUnicode_AS_DATA:const char*:::
858PyUnicode_AS_DATA:PyObject*:o:0:
859
860Py_UNICODE_ISSPACE:int:::
861Py_UNICODE_ISSPACE:Py_UNICODE:ch::
862
863Py_UNICODE_ISLOWER:int:::
864Py_UNICODE_ISLOWER:Py_UNICODE:ch::
865
866Py_UNICODE_ISUPPER:int:::
867Py_UNICODE_ISUPPER:Py_UNICODE:ch::
868
869Py_UNICODE_ISTITLE:int:::
870Py_UNICODE_ISTITLE:Py_UNICODE:ch::
871
872Py_UNICODE_ISLINEBREAK:int:::
873Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
874
875Py_UNICODE_ISDECIMAL:int:::
876Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
877
878Py_UNICODE_ISDIGIT:int:::
879Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
880
881Py_UNICODE_ISNUMERIC:int:::
882Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
883
884Py_UNICODE_TOLOWER:Py_UNICODE:::
885Py_UNICODE_TOLOWER:Py_UNICODE:ch::
886
887Py_UNICODE_TOUPPER:Py_UNICODE:::
888Py_UNICODE_TOUPPER:Py_UNICODE:ch::
889
890Py_UNICODE_TOTITLE:Py_UNICODE:::
891Py_UNICODE_TOTITLE:Py_UNICODE:ch::
892
893Py_UNICODE_TODECIMAL:int:::
894Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
895
896Py_UNICODE_TODIGIT:int:::
897Py_UNICODE_TODIGIT:Py_UNICODE:ch::
898
899Py_UNICODE_TONUMERIC:double:::
900Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
901
902PyUnicode_FromUnicode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000903PyUnicode_FromUnicode:const Py_UNICODE*:u::
Fred Drake992fe5a2000-06-16 21:04:15 +0000904PyUnicode_FromUnicode:int:size::
905
906PyUnicode_AsUnicode:Py_UNICODE*:::
907PyUnicode_AsUnicode:PyObject :*unicode:0:
908
909PyUnicode_GetSize:int:::
910PyUnicode_GetSize:PyObject :*unicode:0:
911
912PyUnicode_FromObject:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000913PyUnicode_FromObject:PyObject*:*obj:0:
914
915PyUnicode_FromEncodedObject:PyObject*::+1:
916PyUnicode_FromEncodedObject:PyObject*:*obj:0:
917PyUnicode_FromEncodedObject:const char*:encoding::
918PyUnicode_FromEncodedObject:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000919
920PyUnicode_FromWideChar:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000921PyUnicode_FromWideChar:const wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +0000922PyUnicode_FromWideChar:int:size::
923
924PyUnicode_AsWideChar:int:::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000925PyUnicode_AsWideChar:PyObject*:*unicode:0:
926PyUnicode_AsWideChar:wchar_t*:w::
Fred Drake992fe5a2000-06-16 21:04:15 +0000927PyUnicode_AsWideChar:int:size::
928
929PyUnicode_Decode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000930PyUnicode_Decode:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000931PyUnicode_Decode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000932PyUnicode_Decode:const char*:encoding::
933PyUnicode_Decode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000934
935PyUnicode_Encode:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000936PyUnicode_Encode:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000937PyUnicode_Encode:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000938PyUnicode_Encode:const char*:encoding::
939PyUnicode_Encode:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000940
941PyUnicode_AsEncodedString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000942PyUnicode_AsEncodedString:PyObject*:unicode::
943PyUnicode_AsEncodedString:const char*:encoding::
944PyUnicode_AsEncodedString:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000945
946PyUnicode_DecodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000947PyUnicode_DecodeUTF8:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000948PyUnicode_DecodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000949PyUnicode_DecodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000950
951PyUnicode_EncodeUTF8:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000952PyUnicode_EncodeUTF8:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000953PyUnicode_EncodeUTF8:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000954PyUnicode_EncodeUTF8:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000955
956PyUnicode_AsUTF8String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000957PyUnicode_AsUTF8String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +0000958
959PyUnicode_DecodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000960PyUnicode_DecodeUTF16:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000961PyUnicode_DecodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000962PyUnicode_DecodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000963PyUnicode_DecodeUTF16:int*:byteorder::
964
965PyUnicode_EncodeUTF16:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000966PyUnicode_EncodeUTF16:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000967PyUnicode_EncodeUTF16:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000968PyUnicode_EncodeUTF16:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000969PyUnicode_EncodeUTF16:int:byteorder::
970
971PyUnicode_AsUTF16String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000972PyUnicode_AsUTF16String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +0000973
974PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000975PyUnicode_DecodeUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000976PyUnicode_DecodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000977PyUnicode_DecodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000978
979PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000980PyUnicode_EncodeUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000981PyUnicode_EncodeUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000982PyUnicode_EncodeUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000983
984PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000985PyUnicode_AsUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +0000986
987PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000988PyUnicode_DecodeRawUnicodeEscape:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000989PyUnicode_DecodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000990PyUnicode_DecodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000991
992PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000993PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +0000994PyUnicode_EncodeRawUnicodeEscape:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +0000995PyUnicode_EncodeRawUnicodeEscape:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +0000996
997PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +0000998PyUnicode_AsRawUnicodeEscapeString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +0000999
1000PyUnicode_DecodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001001PyUnicode_DecodeLatin1:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001002PyUnicode_DecodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001003PyUnicode_DecodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001004
1005PyUnicode_EncodeLatin1:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001006PyUnicode_EncodeLatin1:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001007PyUnicode_EncodeLatin1:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001008PyUnicode_EncodeLatin1:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001009
1010PyUnicode_AsLatin1String:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001011PyUnicode_AsLatin1String:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001012
1013PyUnicode_DecodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001014PyUnicode_DecodeASCII:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001015PyUnicode_DecodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001016PyUnicode_DecodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001017
1018PyUnicode_EncodeASCII:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001019PyUnicode_EncodeASCII:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001020PyUnicode_EncodeASCII:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001021PyUnicode_EncodeASCII:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001022
1023PyUnicode_AsASCIIString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001024PyUnicode_AsASCIIString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001025
1026PyUnicode_DecodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001027PyUnicode_DecodeCharmap:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001028PyUnicode_DecodeCharmap:int:size::
1029PyUnicode_DecodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001030PyUnicode_DecodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001031
1032PyUnicode_EncodeCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001033PyUnicode_EncodeCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001034PyUnicode_EncodeCharmap:int:size::
1035PyUnicode_EncodeCharmap:PyObject*:mapping:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001036PyUnicode_EncodeCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001037
1038PyUnicode_AsCharmapString:PyObject*::+1:
1039PyUnicode_AsCharmapString:PyObject*:unicode:0:
1040PyUnicode_AsCharmapString:PyObject*:mapping:0:
1041
1042PyUnicode_TranslateCharmap:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001043PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001044PyUnicode_TranslateCharmap:int:size::
1045PyUnicode_TranslateCharmap:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001046PyUnicode_TranslateCharmap:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001047
1048PyUnicode_DecodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001049PyUnicode_DecodeMBCS:const char*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001050PyUnicode_DecodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001051PyUnicode_DecodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001052
1053PyUnicode_EncodeMBCS:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001054PyUnicode_EncodeMBCS:const Py_UNICODE*:s::
Fred Drake992fe5a2000-06-16 21:04:15 +00001055PyUnicode_EncodeMBCS:int:size::
Marc-André Lemburg47073202000-07-07 15:48:54 +00001056PyUnicode_EncodeMBCS:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001057
1058PyUnicode_AsMBCSString:PyObject*::+1:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001059PyUnicode_AsMBCSString:PyObject*:unicode::
Fred Drake992fe5a2000-06-16 21:04:15 +00001060
1061PyUnicode_Concat:PyObject*::+1:
1062PyUnicode_Concat:PyObject*:left:0:
1063PyUnicode_Concat:PyObject*:right:0:
1064
1065PyUnicode_Split:PyObject*::+1:
1066PyUnicode_Split:PyObject*:left:0:
1067PyUnicode_Split:PyObject*:right:0:
1068PyUnicode_Split:int:maxsplit::
1069
1070PyUnicode_Splitlines:PyObject*::+1:
1071PyUnicode_Splitlines:PyObject*:s:0:
1072PyUnicode_Splitlines:int:maxsplit::
1073
1074PyUnicode_Translate:PyObject*::+1:
1075PyUnicode_Translate:PyObject*:str:0:
1076PyUnicode_Translate:PyObject*:table:0:
Marc-André Lemburg47073202000-07-07 15:48:54 +00001077PyUnicode_Translate:const char*:errors::
Fred Drake992fe5a2000-06-16 21:04:15 +00001078
1079PyUnicode_Join:PyObject*::+1:
1080PyUnicode_Join:PyObject*:separator:0:
1081PyUnicode_Join:PyObject*:seq:0:
1082
1083PyUnicode_Tailmatch:PyObject*::+1:
1084PyUnicode_Tailmatch:PyObject*:str:0:
1085PyUnicode_Tailmatch:PyObject*:substr:0:
1086PyUnicode_Tailmatch:int:start::
1087PyUnicode_Tailmatch:int:end::
1088PyUnicode_Tailmatch:int:direction::
1089
1090PyUnicode_Find:PyObject*::+1:
1091PyUnicode_Find:PyObject*:str:0:
1092PyUnicode_Find:PyObject*:substr:0:
1093PyUnicode_Find:int:start::
1094PyUnicode_Find:int:end::
1095PyUnicode_Find:int:direction::
1096
1097PyUnicode_Count:PyObject*::+1:
1098PyUnicode_Count:PyObject*:str:0:
1099PyUnicode_Count:PyObject*:substr:0:
1100PyUnicode_Count:int:start::
1101PyUnicode_Count:int:end::
1102
1103PyUnicode_Replace:PyObject*::+1:
1104PyUnicode_Replace:PyObject*:str:0:
1105PyUnicode_Replace:PyObject*:substr:0:
1106PyUnicode_Replace:PyObject*:replstr:0:
1107PyUnicode_Replace:int:maxcount::
1108
1109PyUnicode_Compare:int:::
1110PyUnicode_Compare:PyObject*:left:0:
1111PyUnicode_Compare:PyObject*:right:0:
1112
1113PyUnicode_Format:PyObject*::+1:
1114PyUnicode_Format:PyObject*:format:0:
1115PyUnicode_Format:PyObject*:args:0:
1116
1117PyUnicode_Contains:int:::
1118PyUnicode_Contains:PyObject*:container:0:
1119PyUnicode_Contains:PyObject*:element:0:
1120
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001121Py_AtExit:int:::
1122Py_AtExit:void (*)():func::
1123
1124Py_CompileString:PyObject*::+1:
1125Py_CompileString:char*:str::
1126Py_CompileString:char*:filename::
1127Py_CompileString:int:start::
1128
1129Py_DECREF:void:::
1130Py_DECREF:PyObject*:o:-1:
1131
1132Py_EndInterpreter:void:::
1133Py_EndInterpreter:PyThreadState*:tstate::
1134
1135Py_Exit:void:::
1136Py_Exit:int:status::
1137
1138Py_FatalError:void:::
1139Py_FatalError:char*:message::
1140
1141Py_FdIsInteractive:int:::
1142Py_FdIsInteractive:FILE*:fp::
1143Py_FdIsInteractive:char*:filename::
1144
1145Py_Finalize:void:::
1146
Fred Drake8520cc22000-04-10 19:38:24 +00001147Py_FindMethod:PyObject*::+1:
1148Py_FindMethod:PyMethodDef[]:methods::
1149Py_FindMethod:PyObject*:self:+1:
1150Py_FindMethod:char*:name::
1151
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001152Py_GetBuildInfoconst:char*:::
1153
1154Py_GetCompilerconst:char*:::
1155
1156Py_GetCopyrightconst:char*:::
1157
1158Py_GetExecPrefix:char*:::
1159
1160Py_GetPath:char*:::
1161
1162Py_GetPlatformconst:char*:::
1163
1164Py_GetPrefix:char*:::
1165
1166Py_GetProgramFullPath:char*:::
1167
1168Py_GetProgramName:char*:::
1169
1170Py_GetVersionconst:char*:::
1171
1172Py_INCREF:void:::
1173Py_INCREF:PyObject*:o:+1:
1174
1175Py_Initialize:void:::
1176
1177Py_IsInitialized:int:::
1178
1179Py_NewInterpreter:PyThreadState*:::
1180
1181Py_SetProgramName:void:::
1182Py_SetProgramName:char*:name::
1183
1184Py_XDECREF:void:::
1185Py_XDECREF:PyObject*:o:-1:if o is not NULL
1186
1187Py_XINCREF:void:::
1188Py_XINCREF:PyObject*:o:+1:if o is not NULL
1189
1190_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1191_PyImport_FindExtension:char*:::
1192_PyImport_FindExtension:char*:::
1193
1194_PyImport_Fini:void:::
1195
1196_PyImport_FixupExtension:PyObject*:::???
1197_PyImport_FixupExtension:char*:::
1198_PyImport_FixupExtension:char*:::
1199
1200_PyImport_Init:void:::
1201
1202_PyObject_New:PyObject*::+1:
1203_PyObject_New:PyTypeObject*:type:0:
1204
1205_PyObject_NewVar:PyObject*::+1:
1206_PyObject_NewVar:PyTypeObject*:type:0:
1207_PyObject_NewVar:int:size::
1208
1209_PyString_Resize:int:::
1210_PyString_Resize:PyObject**:string:+1:
1211_PyString_Resize:int:newsize::
1212
1213_PyTuple_Resize:int:::
1214_PyTuple_Resize:PyTupleObject**:p:+1:
1215_PyTuple_Resize:int:new::
1216_PyTuple_Resize:int:last_is_sticky::
1217
1218_Py_c_diff:Py_complex:::
1219_Py_c_diff:Py_complex:left::
1220_Py_c_diff:Py_complex:right::
1221
1222_Py_c_neg:Py_complex:::
1223_Py_c_neg:Py_complex:complex::
1224
1225_Py_c_pow:Py_complex:::
1226_Py_c_pow:Py_complex:num::
1227_Py_c_pow:Py_complex:exp::
1228
1229_Py_c_prod:Py_complex:::
1230_Py_c_prod:Py_complex:left::
1231_Py_c_prod:Py_complex:right::
1232
1233_Py_c_quot:Py_complex:::
1234_Py_c_quot:Py_complex:dividend::
1235_Py_c_quot:Py_complex:divisor::
1236
1237_Py_c_sum:Py_complex:::
1238_Py_c_sum:Py_complex:left::
1239_Py_c_sum:Py_complex:right::