blob: 9266ea189a79c0da079d84cb9405c0dc821b35d2 [file] [log] [blame]
Guido van Rossumb4ae6a31996-08-08 19:05:09 +00001#!
2*
3* =========================================================
4* This is the default export list of the python executable.
5* This file is used for the AIX platform ONLY. It provides
6* a list of all variables in the python executable that are
7* "exported" -- that is, which may be used by any extension
8* modules that are created. This file should be used as an
9* AIX "import" file when creating extension modules on that
10* platform.
11*
12* This file was generated from the default configuration of
13* the distribution (that is, from a build in which NONE of
14* the python Modules were built as shared libraries).
15*
16* THIS FILE IS OVERWRITTEN anytime the python executable is
17* re-built using a Modules/Setup file that was customized
18* to call for the building of some or all python Modules as
19* shared libraries and with the definition of LINKCC having
20* been uncommented. A new python.exp will be generated by
21* such a build; it will list ONLY the global symbols which
22* are defined in the statically-bound modules and libraries.
23* =========================================================
24*
Guido van Rossumf62e5bf1996-09-10 18:09:44 +000025PyAST_Type
Guido van Rossumb4ae6a31996-08-08 19:05:09 +000026PyArg_Parse
27PyArg_ParseTuple
Guido van Rossumf62e5bf1996-09-10 18:09:44 +000028PyArg_ParseTupleAndKeywords
Guido van Rossume2b4f091997-04-29 16:27:09 +000029PyArg_VaParse
Guido van Rossumb4ae6a31996-08-08 19:05:09 +000030PyBuiltin_GetDict
31PyBuiltin_GetModule
32PyBuiltin_Init
33PyCFunction_GetFlags
34PyCFunction_GetFunction
35PyCFunction_GetSelf
36PyCFunction_New
37PyCFunction_Type
38PyCObject_AsVoidPtr
39PyCObject_FromVoidPtr
40PyCObject_Type
41PyCallable_Check
42PyClass_IsSubclass
43PyClass_New
44PyClass_Type
Guido van Rossum9bc7e0a1997-01-03 21:05:44 +000045PyCObject_FromVoidPtr
46PyCObject_AsVoidPtr
Guido van Rossumb4ae6a31996-08-08 19:05:09 +000047PyCode_New
48PyCode_Type
49PyComplex_AsCComplex
50PyComplex_FromCComplex
51PyComplex_FromDoubles
52PyComplex_ImagAsDouble
53PyComplex_RealAsDouble
54PyComplex_Type
55PyDict_Clear
56PyDict_DelItem
57PyDict_DelItemString
58PyDict_GetItem
59PyDict_GetItemString
60PyDict_Items
61PyDict_Keys
62PyDict_New
63PyDict_Next
64PyDict_SetItem
65PyDict_SetItemString
66PyDict_Size
67PyDict_Type
68PyDict_Values
69PyErr_BadArgument
70PyErr_BadInternalCall
71PyErr_CheckSignals
72PyErr_Clear
73PyErr_Fetch
74PyErr_NoMemory
75PyErr_Occurred
76PyErr_Print
77PyErr_Restore
78PyErr_SetFromErrno
79PyErr_SetInterrupt
80PyErr_SetNone
81PyErr_SetObject
82PyErr_SetString
83PyEval_CallFunction
84PyEval_CallMethod
85PyEval_CallObject
86PyEval_CallObjectWithKeywords
87PyEval_EvalCode
88PyEval_GetBuiltins
89PyEval_GetFrame
90PyEval_GetGlobals
91PyEval_GetLocals
92PyEval_GetOwner
93PyEval_GetRestricted
94PyEval_RestoreThread
95PyEval_SaveThread
96PyExc_AccessError
97PyExc_AttributeError
Guido van Rossumb4ae6a31996-08-08 19:05:09 +000098PyExc_EOFError
99PyExc_IOError
100PyExc_ImportError
101PyExc_IndexError
102PyExc_KeyError
103PyExc_KeyboardInterrupt
104PyExc_MemoryError
105PyExc_NameError
106PyExc_OverflowError
107PyExc_RuntimeError
108PyExc_SyntaxError
109PyExc_SystemError
110PyExc_SystemExit
111PyExc_TypeError
112PyExc_ValueError
113PyExc_ZeroDivisionError
114PyFile_AsFile
115PyFile_FromFile
116PyFile_FromString
117PyFile_GetLine
118PyFile_Name
119PyFile_SetBufSize
120PyFile_SoftSpace
121PyFile_Type
122PyFile_WriteObject
123PyFile_WriteString
124PyFloat_AsDouble
125PyFloat_AsString
126PyFloat_FromDouble
127PyFloat_Type
128PyFrame_BlockPop
129PyFrame_BlockSetup
130PyFrame_ExtendStack
131PyFrame_FastToLocals
132PyFrame_LocalsToFast
133PyFrame_New
134PyFrame_Type
135PyFunction_GetCode
136PyFunction_GetDefaults
137PyFunction_GetGlobals
138PyFunction_New
139PyFunction_SetDefaults
140PyFunction_Type
141PyGrammar_AddAccelerators
142PyGrammar_FindDFA
143PyGrammar_LabelRepr
144PyImport_AddModule
145PyImport_Cleanup
146PyImport_ExecCodeModule
147PyImport_FrozenModules
148PyImport_GetMagicNumber
149PyImport_GetModuleDict
150PyImport_ImportFrozenModule
151PyImport_ImportModule
152PyImport_Init
153PyImport_ReloadModule
154PyInstance_DoBinOp
155PyInstance_New
156PyInstance_Type
157PyInt_AsLong
158PyInt_FromLong
159PyInt_GetMax
160PyInt_Type
161PyList_Append
162PyList_AsTuple
163PyList_GetItem
164PyList_GetSlice
165PyList_Insert
166PyList_New
167PyList_Reverse
168PyList_SetItem
169PyList_SetSlice
170PyList_Size
171PyList_Sort
172PyList_Type
173PyLong_AsDouble
174PyLong_AsLong
Guido van Rossum9bc7e0a1997-01-03 21:05:44 +0000175PyLong_AsUnsignedLong
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000176PyLong_FromDouble
177PyLong_FromLong
Guido van Rossum9bc7e0a1997-01-03 21:05:44 +0000178PyLong_FromUnsignedLong
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000179PyLong_FromString
180PyLong_Type
181PyMapping_Check
182PyMapping_GetItemString
183PyMapping_HasKey
184PyMapping_HasKeyString
185PyMapping_Length
186PyMapping_SetItemString
187PyMarshal_Init
188PyMarshal_ReadLongFromFile
189PyMarshal_ReadObjectFromFile
190PyMarshal_ReadObjectFromString
191PyMarshal_WriteLongToFile
192PyMarshal_WriteObjectToFile
Guido van Rossumf62e5bf1996-09-10 18:09:44 +0000193PyMarshal_WriteObjectToString
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000194PyMember_Get
195PyMember_Set
196PyMethod_Class
197PyMethod_Function
198PyMethod_New
199PyMethod_Self
200PyMethod_Type
201PyModule_GetDict
202PyModule_GetName
203PyModule_New
204PyModule_Type
205PyNode_AddChild
206PyNode_Compile
207PyNode_Free
208PyNode_ListTree
209PyNode_New
210PyNumber_Absolute
211PyNumber_Add
212PyNumber_And
213PyNumber_Check
214PyNumber_Coerce
215PyNumber_Divide
216PyNumber_Divmod
217PyNumber_Float
218PyNumber_Int
219PyNumber_Invert
220PyNumber_Long
221PyNumber_Lshift
222PyNumber_Multiply
223PyNumber_Negative
224PyNumber_Or
225PyNumber_Positive
226PyNumber_Power
227PyNumber_Remainder
228PyNumber_Rshift
229PyNumber_Subtract
230PyNumber_Xor
231PyOS_GetLastModificationTime
232PyOS_InitInterrupts
233PyOS_InterruptOccurred
234PyOS_Readline
235PyOS_strtol
236PyOS_strtoul
237PyObject_CallFunction
238PyObject_CallMethod
239PyObject_CallObject
240PyObject_Cmp
241PyObject_Compare
Guido van Rossumf62e5bf1996-09-10 18:09:44 +0000242PyObject_DelItem
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000243PyObject_GetAttr
244PyObject_GetAttrString
245PyObject_GetItem
246PyObject_HasAttrString
247PyObject_Hash
248PyObject_IsTrue
249PyObject_Length
250PyObject_Print
251PyObject_Repr
252PyObject_SetAttr
253PyObject_SetAttrString
254PyObject_SetItem
255PyObject_Str
256PyObject_Type
257PyParser_AddToken
258PyParser_Delete
259PyParser_New
260PyParser_ParseFile
261PyParser_ParseString
262PyParser_SimpleParseFile
263PyParser_SimpleParseString
264PyRange_New
265PyRange_Type
266PyRun_AnyFile
267PyRun_File
268PyRun_InteractiveLoop
269PyRun_InteractiveOne
270PyRun_SimpleFile
271PyRun_SimpleString
272PyRun_String
273PySequence_Check
274PySequence_Concat
275PySequence_Count
Guido van Rossumf62e5bf1996-09-10 18:09:44 +0000276PySequence_DelItem
277PySequence_DelSlice
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000278PySequence_GetItem
279PySequence_GetSlice
280PySequence_In
281PySequence_Index
282PySequence_Length
283PySequence_Repeat
284PySequence_SetItem
285PySequence_SetSlice
286PySequence_Tuple
287PySlice_GetIndices
288PySlice_New
289PySlice_Type
290PyString_AsString
291PyString_Concat
292PyString_ConcatAndDel
293PyString_Format
294PyString_FromString
295PyString_FromStringAndSize
296PyString_Size
297PyString_Type
298PySys_GetFile
299PySys_GetObject
300PySys_Init
301PySys_SetArgv
302PySys_SetObject
303PySys_SetPath
304PyToken_OneChar
305PyToken_TwoChars
306PyTokenizer_Free
307PyTokenizer_FromFile
308PyTokenizer_FromString
309PyTokenizer_Get
310PyTraceBack_Fetch
311PyTraceBack_Here
312PyTraceBack_Print
313PyTraceBack_Store
314PyTraceBack_Type
315PyTuple_GetItem
316PyTuple_GetSlice
317PyTuple_New
318PyTuple_SetItem
319PyTuple_Size
320PyTuple_Type
321PyType_Type
322Py_AddPendingCall
323Py_AtExit
324Py_BuildValue
325Py_Cleanup
326Py_CompileString
327Py_DebugFlag
328Py_Exit
329Py_FatalError
330Py_FindMethod
331Py_FindMethodInChain
332Py_FlushLine
333Py_GetArgcArgv
334Py_GetCompiler
335Py_GetCopyright
336Py_GetExecPrefix
337Py_GetPath
338Py_GetPlatform
339Py_GetPrefix
340Py_GetProgramName
341Py_GetVersion
342Py_InitModule4
343Py_Initialize
344Py_MakePendingCalls
345Py_ReturnNullError
346Py_SuppressPrintingFlag
347Py_VaBuildValue
348Py_VerboseFlag
349_PyImport_Filetab
350_PyImport_LoadDynamicModule
351_PyImport_MaxSuffixSize
352_PyLong_New
353_PyObject_New
354_PyObject_NewVar
355_PyParser_Grammar
356_PyParser_TokenNames
357_PyString_Resize
358_PySys_CheckInterval
359_PySys_ProfileFunc
360_PySys_TraceFunc
361_PyTuple_Resize
Guido van Rossum1d6fddb1996-10-21 15:11:12 +0000362_Py_EllipsisObject
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000363_Py_MD5Final
364_Py_MD5Init
365_Py_MD5Update
366_Py_NoneStruct
367_Py_TrueStruct
368_Py_ZeroStruct
369_Py_addarc
370_Py_addbit
371_Py_adddfa
372_Py_addfirstsets
373_Py_addlabel
374_Py_addstate
375_Py_c_diff
376_Py_c_neg
377_Py_c_pow
378_Py_c_prod
379_Py_c_quot
380_Py_c_sum
381_Py_delbitset
382_Py_findlabel
383_Py_mergebitset
384_Py_meta_grammar
385_Py_newbitset
386_Py_newgrammar
387_Py_pgen
388_Py_printgrammar
389_Py_printnonterminals
390_Py_re_compile_fastmap
391_Py_re_compile_pattern
392_Py_re_match
393_Py_re_match_2
394_Py_re_search
395_Py_re_search_2
396_Py_re_set_syntax
397_Py_re_syntax
398_Py_samebitset
399_Py_translatelabels
400import_modules
401initarray
402initaudioop
403initbinascii
404initcmath
405initcrypt
406initerrno
407initfcntl
408initgrp
409initimageop
410initimp
411initmath
412initmd5
413initoperator
Guido van Rossumf62e5bf1996-09-10 18:09:44 +0000414initparser
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000415initposix
416initpwd
417initregex
418initrgbimg
419initrotor
420initselect
421initsignal
422initsocket
423initstrop
424initstruct
Guido van Rossume2b4f091997-04-29 16:27:09 +0000425_PyImport_Inittab
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000426inittime
427main