blob: 00fe23a6d36bc8a989a454da957b209f40b12c8b [file] [log] [blame]
Andrew MacIntyre41d97d62002-02-17 05:23:30 +00001LIBRARY python23 INITINSTANCE TERMINSTANCE
2DESCRIPTION "Python 2.3 Core DLL"
3PROTMODE
4DATA MULTIPLE NONSHARED
5EXPORTS
6
7; From python23_s.lib(config)
8 "_PyImport_Inittab"
9
10; From python23_s.lib(dlfcn)
11 "dlopen"
12 "dlsym"
13 "dlclose"
14 "dlerror"
15
16; From python23_s.lib(getpathp)
17 "Py_GetPath"
18 "Py_GetPrefix"
19 "Py_GetExecPrefix"
20 "Py_GetProgramFullPath"
21
22; From python23_s.lib(getbuildinfo)
23 "Py_GetBuildInfo"
24
25; From python23_s.lib(main)
26 "Py_Main"
27 "Py_GetArgcArgv"
28
29; From python23_s.lib(acceler)
30 "PyGrammar_AddAccelerators"
31 "PyGrammar_RemoveAccelerators"
32
33; From python23_s.lib(grammar1)
34 "PyGrammar_FindDFA"
35 "PyGrammar_LabelRepr"
36
37; From python23_s.lib(listnode)
38 "PyNode_ListTree"
39
40; From python23_s.lib(node)
41 "PyNode_New"
42 "PyNode_AddChild"
43 "PyNode_Free"
44
45; From python23_s.lib(parser)
46 "PyParser_New"
47 "PyParser_Delete"
48 "PyParser_AddToken"
49
50; From python23_s.lib(parsetok)
51 "Py_TabcheckFlag"
52 "PyParser_ParseString"
53 "PyParser_ParseStringFlags"
54 "PyParser_ParseFile"
55 "PyParser_ParseFileFlags"
56
57; From python23_s.lib(tokenizer)
58 "PyTokenizer_FromString"
59 "PyTokenizer_FromFile"
60 "PyTokenizer_Free"
61 "PyToken_OneChar"
62 "PyToken_TwoChars"
63 "PyToken_ThreeChars"
64 "PyTokenizer_Get"
65 "_PyParser_TokenNames"
66
67; From python23_s.lib(bitset)
68 "_Py_newbitset"
69 "_Py_delbitset"
70 "_Py_addbit"
71 "_Py_samebitset"
72 "_Py_mergebitset"
73
74; From python23_s.lib(metagrammar)
75 "_Py_meta_grammar"
76
77; From python23_s.lib(myreadline)
78 "PyOS_ReadlineFunctionPointer"
79 "PyOS_StdioReadline"
80 "PyOS_Readline"
81 "PyOS_InputHook"
82
83; From python23_s.lib(abstract)
84 "PyObject_Cmp"
85 "PyObject_Type"
86 "PyObject_Size"
87 "PyMapping_Size"
88 "PyObject_Length"
89 "PyObject_GetItem"
90 "PySequence_GetItem"
91 "PyObject_SetItem"
92 "PySequence_SetItem"
93 "PyObject_DelItem"
94 "PySequence_DelItem"
95 "PyObject_DelItemString"
96 "PyObject_AsCharBuffer"
97 "PyObject_CheckReadBuffer"
98 "PyObject_AsReadBuffer"
99 "PyObject_AsWriteBuffer"
100 "PyNumber_Check"
101 "PyNumber_Or"
102 "PyNumber_Xor"
103 "PyNumber_And"
104 "PyNumber_Lshift"
105 "PyNumber_Rshift"
106 "PyNumber_Subtract"
107 "PyNumber_Multiply"
108 "PyNumber_Divide"
109 "PyNumber_Divmod"
110 "PyNumber_Add"
111 "PyNumber_FloorDivide"
112 "PyNumber_TrueDivide"
113 "PyNumber_Remainder"
114 "PyNumber_Power"
115 "PyNumber_InPlaceOr"
116 "PyNumber_InPlaceXor"
117 "PyNumber_InPlaceAnd"
118 "PyNumber_InPlaceLshift"
119 "PyNumber_InPlaceRshift"
120 "PyNumber_InPlaceSubtract"
121 "PyNumber_InPlaceDivide"
122 "PyNumber_InPlaceFloorDivide"
123 "PyNumber_InPlaceTrueDivide"
124 "PyNumber_InPlaceAdd"
125 "PyNumber_InPlaceMultiply"
126 "PyNumber_InPlaceRemainder"
127 "PyNumber_InPlacePower"
128 "PyNumber_Negative"
129 "PyNumber_Positive"
130 "PyNumber_Invert"
131 "PyNumber_Absolute"
132 "PyNumber_Int"
133 "PyNumber_Long"
134 "PyNumber_Float"
135 "PySequence_Check"
136 "PySequence_Size"
137 "PySequence_Length"
138 "PySequence_Concat"
139 "PySequence_Repeat"
140 "PySequence_InPlaceConcat"
141 "PySequence_InPlaceRepeat"
142 "PySequence_GetSlice"
143 "PySequence_SetSlice"
144 "PySequence_DelSlice"
145 "PySequence_Tuple"
146 "PyObject_GetIter"
147 "PyIter_Next"
148 "PySequence_List"
149 "PySequence_Fast"
150 "_PySequence_IterSearch"
151 "PySequence_Count"
152 "PySequence_Contains"
153 "PySequence_In"
154 "PySequence_Index"
155 "PyMapping_Check"
156 "PyMapping_Length"
157 "PyMapping_GetItemString"
158 "PyMapping_SetItemString"
159 "PyMapping_HasKeyString"
160 "PyMapping_HasKey"
161 "PyObject_CallObject"
162 "PyObject_Call"
163 "PyObject_CallFunction"
164 "PyObject_CallMethod"
165 "PyObject_CallMethodObjArgs"
166 "PyObject_CallFunctionObjArgs"
167 "PyObject_IsInstance"
168 "PyObject_IsSubclass"
169
170; From python23_s.lib(bufferobject)
171 "PyBuffer_FromObject"
172 "PyBuffer_FromReadWriteObject"
173 "PyBuffer_FromMemory"
174 "PyBuffer_FromReadWriteMemory"
175 "PyBuffer_New"
176 "PyBuffer_Type"
177
178; From python23_s.lib(cellobject)
179 "PyCell_New"
180 "PyCell_Get"
181 "PyCell_Set"
182 "PyCell_Type"
183
184; From python23_s.lib(classobject)
185 "PyClass_New"
186 "PyMethod_Function"
187 "PyMethod_Self"
188 "PyMethod_Class"
189 "PyClass_IsSubclass"
190 "PyInstance_New"
191 "PyInstance_NewRaw"
192 "PyMethod_New"
193 "PyMethod_Fini"
194 "PyClass_Type"
195 "PyMethod_Type"
196 "PyInstance_Type"
197
198; From python23_s.lib(cobject)
199 "PyCObject_FromVoidPtr"
200 "PyCObject_FromVoidPtrAndDesc"
201 "PyCObject_AsVoidPtr"
202 "PyCObject_GetDesc"
203 "PyCObject_Import"
204 "PyCObject_Type"
205
206; From python23_s.lib(complexobject)
207 "_Py_c_sum"
208 "_Py_c_diff"
209 "_Py_c_neg"
210 "_Py_c_prod"
211 "_Py_c_quot"
212 "_Py_c_pow"
213 "PyComplex_FromCComplex"
214 "PyComplex_FromDoubles"
215 "PyComplex_RealAsDouble"
216 "PyComplex_ImagAsDouble"
217 "PyComplex_AsCComplex"
218 "PyComplex_Type"
219
220; From python23_s.lib(descrobject)
221 "PyWrapper_New"
222 "PyDescr_NewMethod"
223 "PyDescr_NewMember"
224 "PyDescr_NewGetSet"
225 "PyDescr_NewWrapper"
226 "PyDescr_IsData"
227 "PyDictProxy_New"
228 "PyWrapperDescr_Type"
229 "PyProperty_Type"
230
231; From python23_s.lib(dictobject)
232 "PyDict_New"
233 "PyDict_GetItem"
234 "PyDict_SetItem"
235 "PyDict_DelItem"
236 "PyDict_Clear"
237 "PyDict_Next"
238 "PyDict_Update"
239 "PyDict_MergeFromSeq2"
240 "PyDict_Merge"
241 "PyDict_Copy"
242 "PyDict_Size"
243 "PyDict_Keys"
244 "PyDict_Values"
245 "PyDict_Items"
246 "PyDict_GetItemString"
247 "PyDict_SetItemString"
248 "PyDict_DelItemString"
249 "PyDict_Type"
250 "PyDictIter_Type"
251
252; From python23_s.lib(fileobject)
253 "PyFile_AsFile"
254 "PyFile_Name"
255 "PyFile_FromFile"
256 "PyFile_FromString"
257 "PyFile_SetBufSize"
258 "PyFile_GetLine"
259 "PyFile_SoftSpace"
260 "PyFile_WriteObject"
261 "PyFile_WriteString"
262 "PyObject_AsFileDescriptor"
263 "PyFile_Type"
264
265; From python23_s.lib(floatobject)
266 "PyFloat_FromDouble"
267 "PyFloat_FromString"
268 "PyFloat_AsDouble"
269 "PyFloat_AsStringEx"
270 "PyFloat_AsString"
271 "PyFloat_AsReprString"
272 "PyFloat_Fini"
273 "PyFloat_Type"
274
275; From python23_s.lib(frameobject)
276 "PyFrame_FastToLocals"
277 "PyFrame_New"
278 "PyFrame_BlockSetup"
279 "PyFrame_BlockPop"
280 "PyFrame_LocalsToFast"
281 "PyFrame_Fini"
282 "PyFrame_Type"
283
284; From python23_s.lib(funcobject)
285 "PyFunction_New"
286 "PyFunction_GetCode"
287 "PyFunction_GetGlobals"
288 "PyFunction_GetDefaults"
289 "PyFunction_SetDefaults"
290 "PyFunction_GetClosure"
291 "PyFunction_SetClosure"
292 "PyClassMethod_New"
293 "PyStaticMethod_New"
294 "PyFunction_Type"
295 "PyClassMethod_Type"
296 "PyStaticMethod_Type"
297
298; From python23_s.lib(intobject)
299 "PyInt_GetMax"
300 "PyInt_FromLong"
301 "PyInt_AsLong"
302 "PyInt_FromString"
303 "PyInt_FromUnicode"
304 "PyInt_Fini"
305 "_Py_ZeroStruct"
306 "PyInt_Type"
307 "_Py_TrueStruct"
308
309; From python23_s.lib(iterobject)
310 "PySeqIter_New"
311 "PyCallIter_New"
312 "PySeqIter_Type"
313 "PyCallIter_Type"
314
315; From python23_s.lib(listobject)
316 "PyList_New"
317 "PyList_Size"
318 "PyList_GetItem"
319 "PyList_SetItem"
320 "PyList_Insert"
321 "PyList_Append"
322 "PyList_GetSlice"
323 "PyList_SetSlice"
324 "PyList_Sort"
325 "PyList_Reverse"
326 "PyList_AsTuple"
327 "PyList_Type"
328
329; From python23_s.lib(longobject)
330 "_PyLong_New"
331 "_PyLong_Copy"
332 "PyLong_FromLong"
333 "PyLong_FromUnsignedLong"
334 "PyLong_FromDouble"
335 "PyLong_AsLong"
336 "PyLong_AsUnsignedLong"
337 "_PyLong_FromByteArray"
338 "_PyLong_AsByteArray"
339 "_PyLong_AsScaledDouble"
340 "PyLong_AsDouble"
341 "PyLong_FromVoidPtr"
342 "PyLong_AsVoidPtr"
343 "PyLong_FromLongLong"
344 "PyLong_FromUnsignedLongLong"
345 "PyLong_AsLongLong"
346 "PyLong_AsUnsignedLongLong"
347 "PyLong_FromString"
348 "PyLong_FromUnicode"
349 "PyLong_Type"
350
351; From python23_s.lib(methodobject)
352 "PyCFunction_New"
353 "PyCFunction_GetFunction"
354 "PyCFunction_GetSelf"
355 "PyCFunction_GetFlags"
356 "PyCFunction_Call"
357 "Py_FindMethodInChain"
358 "Py_FindMethod"
359 "PyCFunction_Fini"
360 "PyCFunction_Type"
361
362; From python23_s.lib(moduleobject)
363 "PyModule_New"
364 "PyModule_GetDict"
365 "PyModule_GetName"
366 "PyModule_GetFilename"
367 "_PyModule_Clear"
368 "PyModule_Type"
369
370; From python23_s.lib(object)
371 "Py_DivisionWarningFlag"
372 "PyObject_Init"
373 "PyObject_InitVar"
374 "_PyObject_New"
375 "_PyObject_NewVar"
376 "_PyObject_Del"
377 "PyObject_Print"
378 "PyObject_Str"
379 "PyObject_Repr"
380 "_PyObject_Dump"
381 "PyObject_Unicode"
382 "PyObject_GetAttr"
383 "PyObject_IsTrue"
384 "PyNumber_CoerceEx"
385 "PyObject_Compare"
386 "PyObject_RichCompare"
387 "PyObject_RichCompareBool"
388 "_Py_HashDouble"
389 "PyObject_Hash"
390 "_Py_HashPointer"
391 "PyObject_GetAttrString"
392 "PyObject_HasAttrString"
393 "PyObject_SetAttrString"
394 "PyObject_SetAttr"
395 "PyObject_HasAttr"
396 "_PyObject_GetDictPtr"
397 "PyObject_GenericGetAttr"
398 "PyObject_GenericSetAttr"
399 "PyObject_Not"
400 "PyNumber_Coerce"
401 "PyCallable_Check"
402 "PyObject_Dir"
403 "_Py_ReadyTypes"
404 "PyMem_Malloc"
405 "PyMem_Realloc"
406 "PyMem_Free"
407 "PyObject_Malloc"
408 "PyObject_Realloc"
409 "PyObject_Free"
410 "Py_ReprEnter"
411 "Py_ReprLeave"
412 "_PyTrash_deposit_object"
413 "_PyTrash_destroy_chain"
414 "_Py_NotImplementedStruct"
415 "_Py_NoneStruct"
416 "_Py_cobject_hack"
417 "_Py_abstract_hack"
418 "_PyTrash_delete_nesting"
419 "_PyTrash_delete_later"
420
421; From python23_s.lib(rangeobject)
422 "PyRange_New"
423 "PyRange_Type"
424
425; From python23_s.lib(sliceobject)
426 "PySlice_New"
427 "PySlice_GetIndices"
428 "_Py_EllipsisObject"
429 "PySlice_Type"
430
431; From python23_s.lib(stringobject)
432 "PyString_FromStringAndSize"
433 "PyString_InternInPlace"
434 "PyString_FromString"
435 "PyString_FromFormatV"
436 "PyString_AsString"
437 "_PyString_Resize"
438 "PyString_FromFormat"
439 "PyString_Decode"
440 "PyString_AsDecodedString"
441 "PyString_AsDecodedObject"
442 "PyString_Encode"
443 "PyString_AsEncodedString"
444 "PyString_AsEncodedObject"
445 "PyString_AsStringAndSize"
446 "PyString_Size"
447 "_PyString_Eq"
448 "_PyString_Join"
449 "PyString_Concat"
450 "PyString_ConcatAndDel"
451 "_PyString_FormatLong"
452 "PyString_Format"
453 "PyString_InternFromString"
454 "PyString_Fini"
455 "_Py_ReleaseInternedStrings"
456 "PyString_Type"
457
458; From python23_s.lib(structseq)
459 "PyStructSequence_New"
460 "PyStructSequence_InitType"
461
462; From python23_s.lib(tupleobject)
463 "PyTuple_New"
464 "PyTuple_Size"
465 "PyTuple_GetItem"
466 "PyTuple_SetItem"
467 "PyTuple_GetSlice"
468 "_PyTuple_Resize"
469 "PyTuple_Fini"
470 "PyTuple_Type"
471
472; From python23_s.lib(typeobject)
473 "PyType_IsSubtype"
474 "PyType_GenericAlloc"
475 "PyType_GenericNew"
476 "_PyType_Lookup"
477 "PyType_Ready"
478 "_PyObject_SlotCompare"
479 "PyType_Type"
480 "PyBaseObject_Type"
481 "PySuper_Type"
482
483; From python23_s.lib(unicodeobject)
484 "PyUnicodeUCS2_GetMax"
485 "PyUnicodeUCS2_Resize"
486 "PyUnicodeUCS2_FromUnicode"
487 "PyUnicodeUCS2_FromObject"
488 "PyUnicodeUCS2_FromEncodedObject"
489 "PyUnicodeUCS2_Decode"
490 "PyUnicodeUCS2_GetDefaultEncoding"
491 "PyUnicodeUCS2_DecodeUTF8"
492 "PyUnicodeUCS2_DecodeLatin1"
493 "PyUnicodeUCS2_DecodeASCII"
494 "PyUnicodeUCS2_Encode"
495 "PyUnicodeUCS2_AsEncodedString"
496 "PyUnicodeUCS2_AsUTF8String"
497 "PyUnicodeUCS2_AsLatin1String"
498 "PyUnicodeUCS2_AsASCIIString"
499 "_PyUnicodeUCS2_AsDefaultEncodedString"
500 "PyUnicodeUCS2_AsUnicode"
501 "PyUnicodeUCS2_GetSize"
502 "PyUnicodeUCS2_SetDefaultEncoding"
503 "PyUnicode_DecodeUTF7"
504 "PyUnicode_EncodeUTF7"
505 "PyUnicodeUCS2_EncodeUTF8"
506 "PyUnicodeUCS2_DecodeUTF16"
507 "PyUnicodeUCS2_EncodeUTF16"
508 "PyUnicodeUCS2_AsUTF16String"
509 "PyUnicodeUCS2_DecodeUnicodeEscape"
510 "PyUnicodeUCS2_EncodeUnicodeEscape"
511 "PyUnicodeUCS2_AsUnicodeEscapeString"
512 "PyUnicodeUCS2_DecodeRawUnicodeEscape"
513 "PyUnicodeUCS2_EncodeRawUnicodeEscape"
514 "PyUnicodeUCS2_AsRawUnicodeEscapeString"
515 "PyUnicodeUCS2_EncodeLatin1"
516 "PyUnicodeUCS2_EncodeASCII"
517 "PyUnicodeUCS2_DecodeCharmap"
518 "PyUnicodeUCS2_EncodeCharmap"
519 "PyUnicodeUCS2_AsCharmapString"
520 "PyUnicodeUCS2_TranslateCharmap"
521 "PyUnicodeUCS2_Translate"
522 "PyUnicodeUCS2_EncodeDecimal"
523 "PyUnicodeUCS2_Count"
524 "PyUnicodeUCS2_Find"
525 "PyUnicodeUCS2_Tailmatch"
526 "PyUnicodeUCS2_Join"
527 "PyUnicodeUCS2_Splitlines"
528 "PyUnicodeUCS2_Compare"
529 "PyUnicodeUCS2_Contains"
530 "PyUnicodeUCS2_Concat"
531 "PyUnicodeUCS2_Replace"
532 "PyUnicodeUCS2_Split"
533 "PyUnicodeUCS2_Format"
534 "_PyUnicodeUCS2_Init"
535 "_PyUnicodeUCS2_Fini"
536 "PyUnicode_Type"
537
538; From python23_s.lib(unicodectype)
539 "_PyUnicode_TypeRecords"
540 "_PyUnicodeUCS2_IsLinebreak"
541 "_PyUnicodeUCS2_ToTitlecase"
542 "_PyUnicodeUCS2_IsTitlecase"
543 "_PyUnicodeUCS2_ToDecimalDigit"
544 "_PyUnicodeUCS2_IsDecimalDigit"
545 "_PyUnicodeUCS2_ToDigit"
546 "_PyUnicodeUCS2_IsDigit"
547 "_PyUnicodeUCS2_ToNumeric"
548 "_PyUnicodeUCS2_IsNumeric"
549 "_PyUnicodeUCS2_IsWhitespace"
550 "_PyUnicodeUCS2_IsLowercase"
551 "_PyUnicodeUCS2_IsUppercase"
552 "_PyUnicodeUCS2_ToUppercase"
553 "_PyUnicodeUCS2_ToLowercase"
554 "_PyUnicodeUCS2_IsAlpha"
555
556; From python23_s.lib(weakrefobject)
557 "_PyWeakref_GetWeakrefCount"
558 "PyWeakref_NewRef"
559 "PyWeakref_NewProxy"
560 "PyWeakref_GetObject"
561 "PyObject_ClearWeakRefs"
562 "_PyWeakref_RefType"
563 "_PyWeakref_ProxyType"
564 "_PyWeakref_CallableProxyType"
565
566; From python23_s.lib(bltinmodule)
567 "_PyBuiltin_Init"
568 "Py_FileSystemDefaultEncoding"
569
570; From python23_s.lib(exceptions)
571 "PyExc_TypeError"
572 "PyExc_Exception"
573 "PyExc_StopIteration"
574 "PyExc_StandardError"
575 "PyExc_SystemExit"
576 "PyExc_KeyboardInterrupt"
577 "PyExc_ImportError"
578 "PyExc_EnvironmentError"
579 "PyExc_IOError"
580 "PyExc_OSError"
581 "PyExc_EOFError"
582 "PyExc_RuntimeError"
583 "PyExc_NotImplementedError"
584 "PyExc_NameError"
585 "PyExc_UnboundLocalError"
586 "PyExc_AttributeError"
587 "PyExc_SyntaxError"
588 "PyExc_IndentationError"
589 "PyExc_TabError"
590 "PyExc_AssertionError"
591 "PyExc_LookupError"
592 "PyExc_IndexError"
593 "PyExc_KeyError"
594 "PyExc_ArithmeticError"
595 "PyExc_OverflowError"
596 "PyExc_ZeroDivisionError"
597 "PyExc_FloatingPointError"
598 "PyExc_ValueError"
599 "PyExc_UnicodeError"
600 "PyExc_ReferenceError"
601 "PyExc_SystemError"
602 "PyExc_MemoryError"
603 "PyExc_Warning"
604 "PyExc_UserWarning"
605 "PyExc_DeprecationWarning"
606 "PyExc_SyntaxWarning"
607 "PyExc_OverflowWarning"
608 "PyExc_RuntimeWarning"
609 "PyExc_MemoryErrorInst"
610 "_PyExc_Init"
611 "_PyExc_Fini"
612
613; From python23_s.lib(ceval)
614 "PyEval_InitThreads"
615 "PyEval_AcquireLock"
616 "PyEval_ReleaseLock"
617 "PyEval_AcquireThread"
618 "PyEval_ReleaseThread"
619 "PyEval_ReInitThreads"
620 "PyEval_SaveThread"
621 "PyEval_RestoreThread"
622 "Py_AddPendingCall"
623 "Py_MakePendingCalls"
624 "Py_GetRecursionLimit"
625 "Py_SetRecursionLimit"
626 "PyEval_EvalCode"
627 "PyEval_EvalCodeEx"
628 "PyEval_CallObjectWithKeywords"
629 "PyEval_SetProfile"
630 "PyEval_SetTrace"
631 "PyEval_GetBuiltins"
632 "PyEval_GetLocals"
633 "PyEval_GetGlobals"
634 "PyEval_GetFrame"
635 "PyEval_GetRestricted"
636 "PyEval_MergeCompilerFlags"
637 "Py_FlushLine"
638 "PyEval_CallObject"
639 "PyEval_GetFuncName"
640 "PyEval_GetFuncDesc"
641 "_PyEval_SliceIndex"
642
643; From python23_s.lib(compile)
644 "PyCode_New"
645 "PyNode_Compile"
646 "PyNode_CompileFlags"
647 "PyNode_CompileSymtable"
648 "PySymtable_Free"
649 "PyCode_Addr2Line"
650 "Py_OptimizeFlag"
651 "PyCode_Type"
652
653; From python23_s.lib(codecs)
654 "PyCodec_Register"
655 "_PyCodec_Lookup"
656 "PyCodec_Encoder"
657 "PyCodec_Decoder"
658 "PyCodec_StreamReader"
659 "PyCodec_StreamWriter"
660 "PyCodec_Encode"
661 "PyCodec_Decode"
662 "_PyCodecRegistry_Init"
663 "_PyCodecRegistry_Fini"
664
665; From python23_s.lib(errors)
666 "PyErr_Restore"
667 "PyErr_SetObject"
668 "PyErr_SetNone"
669 "PyErr_SetString"
670 "PyErr_Occurred"
671 "PyErr_GivenExceptionMatches"
672 "PyErr_ExceptionMatches"
673 "PyErr_NormalizeException"
674 "PyErr_Fetch"
675 "PyErr_Clear"
676 "PyErr_BadArgument"
677 "PyErr_NoMemory"
678 "PyErr_SetFromErrnoWithFilename"
679 "PyErr_SetFromErrno"
680 "_PyErr_BadInternalCall"
681 "PyErr_Format"
682 "PyErr_BadInternalCall"
683 "PyErr_NewException"
684 "PyErr_WriteUnraisable"
685 "PyErr_Warn"
686 "PyErr_WarnExplicit"
687 "PyErr_SyntaxLocation"
688 "PyErr_ProgramText"
689
690; From python23_s.lib(frozen)
691 "PyImport_FrozenModules"
692
693; From python23_s.lib(frozenmain)
694 "Py_FrozenMain"
695
696; From python23_s.lib(future)
697 "PyNode_Future"
698
699; From python23_s.lib(getargs)
700 "PyArg_Parse"
701 "PyArg_ParseTuple"
702 "PyArg_VaParse"
703 "PyArg_ParseTupleAndKeywords"
704 "PyArg_UnpackTuple"
705
706; From python23_s.lib(getcompiler)
707 "Py_GetCompiler"
708
709; From python23_s.lib(getcopyright)
710 "Py_GetCopyright"
711
712; From python23_s.lib(getmtime)
713 "PyOS_GetLastModificationTime"
714
715; From python23_s.lib(getplatform)
716 "Py_GetPlatform"
717
718; From python23_s.lib(getversion)
719 "Py_GetVersion"
720
721; From python23_s.lib(graminit)
722 "_PyParser_Grammar"
723
724; From python23_s.lib(import)
725 "_PyImport_Init"
726 "_PyImport_Fini"
727 "PyImport_GetModuleDict"
728 "PyImport_Cleanup"
729 "PyImport_GetMagicNumber"
730 "_PyImport_FixupExtension"
731 "_PyImport_FindExtension"
732 "PyImport_AddModule"
733 "PyImport_ExecCodeModule"
734 "PyImport_ExecCodeModuleEx"
735 "PyImport_ImportFrozenModule"
736 "PyImport_ImportModule"
737 "PyImport_Import"
738 "PyImport_ImportModuleEx"
739 "PyImport_ReloadModule"
740; "initimp"
741 "PyImport_ExtendInittab"
742 "PyImport_AppendInittab"
743 "PyImport_Inittab"
744 "_PyImport_Filetab"
745
746; From python23_s.lib(importdl)
747 "_PyImport_LoadDynamicModule"
748
749; From python23_s.lib(marshal)
750 "PyMarshal_WriteLongToFile"
751 "PyMarshal_WriteObjectToFile"
752 "PyMarshal_ReadShortFromFile"
753 "PyMarshal_ReadLongFromFile"
754 "PyMarshal_ReadLastObjectFromFile"
755 "PyMarshal_ReadObjectFromString"
756 "PyMarshal_ReadObjectFromFile"
757 "PyMarshal_WriteObjectToString"
758 "PyMarshal_Init"
759
760; From python23_s.lib(modsupport)
761 "Py_InitModule4"
762 "Py_BuildValue"
763 "Py_VaBuildValue"
764 "PyEval_CallFunction"
765 "PyEval_CallMethod"
766 "PyModule_AddObject"
767 "PyModule_AddIntConstant"
768 "PyModule_AddStringConstant"
769 "_Py_PackageContext"
770
771; From python23_s.lib(mysnprintf)
772 "PyOS_snprintf"
773 "PyOS_vsnprintf"
774
775; From python23_s.lib(mystrtoul)
776 "PyOS_strtoul"
777 "PyOS_strtol"
778
779; From python23_s.lib(pyfpe)
780 "PyFPE_dummy"
781
782; From python23_s.lib(pystate)
783 "PyInterpreterState_New"
784 "PyInterpreterState_Clear"
785 "PyThreadState_Clear"
786 "PyThreadState_Delete"
787 "PyInterpreterState_Delete"
788 "PyThreadState_New"
789 "PyThreadState_DeleteCurrent"
790 "PyThreadState_Get"
791 "PyThreadState_Swap"
792 "PyThreadState_GetDict"
793 "PyInterpreterState_Head"
794 "PyInterpreterState_Next"
795 "PyInterpreterState_ThreadHead"
796 "PyThreadState_Next"
797 "_PyThreadState_Current"
798
799; From python23_s.lib(pythonrun)
800 "Py_IgnoreEnvironmentFlag"
801 "Py_DebugFlag"
802 "Py_VerboseFlag"
803 "Py_NoSiteFlag"
804 "Py_InteractiveFlag"
805 "Py_FrozenFlag"
806 "Py_IsInitialized"
807 "Py_Initialize"
808 "Py_FatalError"
809 "Py_Finalize"
810 "Py_NewInterpreter"
811 "PyErr_Print"
812 "Py_EndInterpreter"
813 "Py_SetProgramName"
814 "Py_GetProgramName"
815 "Py_SetPythonHome"
816 "Py_GetPythonHome"
817 "PyRun_AnyFile"
818 "PyRun_AnyFileExFlags"
819 "PyRun_AnyFileFlags"
820 "PyRun_AnyFileEx"
821 "Py_FdIsInteractive"
822 "PyRun_InteractiveLoopFlags"
823 "PyRun_SimpleFileExFlags"
824 "PyRun_InteractiveLoop"
825 "PyRun_InteractiveOneFlags"
826 "PyRun_InteractiveOne"
827 "PyRun_SimpleFile"
828 "PyRun_SimpleFileEx"
829 "PyRun_FileExFlags"
830 "PyRun_SimpleString"
831 "PyRun_SimpleStringFlags"
832 "PyRun_StringFlags"
833 "PyErr_PrintEx"
834 "Py_Exit"
835 "PyErr_Display"
836 "PyRun_String"
837 "PyParser_SimpleParseString"
838 "PyRun_File"
839 "PyRun_FileEx"
840 "PyParser_SimpleParseFile"
841 "PyParser_SimpleParseStringFlags"
842 "PyRun_FileFlags"
843 "PyParser_SimpleParseFileFlags"
844 "Py_CompileString"
845 "Py_CompileStringFlags"
846 "Py_SymtableString"
847 "Py_AtExit"
848 "PyOS_getsig"
849 "PyOS_setsig"
850 "Py_UseClassExceptionsFlag"
851 "Py_UnicodeFlag"
852 "_Py_QnewFlag"
853 "_PyThread_Started"
854
855; From python23_s.lib(structmember)
856 "PyMember_Get"
857 "PyMember_GetOne"
858 "PyMember_Set"
859 "PyMember_SetOne"
860
861; From python23_s.lib(symtable)
862 "PySymtableEntry_New"
863 "PySymtableEntry_Type"
864
865; From python23_s.lib(sysmodule)
866 "PySys_GetObject"
867 "PySys_GetFile"
868 "PySys_SetObject"
869 "PySys_ResetWarnOptions"
870 "PySys_AddWarnOption"
871 "_PySys_Init"
872 "PySys_SetPath"
873 "PySys_SetArgv"
874 "PySys_WriteStdout"
875 "PySys_WriteStderr"
876
877; From python23_s.lib(traceback)
878 "PyTraceBack_Here"
879 "PyTraceBack_Print"
880 "PyTraceBack_Type"
881
882; From python23_s.lib(getopt)
883 "_PyOS_GetOpt"
884 "_PyOS_opterr"
885 "_PyOS_optind"
886 "_PyOS_optarg"
887
888; From python23_s.lib(dynload_shlib)
889 "_PyImport_DynLoadFiletab"
890 "_PyImport_GetDynLoadFunc"
891
892; From python23_s.lib(thread)
893 "PyThread_init_thread"
894 "PyThread_start_new_thread"
895 "PyThread_get_thread_ident"
896 "PyThread_exit_thread"
897 "PyThread__exit_thread"
898 "PyThread_allocate_lock"
899 "PyThread_free_lock"
900 "PyThread_acquire_lock"
901 "PyThread_release_lock"
902
903; From python23_s.lib(gcmodule)
904; "initgc"
905 "_PyGC_Dump"
906 "_PyObject_GC_Track"
907 "_PyObject_GC_UnTrack"
908 "_PyObject_GC_Malloc"
909 "_PyObject_GC_New"
910 "_PyObject_GC_NewVar"
911 "_PyObject_GC_Resize"
912 "_PyObject_GC_Del"
913 "_PyGC_generation0"
914
915; From python23_s.lib(signalmodule)
916 "PyErr_CheckSignals"
917; "initsignal"
918 "PyErr_SetInterrupt"
919 "PyOS_InitInterrupts"
920 "PyOS_FiniInterrupts"
921 "PyOS_InterruptOccurred"
922 "PyOS_AfterFork"
923
924; From python23_s.lib(posixmodule)
925; "initos2"
926
927; From python23_s.lib(threadmodule)
928; "initthread"
929
930; From python23_s.lib(_sre)
931; "init_sre"