blob: 2b3a615f267bca9d6c517011ec0ab318fa28f9d1 [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
45PyCode_New
46PyCode_Type
47PyComplex_AsCComplex
48PyComplex_FromCComplex
49PyComplex_FromDoubles
50PyComplex_ImagAsDouble
51PyComplex_RealAsDouble
52PyComplex_Type
53PyDict_Clear
54PyDict_DelItem
55PyDict_DelItemString
56PyDict_GetItem
57PyDict_GetItemString
58PyDict_Items
59PyDict_Keys
60PyDict_New
61PyDict_Next
62PyDict_SetItem
63PyDict_SetItemString
64PyDict_Size
65PyDict_Type
66PyDict_Values
67PyErr_BadArgument
68PyErr_BadInternalCall
69PyErr_CheckSignals
70PyErr_Clear
71PyErr_Fetch
72PyErr_NoMemory
73PyErr_Occurred
74PyErr_Print
75PyErr_Restore
76PyErr_SetFromErrno
77PyErr_SetInterrupt
78PyErr_SetNone
79PyErr_SetObject
80PyErr_SetString
81PyEval_CallFunction
82PyEval_CallMethod
83PyEval_CallObject
84PyEval_CallObjectWithKeywords
85PyEval_EvalCode
86PyEval_GetBuiltins
87PyEval_GetFrame
88PyEval_GetGlobals
89PyEval_GetLocals
Guido van Rossumb4ae6a31996-08-08 19:05:09 +000090PyEval_GetRestricted
91PyEval_RestoreThread
92PyEval_SaveThread
93PyExc_AccessError
94PyExc_AttributeError
Guido van Rossumb4ae6a31996-08-08 19:05:09 +000095PyExc_EOFError
96PyExc_IOError
97PyExc_ImportError
98PyExc_IndexError
99PyExc_KeyError
100PyExc_KeyboardInterrupt
101PyExc_MemoryError
102PyExc_NameError
103PyExc_OverflowError
104PyExc_RuntimeError
105PyExc_SyntaxError
106PyExc_SystemError
107PyExc_SystemExit
108PyExc_TypeError
109PyExc_ValueError
110PyExc_ZeroDivisionError
111PyFile_AsFile
112PyFile_FromFile
113PyFile_FromString
114PyFile_GetLine
115PyFile_Name
116PyFile_SetBufSize
117PyFile_SoftSpace
118PyFile_Type
119PyFile_WriteObject
120PyFile_WriteString
121PyFloat_AsDouble
122PyFloat_AsString
123PyFloat_FromDouble
124PyFloat_Type
125PyFrame_BlockPop
126PyFrame_BlockSetup
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000127PyFrame_FastToLocals
128PyFrame_LocalsToFast
129PyFrame_New
130PyFrame_Type
131PyFunction_GetCode
132PyFunction_GetDefaults
133PyFunction_GetGlobals
134PyFunction_New
135PyFunction_SetDefaults
136PyFunction_Type
137PyGrammar_AddAccelerators
138PyGrammar_FindDFA
139PyGrammar_LabelRepr
140PyImport_AddModule
141PyImport_Cleanup
142PyImport_ExecCodeModule
143PyImport_FrozenModules
144PyImport_GetMagicNumber
145PyImport_GetModuleDict
146PyImport_ImportFrozenModule
147PyImport_ImportModule
148PyImport_Init
149PyImport_ReloadModule
150PyInstance_DoBinOp
151PyInstance_New
152PyInstance_Type
153PyInt_AsLong
154PyInt_FromLong
155PyInt_GetMax
156PyInt_Type
157PyList_Append
158PyList_AsTuple
159PyList_GetItem
160PyList_GetSlice
161PyList_Insert
162PyList_New
163PyList_Reverse
164PyList_SetItem
165PyList_SetSlice
166PyList_Size
167PyList_Sort
168PyList_Type
169PyLong_AsDouble
170PyLong_AsLong
Guido van Rossum9bc7e0a1997-01-03 21:05:44 +0000171PyLong_AsUnsignedLong
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000172PyLong_FromDouble
173PyLong_FromLong
Guido van Rossum9bc7e0a1997-01-03 21:05:44 +0000174PyLong_FromUnsignedLong
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000175PyLong_FromString
176PyLong_Type
177PyMapping_Check
178PyMapping_GetItemString
179PyMapping_HasKey
180PyMapping_HasKeyString
181PyMapping_Length
182PyMapping_SetItemString
183PyMarshal_Init
184PyMarshal_ReadLongFromFile
185PyMarshal_ReadObjectFromFile
186PyMarshal_ReadObjectFromString
187PyMarshal_WriteLongToFile
188PyMarshal_WriteObjectToFile
Guido van Rossumf62e5bf1996-09-10 18:09:44 +0000189PyMarshal_WriteObjectToString
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000190PyMember_Get
191PyMember_Set
192PyMethod_Class
193PyMethod_Function
194PyMethod_New
195PyMethod_Self
196PyMethod_Type
197PyModule_GetDict
198PyModule_GetName
199PyModule_New
200PyModule_Type
201PyNode_AddChild
202PyNode_Compile
203PyNode_Free
204PyNode_ListTree
205PyNode_New
206PyNumber_Absolute
207PyNumber_Add
208PyNumber_And
209PyNumber_Check
210PyNumber_Coerce
211PyNumber_Divide
212PyNumber_Divmod
213PyNumber_Float
214PyNumber_Int
215PyNumber_Invert
216PyNumber_Long
217PyNumber_Lshift
218PyNumber_Multiply
219PyNumber_Negative
220PyNumber_Or
221PyNumber_Positive
222PyNumber_Power
223PyNumber_Remainder
224PyNumber_Rshift
225PyNumber_Subtract
226PyNumber_Xor
227PyOS_GetLastModificationTime
228PyOS_InitInterrupts
229PyOS_InterruptOccurred
230PyOS_Readline
231PyOS_strtol
232PyOS_strtoul
233PyObject_CallFunction
234PyObject_CallMethod
235PyObject_CallObject
236PyObject_Cmp
237PyObject_Compare
Guido van Rossumf62e5bf1996-09-10 18:09:44 +0000238PyObject_DelItem
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000239PyObject_GetAttr
240PyObject_GetAttrString
241PyObject_GetItem
242PyObject_HasAttrString
243PyObject_Hash
244PyObject_IsTrue
245PyObject_Length
246PyObject_Print
247PyObject_Repr
248PyObject_SetAttr
249PyObject_SetAttrString
250PyObject_SetItem
251PyObject_Str
252PyObject_Type
253PyParser_AddToken
254PyParser_Delete
255PyParser_New
256PyParser_ParseFile
257PyParser_ParseString
258PyParser_SimpleParseFile
259PyParser_SimpleParseString
260PyRange_New
261PyRange_Type
262PyRun_AnyFile
263PyRun_File
264PyRun_InteractiveLoop
265PyRun_InteractiveOne
266PyRun_SimpleFile
267PyRun_SimpleString
268PyRun_String
269PySequence_Check
270PySequence_Concat
271PySequence_Count
Guido van Rossumf62e5bf1996-09-10 18:09:44 +0000272PySequence_DelItem
273PySequence_DelSlice
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000274PySequence_GetItem
275PySequence_GetSlice
276PySequence_In
277PySequence_Index
278PySequence_Length
279PySequence_Repeat
280PySequence_SetItem
281PySequence_SetSlice
282PySequence_Tuple
283PySlice_GetIndices
284PySlice_New
285PySlice_Type
286PyString_AsString
287PyString_Concat
288PyString_ConcatAndDel
289PyString_Format
290PyString_FromString
291PyString_FromStringAndSize
292PyString_Size
293PyString_Type
294PySys_GetFile
295PySys_GetObject
296PySys_Init
297PySys_SetArgv
298PySys_SetObject
299PySys_SetPath
300PyToken_OneChar
301PyToken_TwoChars
302PyTokenizer_Free
303PyTokenizer_FromFile
304PyTokenizer_FromString
305PyTokenizer_Get
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000306PyTraceBack_Here
307PyTraceBack_Print
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000308PyTraceBack_Type
309PyTuple_GetItem
310PyTuple_GetSlice
311PyTuple_New
312PyTuple_SetItem
313PyTuple_Size
314PyTuple_Type
315PyType_Type
316Py_AddPendingCall
317Py_AtExit
318Py_BuildValue
319Py_Cleanup
320Py_CompileString
321Py_DebugFlag
322Py_Exit
323Py_FatalError
324Py_FindMethod
325Py_FindMethodInChain
326Py_FlushLine
327Py_GetArgcArgv
328Py_GetCompiler
329Py_GetCopyright
330Py_GetExecPrefix
331Py_GetPath
332Py_GetPlatform
333Py_GetPrefix
334Py_GetProgramName
335Py_GetVersion
336Py_InitModule4
337Py_Initialize
338Py_MakePendingCalls
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000339Py_SuppressPrintingFlag
340Py_VaBuildValue
341Py_VerboseFlag
342_PyImport_Filetab
343_PyImport_LoadDynamicModule
344_PyImport_MaxSuffixSize
345_PyLong_New
346_PyObject_New
347_PyObject_NewVar
348_PyParser_Grammar
349_PyParser_TokenNames
350_PyString_Resize
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000351_PyTuple_Resize
Guido van Rossum1d6fddb1996-10-21 15:11:12 +0000352_Py_EllipsisObject
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000353_Py_MD5Final
354_Py_MD5Init
355_Py_MD5Update
356_Py_NoneStruct
357_Py_TrueStruct
358_Py_ZeroStruct
359_Py_addarc
360_Py_addbit
361_Py_adddfa
362_Py_addfirstsets
363_Py_addlabel
364_Py_addstate
365_Py_c_diff
366_Py_c_neg
367_Py_c_pow
368_Py_c_prod
369_Py_c_quot
370_Py_c_sum
371_Py_delbitset
372_Py_findlabel
373_Py_mergebitset
374_Py_meta_grammar
375_Py_newbitset
376_Py_newgrammar
377_Py_pgen
378_Py_printgrammar
379_Py_printnonterminals
380_Py_re_compile_fastmap
381_Py_re_compile_pattern
382_Py_re_match
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000383_Py_re_search
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000384_Py_re_set_syntax
385_Py_re_syntax
386_Py_samebitset
387_Py_translatelabels
388import_modules
389initarray
390initaudioop
391initbinascii
392initcmath
393initcrypt
394initerrno
395initfcntl
396initgrp
397initimageop
398initimp
399initmath
400initmd5
401initoperator
Guido van Rossumf62e5bf1996-09-10 18:09:44 +0000402initparser
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000403initposix
404initpwd
405initregex
406initrgbimg
407initrotor
408initselect
409initsignal
410initsocket
411initstrop
412initstruct
Guido van Rossume2b4f091997-04-29 16:27:09 +0000413_PyImport_Inittab
Guido van Rossumb4ae6a31996-08-08 19:05:09 +0000414inittime
415main