blob: 2db4b4452494f8764077f7bb0ba40db46976fa80 [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
775PySys_SetArgv:int:::
776PySys_SetArgv:int:argc::
777PySys_SetArgv:char**:argv::
778
779PyThreadState_Clear:void:::
780PyThreadState_Clear:PyThreadState*:tstate::
781
782PyThreadState_Delete:void:::
783PyThreadState_Delete:PyThreadState*:tstate::
784
785PyThreadState_Get:PyThreadState*:::
786
787PyThreadState_New:PyThreadState*:::
788PyThreadState_New:PyInterpreterState*:interp::
789
790PyThreadState_Swap:PyThreadState*:::
791PyThreadState_Swap:PyThreadState*:tstate::
792
793PyTuple_Check:int:::
794PyTuple_Check:PyObject*:p:0:
795
796PyTuple_GET_ITEM:PyObject*::0:
797PyTuple_GET_ITEM:PyTupleObject*:p:0:
798PyTuple_GET_ITEM:int:pos::
799
800PyTuple_GetItem:PyObject*::0:
801PyTuple_GetItem:PyTupleObject*:p:0:
802PyTuple_GetItem:int:pos::
803
804PyTuple_GetSlice:PyObject*::+1:
805PyTuple_GetSlice:PyTupleObject*:p:0:
806PyTuple_GetSlice:int:low::
807PyTuple_GetSlice:int:high::
808
809PyTuple_New:PyObject*::+1:
810PyTuple_New:int:len::
811
812PyTuple_SET_ITEM:void:::
813PyTuple_SET_ITEM:PyTupleObject*:p:0:
814PyTuple_SET_ITEM:int:pos::
815PyTuple_SET_ITEM:PyObject*:o:0:
816
817PyTuple_SetItem:int:::
818PyTuple_SetItem:PyTupleObject*:p:0:
819PyTuple_SetItem:int:pos::
820PyTuple_SetItem:PyObject*:o:0:
821
822PyTuple_Size:int:::
823PyTuple_Size:PyTupleObject*:p:0:
824
Fred Drake992fe5a2000-06-16 21:04:15 +0000825PyUnicode_Check:int:::
826PyUnicode_Check:PyObject*:o:0:
827
828PyUnicode_GET_SIZE:int:::
829PyUnicode_GET_SIZE:PyObject*:o:0:
830
831PyUnicode_GET_DATA_SIZE:int:::
832PyUnicode_GET_DATA_SIZE:PyObject*:o:0:
833
834PyUnicode_AS_UNICODE:Py_UNICODE*:::
835PyUnicode_AS_UNICODE:PyObject*:o:0:
836
837PyUnicode_AS_DATA:const char*:::
838PyUnicode_AS_DATA:PyObject*:o:0:
839
840Py_UNICODE_ISSPACE:int:::
841Py_UNICODE_ISSPACE:Py_UNICODE:ch::
842
843Py_UNICODE_ISLOWER:int:::
844Py_UNICODE_ISLOWER:Py_UNICODE:ch::
845
846Py_UNICODE_ISUPPER:int:::
847Py_UNICODE_ISUPPER:Py_UNICODE:ch::
848
849Py_UNICODE_ISTITLE:int:::
850Py_UNICODE_ISTITLE:Py_UNICODE:ch::
851
852Py_UNICODE_ISLINEBREAK:int:::
853Py_UNICODE_ISLINEBREAK:Py_UNICODE:ch::
854
855Py_UNICODE_ISDECIMAL:int:::
856Py_UNICODE_ISDECIMAL:Py_UNICODE:ch::
857
858Py_UNICODE_ISDIGIT:int:::
859Py_UNICODE_ISDIGIT:Py_UNICODE:ch::
860
861Py_UNICODE_ISNUMERIC:int:::
862Py_UNICODE_ISNUMERIC:Py_UNICODE:ch::
863
864Py_UNICODE_TOLOWER:Py_UNICODE:::
865Py_UNICODE_TOLOWER:Py_UNICODE:ch::
866
867Py_UNICODE_TOUPPER:Py_UNICODE:::
868Py_UNICODE_TOUPPER:Py_UNICODE:ch::
869
870Py_UNICODE_TOTITLE:Py_UNICODE:::
871Py_UNICODE_TOTITLE:Py_UNICODE:ch::
872
873Py_UNICODE_TODECIMAL:int:::
874Py_UNICODE_TODECIMAL:Py_UNICODE:ch::
875
876Py_UNICODE_TODIGIT:int:::
877Py_UNICODE_TODIGIT:Py_UNICODE:ch::
878
879Py_UNICODE_TONUMERIC:double:::
880Py_UNICODE_TONUMERIC:Py_UNICODE:ch::
881
882PyUnicode_FromUnicode:PyObject*::+1:
883PyUnicode_FromUnicode:const Py_UNICODE *:u::
884PyUnicode_FromUnicode:int:size::
885
886PyUnicode_AsUnicode:Py_UNICODE*:::
887PyUnicode_AsUnicode:PyObject :*unicode:0:
888
889PyUnicode_GetSize:int:::
890PyUnicode_GetSize:PyObject :*unicode:0:
891
892PyUnicode_FromObject:PyObject*::+1:
893PyUnicode_FromObject:PyObject :*obj:0:
894
895PyUnicode_FromWideChar:PyObject*::+1:
896PyUnicode_FromWideChar:const wchar_t *:w::
897PyUnicode_FromWideChar:int:size::
898
899PyUnicode_AsWideChar:int:::
900PyUnicode_AsWideChar:PyObject :*unicode:0:
901PyUnicode_AsWideChar:wchar_t *:w::
902PyUnicode_AsWideChar:int:size::
903
904PyUnicode_Decode:PyObject*::+1:
905PyUnicode_Decode:const char *:s::
906PyUnicode_Decode:int:size::
907PyUnicode_Decode:const char *:encoding::
908PyUnicode_Decode:const char *:errors::
909
910PyUnicode_Encode:PyObject*::+1:
911PyUnicode_Encode:const Py_UNICODE *:s::
912PyUnicode_Encode:int:size::
913PyUnicode_Encode:const char *:encoding::
914PyUnicode_Encode:const char *:errors::
915
916PyUnicode_AsEncodedString:PyObject*::+1:
917PyUnicode_AsEncodedString:PyObject *:unicode::
918PyUnicode_AsEncodedString:const char *:encoding::
919PyUnicode_AsEncodedString:const char *:errors::
920
921PyUnicode_DecodeUTF8:PyObject*::+1:
922PyUnicode_DecodeUTF8:const char *:s::
923PyUnicode_DecodeUTF8:int:size::
924PyUnicode_DecodeUTF8:const char *:errors::
925
926PyUnicode_EncodeUTF8:PyObject*::+1:
927PyUnicode_EncodeUTF8:const Py_UNICODE *:s::
928PyUnicode_EncodeUTF8:int:size::
929PyUnicode_EncodeUTF8:const char *:errors::
930
931PyUnicode_AsUTF8String:PyObject*::+1:
932PyUnicode_AsUTF8String:PyObject *:unicode::
933
934PyUnicode_DecodeUTF16:PyObject*::+1:
935PyUnicode_DecodeUTF16:const char *:s::
936PyUnicode_DecodeUTF16:int:size::
937PyUnicode_DecodeUTF16:const char *:errors::
938PyUnicode_DecodeUTF16:int*:byteorder::
939
940PyUnicode_EncodeUTF16:PyObject*::+1:
941PyUnicode_EncodeUTF16:const Py_UNICODE *:s::
942PyUnicode_EncodeUTF16:int:size::
943PyUnicode_EncodeUTF16:const char *:errors::
944PyUnicode_EncodeUTF16:int:byteorder::
945
946PyUnicode_AsUTF16String:PyObject*::+1:
947PyUnicode_AsUTF16String:PyObject *:unicode::
948
949PyUnicode_DecodeUnicodeEscape:PyObject*::+1:
950PyUnicode_DecodeUnicodeEscape:const char *:s::
951PyUnicode_DecodeUnicodeEscape:int:size::
952PyUnicode_DecodeUnicodeEscape:const char *:errors::
953
954PyUnicode_EncodeUnicodeEscape:PyObject*::+1:
955PyUnicode_EncodeUnicodeEscape:const Py_UNICODE *:s::
956PyUnicode_EncodeUnicodeEscape:int:size::
957PyUnicode_EncodeUnicodeEscape:const char *:errors::
958
959PyUnicode_AsUnicodeEscapeString:PyObject*::+1:
960PyUnicode_AsUnicodeEscapeString:PyObject *:unicode::
961
962PyUnicode_DecodeRawUnicodeEscape:PyObject*::+1:
963PyUnicode_DecodeRawUnicodeEscape:const char *:s::
964PyUnicode_DecodeRawUnicodeEscape:int:size::
965PyUnicode_DecodeRawUnicodeEscape:const char *:errors::
966
967PyUnicode_EncodeRawUnicodeEscape:PyObject*::+1:
968PyUnicode_EncodeRawUnicodeEscape:const Py_UNICODE *:s::
969PyUnicode_EncodeRawUnicodeEscape:int:size::
970PyUnicode_EncodeRawUnicodeEscape:const char *:errors::
971
972PyUnicode_AsRawUnicodeEscapeString:PyObject*::+1:
973PyUnicode_AsRawUnicodeEscapeString:PyObject *:unicode::
974
975PyUnicode_DecodeLatin1:PyObject*::+1:
976PyUnicode_DecodeLatin1:const char *:s::
977PyUnicode_DecodeLatin1:int:size::
978PyUnicode_DecodeLatin1:const char *:errors::
979
980PyUnicode_EncodeLatin1:PyObject*::+1:
981PyUnicode_EncodeLatin1:const Py_UNICODE *:s::
982PyUnicode_EncodeLatin1:int:size::
983PyUnicode_EncodeLatin1:const char *:errors::
984
985PyUnicode_AsLatin1String:PyObject*::+1:
986PyUnicode_AsLatin1String:PyObject *:unicode::
987
988PyUnicode_DecodeASCII:PyObject*::+1:
989PyUnicode_DecodeASCII:const char *:s::
990PyUnicode_DecodeASCII:int:size::
991PyUnicode_DecodeASCII:const char *:errors::
992
993PyUnicode_EncodeASCII:PyObject*::+1:
994PyUnicode_EncodeASCII:const Py_UNICODE *:s::
995PyUnicode_EncodeASCII:int:size::
996PyUnicode_EncodeASCII:const char *:errors::
997
998PyUnicode_AsASCIIString:PyObject*::+1:
999PyUnicode_AsASCIIString:PyObject *:unicode::
1000
1001PyUnicode_DecodeCharmap:PyObject*::+1:
1002PyUnicode_DecodeCharmap:const char *:s::
1003PyUnicode_DecodeCharmap:int:size::
1004PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1005PyUnicode_DecodeCharmap:const char *:errors::
1006
1007PyUnicode_EncodeCharmap:PyObject*::+1:
1008PyUnicode_EncodeCharmap:const Py_UNICODE *:s::
1009PyUnicode_EncodeCharmap:int:size::
1010PyUnicode_EncodeCharmap:PyObject*:mapping:0:
1011PyUnicode_EncodeCharmap:const char *:errors::
1012
1013PyUnicode_AsCharmapString:PyObject*::+1:
1014PyUnicode_AsCharmapString:PyObject*:unicode:0:
1015PyUnicode_AsCharmapString:PyObject*:mapping:0:
1016
1017PyUnicode_TranslateCharmap:PyObject*::+1:
1018PyUnicode_TranslateCharmap:const Py_UNICODE *:s::
1019PyUnicode_TranslateCharmap:int:size::
1020PyUnicode_TranslateCharmap:PyObject*:table:0:
1021PyUnicode_TranslateCharmap:const char *:errors::
1022
1023PyUnicode_DecodeMBCS:PyObject*::+1:
1024PyUnicode_DecodeMBCS:const char *:s::
1025PyUnicode_DecodeMBCS:int:size::
1026PyUnicode_DecodeMBCS:const char *:errors::
1027
1028PyUnicode_EncodeMBCS:PyObject*::+1:
1029PyUnicode_EncodeMBCS:const Py_UNICODE *:s::
1030PyUnicode_EncodeMBCS:int:size::
1031PyUnicode_EncodeMBCS:const char *:errors::
1032
1033PyUnicode_AsMBCSString:PyObject*::+1:
1034PyUnicode_AsMBCSString:PyObject *:unicode::
1035
1036PyUnicode_Concat:PyObject*::+1:
1037PyUnicode_Concat:PyObject*:left:0:
1038PyUnicode_Concat:PyObject*:right:0:
1039
1040PyUnicode_Split:PyObject*::+1:
1041PyUnicode_Split:PyObject*:left:0:
1042PyUnicode_Split:PyObject*:right:0:
1043PyUnicode_Split:int:maxsplit::
1044
1045PyUnicode_Splitlines:PyObject*::+1:
1046PyUnicode_Splitlines:PyObject*:s:0:
1047PyUnicode_Splitlines:int:maxsplit::
1048
1049PyUnicode_Translate:PyObject*::+1:
1050PyUnicode_Translate:PyObject*:str:0:
1051PyUnicode_Translate:PyObject*:table:0:
1052PyUnicode_Translate:const char *:errors::
1053
1054PyUnicode_Join:PyObject*::+1:
1055PyUnicode_Join:PyObject*:separator:0:
1056PyUnicode_Join:PyObject*:seq:0:
1057
1058PyUnicode_Tailmatch:PyObject*::+1:
1059PyUnicode_Tailmatch:PyObject*:str:0:
1060PyUnicode_Tailmatch:PyObject*:substr:0:
1061PyUnicode_Tailmatch:int:start::
1062PyUnicode_Tailmatch:int:end::
1063PyUnicode_Tailmatch:int:direction::
1064
1065PyUnicode_Find:PyObject*::+1:
1066PyUnicode_Find:PyObject*:str:0:
1067PyUnicode_Find:PyObject*:substr:0:
1068PyUnicode_Find:int:start::
1069PyUnicode_Find:int:end::
1070PyUnicode_Find:int:direction::
1071
1072PyUnicode_Count:PyObject*::+1:
1073PyUnicode_Count:PyObject*:str:0:
1074PyUnicode_Count:PyObject*:substr:0:
1075PyUnicode_Count:int:start::
1076PyUnicode_Count:int:end::
1077
1078PyUnicode_Replace:PyObject*::+1:
1079PyUnicode_Replace:PyObject*:str:0:
1080PyUnicode_Replace:PyObject*:substr:0:
1081PyUnicode_Replace:PyObject*:replstr:0:
1082PyUnicode_Replace:int:maxcount::
1083
1084PyUnicode_Compare:int:::
1085PyUnicode_Compare:PyObject*:left:0:
1086PyUnicode_Compare:PyObject*:right:0:
1087
1088PyUnicode_Format:PyObject*::+1:
1089PyUnicode_Format:PyObject*:format:0:
1090PyUnicode_Format:PyObject*:args:0:
1091
1092PyUnicode_Contains:int:::
1093PyUnicode_Contains:PyObject*:container:0:
1094PyUnicode_Contains:PyObject*:element:0:
1095
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001096Py_AtExit:int:::
1097Py_AtExit:void (*)():func::
1098
1099Py_CompileString:PyObject*::+1:
1100Py_CompileString:char*:str::
1101Py_CompileString:char*:filename::
1102Py_CompileString:int:start::
1103
1104Py_DECREF:void:::
1105Py_DECREF:PyObject*:o:-1:
1106
1107Py_EndInterpreter:void:::
1108Py_EndInterpreter:PyThreadState*:tstate::
1109
1110Py_Exit:void:::
1111Py_Exit:int:status::
1112
1113Py_FatalError:void:::
1114Py_FatalError:char*:message::
1115
1116Py_FdIsInteractive:int:::
1117Py_FdIsInteractive:FILE*:fp::
1118Py_FdIsInteractive:char*:filename::
1119
1120Py_Finalize:void:::
1121
Fred Drake8520cc22000-04-10 19:38:24 +00001122Py_FindMethod:PyObject*::+1:
1123Py_FindMethod:PyMethodDef[]:methods::
1124Py_FindMethod:PyObject*:self:+1:
1125Py_FindMethod:char*:name::
1126
Fred Drake7b7dc6b1999-10-20 15:06:24 +00001127Py_GetBuildInfoconst:char*:::
1128
1129Py_GetCompilerconst:char*:::
1130
1131Py_GetCopyrightconst:char*:::
1132
1133Py_GetExecPrefix:char*:::
1134
1135Py_GetPath:char*:::
1136
1137Py_GetPlatformconst:char*:::
1138
1139Py_GetPrefix:char*:::
1140
1141Py_GetProgramFullPath:char*:::
1142
1143Py_GetProgramName:char*:::
1144
1145Py_GetVersionconst:char*:::
1146
1147Py_INCREF:void:::
1148Py_INCREF:PyObject*:o:+1:
1149
1150Py_Initialize:void:::
1151
1152Py_IsInitialized:int:::
1153
1154Py_NewInterpreter:PyThreadState*:::
1155
1156Py_SetProgramName:void:::
1157Py_SetProgramName:char*:name::
1158
1159Py_XDECREF:void:::
1160Py_XDECREF:PyObject*:o:-1:if o is not NULL
1161
1162Py_XINCREF:void:::
1163Py_XINCREF:PyObject*:o:+1:if o is not NULL
1164
1165_PyImport_FindExtension:PyObject*::0:??? see PyImport_AddModule
1166_PyImport_FindExtension:char*:::
1167_PyImport_FindExtension:char*:::
1168
1169_PyImport_Fini:void:::
1170
1171_PyImport_FixupExtension:PyObject*:::???
1172_PyImport_FixupExtension:char*:::
1173_PyImport_FixupExtension:char*:::
1174
1175_PyImport_Init:void:::
1176
1177_PyObject_New:PyObject*::+1:
1178_PyObject_New:PyTypeObject*:type:0:
1179
1180_PyObject_NewVar:PyObject*::+1:
1181_PyObject_NewVar:PyTypeObject*:type:0:
1182_PyObject_NewVar:int:size::
1183
1184_PyString_Resize:int:::
1185_PyString_Resize:PyObject**:string:+1:
1186_PyString_Resize:int:newsize::
1187
1188_PyTuple_Resize:int:::
1189_PyTuple_Resize:PyTupleObject**:p:+1:
1190_PyTuple_Resize:int:new::
1191_PyTuple_Resize:int:last_is_sticky::
1192
1193_Py_c_diff:Py_complex:::
1194_Py_c_diff:Py_complex:left::
1195_Py_c_diff:Py_complex:right::
1196
1197_Py_c_neg:Py_complex:::
1198_Py_c_neg:Py_complex:complex::
1199
1200_Py_c_pow:Py_complex:::
1201_Py_c_pow:Py_complex:num::
1202_Py_c_pow:Py_complex:exp::
1203
1204_Py_c_prod:Py_complex:::
1205_Py_c_prod:Py_complex:left::
1206_Py_c_prod:Py_complex:right::
1207
1208_Py_c_quot:Py_complex:::
1209_Py_c_quot:Py_complex:dividend::
1210_Py_c_quot:Py_complex:divisor::
1211
1212_Py_c_sum:Py_complex:::
1213_Py_c_sum:Py_complex:left::
1214_Py_c_sum:Py_complex:right::