blob: fe13dbe6eada62e0f0acb202c2e2c6ab030681d0 [file] [log] [blame]
Guido van Rossumd19828d1996-07-30 18:02:59 +00001struct methodlist PyMethodDef
2struct methodchain PyMethodChain
3
4True Py_True
5False Py_False
6None Py_None
7
Guido van Rossumd19828d1996-07-30 18:02:59 +00008methodlist PyMethodDef
9methodchain PyMethodChain
10
11Accesstype PyAccess_Type
12is_accessobject PyAccess_Check
13newaccessobject PyAccess_FromValue
14getaccessvalue PyAccess_AsValue
15setaccessvalue PyAccess_SetValue
16setaccessowner PyAccess_SetOwner
17cloneaccessobject PyAccess_Clone
18hasaccessvalue PyAccess_HasValue
19Anynumbertype PyAnyNumber_Type
20Anysequencetype PyAnySequence_Type
21Anymappingtype PyAnyMapping_Type
22
23FalseObject _Py_ZeroStruct
24NoObject _Py_NoneStruct
25TrueObject _Py_TrueStruct
26debugging Py_DebugFlag
27gram _PyParser_Grammar
28sys_profile _PySys_ProfileFunc
29sys_trace _PySys_TraceFunc
30sys_checkinterval _PySys_CheckInterval
31threads_started _PyThread_Started
32tok_name _PyParser_TokenNames
33verbose Py_VerboseFlag
34suppress_print Py_SuppressPrintingFlag
35AccessError PyExc_AccessError
36AttributeError PyExc_AttributeError
37ConflictError PyExc_ConflictError
38EOFError PyExc_EOFError
Guido van Rossumb6a7f771997-05-09 03:03:23 +000039FloatingPointError PyExc_FloatingPointError
Guido van Rossumd19828d1996-07-30 18:02:59 +000040IOError PyExc_IOError
41ImportError PyExc_ImportError
42IndexError PyExc_IndexError
43KeyError PyExc_KeyError
44MemoryError PyExc_MemoryError
45NameError PyExc_NameError
46OverflowError PyExc_OverflowError
47RuntimeError PyExc_RuntimeError
48SyntaxError PyExc_SyntaxError
49SystemError PyExc_SystemError
50TypeError PyExc_TypeError
51ValueError PyExc_ValueError
52ZeroDivisionError PyExc_ZeroDivisionError
53KeyboardInterrupt PyExc_KeyboardInterrupt
54SystemExit PyExc_SystemExit
55Floattype PyFloat_Type
56Complextype PyComplex_Type
57Inttype PyInt_Type
58Longtype PyLong_Type
59Notype PyNothing_Type
60Stringtype PyString_Type
61Typetype PyType_Type
62Listtype PyList_Type
63Dicttype PyDict_Type
64Mappingtype PyDict_Type
65Tupletype PyTuple_Type
66Filetype PyFile_Type
67Classtype PyClass_Type
68Functype PyFunction_Type
69Instancemethodtype PyMethod_Type
70Instancetype PyInstance_Type
71Methodtype PyCFunction_Type
72Moduletype PyModule_Type
73Codetype PyCode_Type
74Frametype PyFrame_Type
75Rangetype PyRange_Type
76floatobject PyFloatObject
77complexobject PyComplexObject
78intobject PyIntObject
79longobject PyLongObject
80noobject PyNothingObject
81object PyObject
82stringobject PyStringObject
83typeobject PyTypeObject
84listobject PyListObject
85dictobject PyDictObject
86tupleobject PyTupleObject
87fileobject PyFileObject
88classobject PyClassObject
89codeobject PyCodeObject
90frameobject PyFrameObject
91funcobject PyFunctionObject
92instancemethodobject PyMethodObject
93instanceobject PyInstanceObject
94methodobject PyCFunctionObject
95moduleobject PyModuleObject
96number_methods PyNumberMethods
97sequence_methods PySequenceMethods
98mapping_methods PyMappingMethods
99OB_HEAD PyObject_HEAD
100OB_VARHEAD PyObject_VAR_HEAD
101OB_HEAD_INIT PyObject_HEAD_INIT
102NEWOBJ PyObject_NEW
103NEWVAROBJ PyObject_NEW_VAR
104PROTO Py_PROTO
105FPROTO Py_FPROTO
106NEW PyMem_NEW
107RESIZE PyMem_RESIZE
108DEL PyMem_DEL
109XDEL PyMem_XDEL
110BGN_SAVE Py_BEGIN_ALLOW_THREADS
111RET_SAVE Py_BLOCK_THREADS
112RES_SAVE Py_UNBLOCK_THREADS
113END_SAVE Py_END_ALLOW_THREADS
114callable PyCallable_Check
115is_floatobject PyFloat_Check
116is_complexobject PyComplex_Check
117is_intobject PyInt_Check
118is_longobject PyLong_Check
119is_stringobject PyString_Check
120is_typeobject PyType_Check
121is_listobject PyList_Check
122is_dictobject PyDict_Check
123is_mappingobject PyDict_Check
124is_tupleobject PyTuple_Check
125is_fileobject PyFile_Check
126is_classobject PyClass_Check
127is_codeobject PyCode_Check
128is_frameobject PyFrame_Check
129is_funcobject PyFunction_Check
130is_instancemethodobject PyMethod_Check
131is_instanceobject PyInstance_Check
132is_methodobject PyCFunction_Check
133is_moduleobject PyModule_Check
134INCREF Py_INCREF
135DECREF Py_DECREF
136XINCREF Py_XINCREF
137XDECREF Py_XDECREF
138NEWREF _Py_NewReference
139DELREF _Py_Dealloc
140UNREF _Py_ForgetReference
141cmpobject PyObject_Compare
142getattr PyObject_GetAttrString
143getattro PyObject_GetAttr
144hasattr PyObject_HasAttrString
145hasattro PyObject_HasAttr
146hashobject PyObject_Hash
147newobject _PyObject_New
148newvarobject _PyObject_NewVar
149printobject PyObject_Print
150reprobject PyObject_Repr
151strobject PyObject_Str
152setattr PyObject_SetAttrString
153setattro PyObject_SetAttr
154testbool PyObject_IsTrue
155PRINT_RAW Py_PRINT_RAW
156float_buf_repr PyFloat_AsString
157getfloatvalue PyFloat_AsDouble
158GETFLOATVALUE PyFloat_AS_DOUBLE
159newfloatobject PyFloat_FromDouble
160newcomplexobject PyComplex_FromCComplex
161getintvalue PyInt_AsLong
162GETINTVALUE PyInt_AS_LONG
163getmaxint PyInt_GetMax
164newintobject PyInt_FromLong
165alloclongobject _PyLong_New
166dgetlongvalue PyLong_AsDouble
167dnewlongobject PyLong_FromDouble
168getlongvalue PyLong_AsLong
169long_escan PyLong_FromString
170newlongobject PyLong_FromLong
171formatstring PyString_Format
172getstringsize PyString_Size
173getstringvalue PyString_AsString
174GETSTRINGVALUE PyString_AS_STRING
175joinstring PyString_Concat
176joinstring_decref PyString_ConcatAndDel
177newsizedstringobject PyString_FromStringAndSize
178newstringobject PyString_FromString
179resizestring _PyString_Resize
180addlistitem PyList_Append
181getlistitem PyList_GetItem
182GETLISTITEM PyList_GET_ITEM
183getlistsize PyList_Size
184getlistslice PyList_GetSlice
185inslistitem PyList_Insert
186newlistobject PyList_New
187setlistitem PyList_SetItem
188setlistslice PyList_SetSlice
189sortlist PyList_Sort
190reverselist PyList_Reverse
191listtuple PyList_AsTuple
192dictinsert PyDict_SetItemString
193dictlookup PyDict_GetItemString
194dictremove PyDict_DelItemString
195getmappingitems PyDict_Items
196getdictitems PyDict_Items
197getmappingkeys PyDict_Keys
198getdictkeys PyDict_Keys
199getmappingvalues PyDict_Values
200getdictvalues PyDict_Values
201getmappingsize PyDict_Size
202getdictsize PyDict_Size
203mappingclear PyDict_Clear
204mappinggetnext PyDict_Next
205mappinginsert PyDict_SetItem
206dict2insert PyDict_SetItem
207mappinglookup PyDict_GetItem
208dict2lookup PyDict_GetItem
209mappingremove PyDict_DelItem
210dict2remove PyDict_DelItem
211newmappingobject PyDict_New
212newdictobject PyDict_New
213gettupleitem PyTuple_GetItem
214GETTUPLEITEM PyTuple_GET_ITEM
215SETTUPLEITEM PyTuple_SET_ITEM
216gettuplesize PyTuple_Size
217gettupleslice PyTuple_GetSlice
218newtupleobject PyTuple_New
219settupleitem PyTuple_SetItem
220resizetuple _PyTuple_Resize
221filegetline PyFile_GetLine
222getfilefile PyFile_AsFile
223getfilename PyFile_Name
224setfilebufsize PyFile_SetBufSize
225newfileobject PyFile_FromString
226newopenfileobject PyFile_FromFile
227softspace PyFile_SoftSpace
228writeobject PyFile_WriteObject
229writestring PyFile_WriteString
230instancemethodgetclass PyMethod_Class
231instancemethodgetfunc PyMethod_Function
232instancemethodgetself PyMethod_Self
233issubclass PyClass_IsSubclass
234newclassobject PyClass_New
235newinstancemethodobject PyMethod_New
236newinstanceobject PyInstance_New
237instancebinop PyInstance_DoBinOp
238block PyTryBlock
239extend_stack PyFrame_ExtendStack
240newframeobject PyFrame_New
241pop_block PyFrame_BlockPop
242setup_block PyFrame_BlockSetup
243fast_2_locals PyFrame_FastToLocals
244locals_2_fast PyFrame_LocalsToFast
245getfunccode PyFunction_GetCode
246getfuncglobals PyFunction_GetGlobals
247getfuncargstuff PyFunction_GetArgStuff
248setfuncargstuff PyFunction_SetArgStuff
249mystrtol PyOS_strtol
250mystrtoul PyOS_strtoul
251newfuncobject PyFunction_New
252newrangeobject PyRange_New
253method PyCFunction
254findmethod Py_FindMethod
255findmethodinchain Py_FindMethodInChain
256getmethod PyCFunction_GetFunction
257getself PyCFunction_GetSelf
258getflags PyCFunction_GetFlags
259newmethodobject PyCFunction_New
260getmoduledict PyModule_GetDict
261getmodulename PyModule_GetName
262newmoduleobject PyModule_New
263addaccelerators PyGrammar_AddAccelerators
264finddfa PyGrammar_FindDFA
265labelrepr PyGrammar_LabelRepr
266listtree PyNode_ListTree
267addchild PyNode_AddChild
268freetree PyNode_Free
269newtree PyNode_New
270addtoken PyParser_AddToken
271delparser PyParser_Delete
272newparser PyParser_New
273parsefile PyParser_ParseFile
274parsestring PyParser_ParseString
275tok_1char PyToken_OneChar
276tok_2char PyToken_TwoChars
277tok_free PyTokenizer_Free
278tok_get PyTokenizer_Get
279tok_setupf PyTokenizer_FromFile
280tok_setups PyTokenizer_FromString
281compile PyNode_Compile
282newcodeobject PyCode_New
283call_object PyEval_CallObject
284eval_code PyEval_EvalCode
285flushline Py_FlushLine
286getbuiltins PyEval_GetBuiltins
287getglobals PyEval_GetGlobals
288getlocals PyEval_GetLocals
289getowner PyEval_GetOwner
290getframe PyEval_GetFrame
291getrestricted PyEval_GetRestricted
292init_save_thread PyEval_InitThreads
293printtraceback PyErr_PrintTraceBack
294restore_thread PyEval_RestoreThread
295save_thread PyEval_SaveThread
296tb_fetch PyTraceBack_Fetch
297tb_here PyTraceBack_Here
298tb_print PyTraceBack_Print
299tb_store PyTraceBack_Store
300add_module PyImport_AddModule
301doneimport PyImport_Cleanup
302get_modules PyImport_GetModuleDict
303get_pyc_magic PyImport_GetMagicNumber
304exec_code_module PyImport_ExecCodeModule
305import_module PyImport_ImportModule
306init_frozen PyImport_ImportFrozenModule
307initimport PyImport_Init
308reload_module PyImport_ReloadModule
309frozen_modules PyImport_FrozenModules
310coerce PyNumber_Coerce
311getbuiltin PyBuiltin_GetObject
312initbuiltin PyBuiltin_Init
313getbuiltindict PyBuiltin_GetDict
314getbuiltinmod PyBuiltin_GetModule
315initmarshal PyMarshal_Init
316initmodule Py_InitModule
317initmodule4 Py_InitModule4
318rd_long PyMarshal_ReadLongFromFile
319rd_short PyMarshal_ReadShortFromFile
320rd_object PyMarshal_ReadObjectFromFile
321rds_object PyMarshal_ReadObjectFromString
322wr_long PyMarshal_WriteLongToFile
323wr_short PyMarshal_WriteShortToFile
324wr_object PyMarshal_WriteObjectToFile
325initsys PySys_Init
326setpythonargv PySys_SetArgv
327setpythonpath PySys_SetPath
328sysget PySys_GetObject
329sysgetfile PySys_GetFile
330sysset PySys_SetObject
331compile_string Py_CompileString
332fatal Py_FatalError
333goaway Py_Exit
334cleanup Py_Cleanup
335initall Py_Initialize
336print_error PyErr_Print
337parse_file PyParser_SimpleParseFile
338parse_string PyParser_SimpleParseString
339run PyRun_AnyFile
340run_script PyRun_SimpleFile
341run_command PyRun_SimpleString
342run_file PyRun_File
343run_string PyRun_String
344run_tty_1 PyRun_InteractiveOne
345run_tty_loop PyRun_InteractiveLoop
346getmember PyMember_Get
347setmember PyMember_Set
348mkvalue Py_BuildValue
349vmkvalue Py_VaBuildValue
350getargs PyArg_Parse
Guido van Rossum45510ae1997-05-05 21:53:03 +0000351vgetargs PyArg_VaParse
Guido van Rossumd19828d1996-07-30 18:02:59 +0000352newgetargs PyArg_ParseTuple
353getichararg PyArg_GetChar
354getidoublearray PyArg_GetDoubleArray
355getifloatarg PyArg_GetFloat
356getifloatarray PyArg_GetFloatArray
357getnoarg PyArg_NoArgs
358getilongarg PyArg_GetLong
359getilongarray PyArg_GetLongArray
360getilongarraysize PyArg_GetLongArraySize
361getiobjectarg PyArg_GetObject
362getishortarg PyArg_GetShort
363getishortarray PyArg_GetShortArray
364getishortarraysize PyArg_GetShortArraySize
365getistringarg PyArg_GetString
366err_badarg PyErr_BadArgument
367err_badcall PyErr_BadInternalCall
Guido van Rossumd19828d1996-07-30 18:02:59 +0000368err_nomem PyErr_NoMemory
369err_errno PyErr_SetFromErrno
370err_set PyErr_SetNone
371err_setstr PyErr_SetString
372err_setval PyErr_SetObject
373err_occurred PyErr_Occurred
374err_fetch PyErr_Fetch
375err_restore PyErr_Restore
376err_clear PyErr_Clear
377fgets_intr PyOS_InterruptableGetString
378initintr PyOS_InitInterrupts
379intrcheck PyOS_InterruptOccurred
380getmtime PyOS_GetLastModificationTime
381my_readline PyOS_Readline
382realmain Py_Main
383ref_total _Py_RefTotal
384sigcheck PyErr_CheckSignals
385
386getcompiler Py_GetCompiler
387getcopyright Py_GetCopyright
388getplatform Py_GetPlatform
389getversion Py_GetVersion
390getpythonpath Py_GetPath
391getprogramname Py_GetProgramName
392getargcargv Py_GetArgcArgv
393
394askyesno _Py_AskYesNo
395import_filetab _PyImport_Filetab
396import_maxsuffixsize _PyImport_MaxSuffixSize
397load_dynamic_module _PyImport_LoadDynamicModule
Guido van Rossum1a43ce81997-04-29 20:22:47 +0000398inittab _PyImport_Inittab