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