Kaydet (Commit) ed2f4237 authored tarafından Christian Heimes's avatar Christian Heimes

Bumped up 2.6 to 2.7

üst 213faca2
...@@ -39,15 +39,15 @@ ...@@ -39,15 +39,15 @@
<Tool <Tool
Name="VCLinkerTool" Name="VCLinkerTool"
AdditionalDependencies="getbuildinfo.o" AdditionalDependencies="getbuildinfo.o"
OutputFile="./python26.dll" OutputFile="./python27.dll"
LinkIncremental="1" LinkIncremental="1"
SuppressStartupBanner="TRUE" SuppressStartupBanner="TRUE"
IgnoreDefaultLibraryNames="libc" IgnoreDefaultLibraryNames="libc"
GenerateDebugInformation="TRUE" GenerateDebugInformation="TRUE"
ProgramDatabaseFile=".\./python26.pdb" ProgramDatabaseFile=".\./python27.pdb"
SubSystem="2" SubSystem="2"
BaseAddress="0x1e000000" BaseAddress="0x1e000000"
ImportLibrary=".\./python26.lib" ImportLibrary=".\./python27.lib"
TargetMachine="1"/> TargetMachine="1"/>
<Tool <Tool
Name="VCMIDLTool"/> Name="VCMIDLTool"/>
...@@ -99,15 +99,15 @@ ...@@ -99,15 +99,15 @@
<Tool <Tool
Name="VCLinkerTool" Name="VCLinkerTool"
AdditionalDependencies="getbuildinfo.o" AdditionalDependencies="getbuildinfo.o"
OutputFile="./python26_d.dll" OutputFile="./python27_d.dll"
LinkIncremental="1" LinkIncremental="1"
SuppressStartupBanner="TRUE" SuppressStartupBanner="TRUE"
IgnoreDefaultLibraryNames="libc" IgnoreDefaultLibraryNames="libc"
GenerateDebugInformation="TRUE" GenerateDebugInformation="TRUE"
ProgramDatabaseFile=".\./python26_d.pdb" ProgramDatabaseFile=".\./python27_d.pdb"
SubSystem="2" SubSystem="2"
BaseAddress="0x1e000000" BaseAddress="0x1e000000"
ImportLibrary=".\./python26_d.lib" ImportLibrary=".\./python27_d.lib"
TargetMachine="1"/> TargetMachine="1"/>
<Tool <Tool
Name="VCMIDLTool"/> Name="VCMIDLTool"/>
...@@ -166,15 +166,15 @@ ...@@ -166,15 +166,15 @@
Name="VCLinkerTool" Name="VCLinkerTool"
AdditionalOptions=" /MACHINE:IA64 /USELINK:MS_SDK" AdditionalOptions=" /MACHINE:IA64 /USELINK:MS_SDK"
AdditionalDependencies="getbuildinfo.o" AdditionalDependencies="getbuildinfo.o"
OutputFile="./python26.dll" OutputFile="./python27.dll"
LinkIncremental="1" LinkIncremental="1"
SuppressStartupBanner="FALSE" SuppressStartupBanner="FALSE"
IgnoreDefaultLibraryNames="libc" IgnoreDefaultLibraryNames="libc"
GenerateDebugInformation="TRUE" GenerateDebugInformation="TRUE"
ProgramDatabaseFile=".\./python26.pdb" ProgramDatabaseFile=".\./python27.pdb"
SubSystem="2" SubSystem="2"
BaseAddress="0x1e000000" BaseAddress="0x1e000000"
ImportLibrary=".\./python26.lib" ImportLibrary=".\./python27.lib"
TargetMachine="0"/> TargetMachine="0"/>
<Tool <Tool
Name="VCMIDLTool"/> Name="VCMIDLTool"/>
...@@ -233,15 +233,15 @@ ...@@ -233,15 +233,15 @@
Name="VCLinkerTool" Name="VCLinkerTool"
AdditionalOptions=" /MACHINE:AMD64 /USELINK:MS_SDK" AdditionalOptions=" /MACHINE:AMD64 /USELINK:MS_SDK"
AdditionalDependencies="getbuildinfo.o" AdditionalDependencies="getbuildinfo.o"
OutputFile="./python26.dll" OutputFile="./python27.dll"
LinkIncremental="1" LinkIncremental="1"
SuppressStartupBanner="TRUE" SuppressStartupBanner="TRUE"
IgnoreDefaultLibraryNames="libc" IgnoreDefaultLibraryNames="libc"
GenerateDebugInformation="TRUE" GenerateDebugInformation="TRUE"
ProgramDatabaseFile=".\./python26.pdb" ProgramDatabaseFile=".\./python27.pdb"
SubSystem="2" SubSystem="2"
BaseAddress="0x1e000000" BaseAddress="0x1e000000"
ImportLibrary=".\./python26.lib" ImportLibrary=".\./python27.lib"
TargetMachine="0"/> TargetMachine="0"/>
<Tool <Tool
Name="VCMIDLTool"/> Name="VCMIDLTool"/>
......
...@@ -12,7 +12,7 @@ the "Standard" toolbar"), and build the projects. ...@@ -12,7 +12,7 @@ the "Standard" toolbar"), and build the projects.
The proper order to build subprojects: The proper order to build subprojects:
1) pythoncore (this builds the main Python DLL and library files, 1) pythoncore (this builds the main Python DLL and library files,
python26.{dll, lib} in Release mode) python27.{dll, lib} in Release mode)
NOTE: in previous releases, this subproject was NOTE: in previous releases, this subproject was
named after the release number, e.g. python20. named after the release number, e.g. python20.
...@@ -26,7 +26,7 @@ The proper order to build subprojects: ...@@ -26,7 +26,7 @@ The proper order to build subprojects:
test slave; see SUBPROJECTS below) test slave; see SUBPROJECTS below)
When using the Debug setting, the output files have a _d added to When using the Debug setting, the output files have a _d added to
their name: python26_d.dll, python_d.exe, parser_d.pyd, and so on. their name: python27_d.dll, python_d.exe, parser_d.pyd, and so on.
SUBPROJECTS SUBPROJECTS
----------- -----------
......
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
/> />
<UserMacro <UserMacro
Name="PyDllName" Name="PyDllName"
Value="python26" Value="python27"
/> />
<UserMacro <UserMacro
Name="PythonExe" Name="PythonExe"
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
<Tool <Tool
Name="VCLinkerTool" Name="VCLinkerTool"
AdditionalOptions="/export:initexample" AdditionalOptions="/export:initexample"
AdditionalDependencies="odbc32.lib odbccp32.lib python26.lib" AdditionalDependencies="odbc32.lib odbccp32.lib python27.lib"
OutputFile=".\Release/example.pyd" OutputFile=".\Release/example.pyd"
LinkIncremental="1" LinkIncremental="1"
SuppressStartupBanner="TRUE" SuppressStartupBanner="TRUE"
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
<Tool <Tool
Name="VCLinkerTool" Name="VCLinkerTool"
AdditionalOptions="/export:initexample" AdditionalOptions="/export:initexample"
AdditionalDependencies="odbc32.lib odbccp32.lib python26_d.lib" AdditionalDependencies="odbc32.lib odbccp32.lib python27_d.lib"
OutputFile=".\Debug/example_d.pyd" OutputFile=".\Debug/example_d.pyd"
LinkIncremental="1" LinkIncremental="1"
SuppressStartupBanner="TRUE" SuppressStartupBanner="TRUE"
......
...@@ -237,7 +237,7 @@ $(OUT)%$O: %.c ...@@ -237,7 +237,7 @@ $(OUT)%$O: %.c
# Output file names # Output file names
PYTHON_VER= 2.6 PYTHON_VER= 2.6
PYTHON_LIB= python26 PYTHON_LIB= python27
PYTHON.LIB= $(PYTHON_LIB)_s$A PYTHON.LIB= $(PYTHON_LIB)_s$A
PYTHON.IMPLIB= $(PYTHON_LIB)$A PYTHON.IMPLIB= $(PYTHON_LIB)$A
ifeq ($(EXEOMF),yes) ifeq ($(EXEOMF),yes)
......
...@@ -309,7 +309,7 @@ Procedure ...@@ -309,7 +309,7 @@ Procedure
to be installed in a directory other than the PYTHONHOME directory, set to be installed in a directory other than the PYTHONHOME directory, set
the value of the Makefile variable EXE_DIR to the appropriate directory. the value of the Makefile variable EXE_DIR to the appropriate directory.
3. If you wish the Python core DLL (python26.dll) to be installed in a 3. If you wish the Python core DLL (python27.dll) to be installed in a
directory other than the directory in which the Python executables are directory other than the directory in which the Python executables are
installed (by default, the PYTHONHOME directory), set the value of the installed (by default, the PYTHONHOME directory), set the value of the
Makefile variable DLL_DIR to the appropriate directory. This DLL must Makefile variable DLL_DIR to the appropriate directory. This DLL must
......
LIBRARY python26 INITINSTANCE TERMINSTANCE LIBRARY python27 INITINSTANCE TERMINSTANCE
DESCRIPTION "Python 2.6 Core DLL" DESCRIPTION "Python 2.6 Core DLL"
PROTMODE PROTMODE
DATA MULTIPLE NONSHARED DATA MULTIPLE NONSHARED
EXPORTS EXPORTS
; From python26_s.lib(config) ; From python27_s.lib(config)
"_PyImport_Inittab" "_PyImport_Inittab"
; From python26_s.lib(dlfcn) ; From python27_s.lib(dlfcn)
; "dlopen" ; "dlopen"
; "dlsym" ; "dlsym"
; "dlclose" ; "dlclose"
; "dlerror" ; "dlerror"
; From python26_s.lib(getpathp) ; From python27_s.lib(getpathp)
"Py_GetProgramFullPath" "Py_GetProgramFullPath"
"Py_GetPrefix" "Py_GetPrefix"
"Py_GetExecPrefix" "Py_GetExecPrefix"
"Py_GetPath" "Py_GetPath"
; From python26_s.lib(getbuildinfo) ; From python27_s.lib(getbuildinfo)
"Py_GetBuildInfo" "Py_GetBuildInfo"
"_Py_svnversion" "_Py_svnversion"
; From python26_s.lib(main) ; From python27_s.lib(main)
"Py_Main" "Py_Main"
"Py_GetArgcArgv" "Py_GetArgcArgv"
; From python26_s.lib(acceler) ; From python27_s.lib(acceler)
"PyGrammar_AddAccelerators" "PyGrammar_AddAccelerators"
"PyGrammar_RemoveAccelerators" "PyGrammar_RemoveAccelerators"
; From python26_s.lib(grammar1) ; From python27_s.lib(grammar1)
"PyGrammar_FindDFA" "PyGrammar_FindDFA"
"PyGrammar_LabelRepr" "PyGrammar_LabelRepr"
; From python26_s.lib(listnode) ; From python27_s.lib(listnode)
"PyNode_ListTree" "PyNode_ListTree"
; From python26_s.lib(node) ; From python27_s.lib(node)
"PyNode_New" "PyNode_New"
"PyNode_AddChild" "PyNode_AddChild"
"PyNode_Free" "PyNode_Free"
; From python26_s.lib(parser) ; From python27_s.lib(parser)
"PyParser_AddToken" "PyParser_AddToken"
"PyParser_New" "PyParser_New"
"PyParser_Delete" "PyParser_Delete"
; From python26_s.lib(parsetok) ; From python27_s.lib(parsetok)
"Py_TabcheckFlag" "Py_TabcheckFlag"
"PyParser_ParseString" "PyParser_ParseString"
"PyParser_ParseStringFlagsFilename" "PyParser_ParseStringFlagsFilename"
...@@ -56,18 +56,18 @@ EXPORTS ...@@ -56,18 +56,18 @@ EXPORTS
"PyParser_ParseFileFlags" "PyParser_ParseFileFlags"
"PyParser_ParseStringFlags" "PyParser_ParseStringFlags"
; From python26_s.lib(bitset) ; From python27_s.lib(bitset)
"_Py_newbitset" "_Py_newbitset"
"_Py_delbitset" "_Py_delbitset"
"_Py_addbit" "_Py_addbit"
"_Py_samebitset" "_Py_samebitset"
"_Py_mergebitset" "_Py_mergebitset"
; From python26_s.lib(metagrammar) ; From python27_s.lib(metagrammar)
"_Py_meta_grammar" "_Py_meta_grammar"
"Py_meta_grammar" "Py_meta_grammar"
; From python26_s.lib(tokenizer) ; From python27_s.lib(tokenizer)
"PyToken_OneChar" "PyToken_OneChar"
"PyToken_TwoChars" "PyToken_TwoChars"
"PyToken_ThreeChars" "PyToken_ThreeChars"
...@@ -77,14 +77,14 @@ EXPORTS ...@@ -77,14 +77,14 @@ EXPORTS
"PyTokenizer_Get" "PyTokenizer_Get"
"_PyParser_TokenNames" "_PyParser_TokenNames"
; From python26_s.lib(myreadline) ; From python27_s.lib(myreadline)
"_PyOS_ReadlineTState" "_PyOS_ReadlineTState"
"PyOS_ReadlineFunctionPointer" "PyOS_ReadlineFunctionPointer"
"PyOS_StdioReadline" "PyOS_StdioReadline"
"PyOS_Readline" "PyOS_Readline"
"PyOS_InputHook" "PyOS_InputHook"
; From python26_s.lib(abstract) ; From python27_s.lib(abstract)
"_PyObject_LengthHint" "_PyObject_LengthHint"
"PyMapping_Size" "PyMapping_Size"
"PyObject_CallMethod" "PyObject_CallMethod"
...@@ -175,13 +175,13 @@ EXPORTS ...@@ -175,13 +175,13 @@ EXPORTS
"PyObject_IsInstance" "PyObject_IsInstance"
"PyObject_IsSubclass" "PyObject_IsSubclass"
; From python26_s.lib(boolobject) ; From python27_s.lib(boolobject)
"PyBool_FromLong" "PyBool_FromLong"
"PyBool_Type" "PyBool_Type"
"_Py_ZeroStruct" "_Py_ZeroStruct"
"_Py_TrueStruct" "_Py_TrueStruct"
; From python26_s.lib(bufferobject) ; From python27_s.lib(bufferobject)
"PyBuffer_FromObject" "PyBuffer_FromObject"
"PyBuffer_FromReadWriteObject" "PyBuffer_FromReadWriteObject"
"PyBuffer_FromMemory" "PyBuffer_FromMemory"
...@@ -189,13 +189,13 @@ EXPORTS ...@@ -189,13 +189,13 @@ EXPORTS
"PyBuffer_New" "PyBuffer_New"
"PyBuffer_Type" "PyBuffer_Type"
; From python26_s.lib(cellobject) ; From python27_s.lib(cellobject)
"PyCell_New" "PyCell_New"
"PyCell_Get" "PyCell_Get"
"PyCell_Set" "PyCell_Set"
"PyCell_Type" "PyCell_Type"
; From python26_s.lib(classobject) ; From python27_s.lib(classobject)
"PyClass_New" "PyClass_New"
"PyClass_IsSubclass" "PyClass_IsSubclass"
"PyInstance_New" "PyInstance_New"
...@@ -210,7 +210,7 @@ EXPORTS ...@@ -210,7 +210,7 @@ EXPORTS
"PyInstance_Type" "PyInstance_Type"
"PyMethod_Type" "PyMethod_Type"
; From python26_s.lib(cobject) ; From python27_s.lib(cobject)
"PyCObject_FromVoidPtr" "PyCObject_FromVoidPtr"
"PyCObject_FromVoidPtrAndDesc" "PyCObject_FromVoidPtrAndDesc"
"PyCObject_AsVoidPtr" "PyCObject_AsVoidPtr"
...@@ -219,13 +219,13 @@ EXPORTS ...@@ -219,13 +219,13 @@ EXPORTS
"PyCObject_SetVoidPtr" "PyCObject_SetVoidPtr"
"PyCObject_Type" "PyCObject_Type"
; From python26_s.lib(codeobject) ; From python27_s.lib(codeobject)
"PyCode_New" "PyCode_New"
"PyCode_Addr2Line" "PyCode_Addr2Line"
"PyCode_CheckLineNumber" "PyCode_CheckLineNumber"
"PyCode_Type" "PyCode_Type"
; From python26_s.lib(complexobject) ; From python27_s.lib(complexobject)
"_Py_c_pow" "_Py_c_pow"
"_Py_c_sum" "_Py_c_sum"
"_Py_c_diff" "_Py_c_diff"
...@@ -239,7 +239,7 @@ EXPORTS ...@@ -239,7 +239,7 @@ EXPORTS
"PyComplex_AsCComplex" "PyComplex_AsCComplex"
"PyComplex_Type" "PyComplex_Type"
; From python26_s.lib(descrobject) ; From python27_s.lib(descrobject)
"PyWrapper_New" "PyWrapper_New"
"PyDescr_NewMethod" "PyDescr_NewMethod"
"PyDescr_NewClassMethod" "PyDescr_NewClassMethod"
...@@ -250,7 +250,7 @@ EXPORTS ...@@ -250,7 +250,7 @@ EXPORTS
"PyWrapperDescr_Type" "PyWrapperDescr_Type"
"PyProperty_Type" "PyProperty_Type"
; From python26_s.lib(dictobject) ; From python27_s.lib(dictobject)
"PyDict_New" "PyDict_New"
"PyDict_GetItem" "PyDict_GetItem"
"PyDict_SetItem" "PyDict_SetItem"
...@@ -274,11 +274,11 @@ EXPORTS ...@@ -274,11 +274,11 @@ EXPORTS
"PyDictIterValue_Type" "PyDictIterValue_Type"
"PyDictIterItem_Type" "PyDictIterItem_Type"
; From python26_s.lib(enumobject) ; From python27_s.lib(enumobject)
"PyEnum_Type" "PyEnum_Type"
"PyReversed_Type" "PyReversed_Type"
; From python26_s.lib(fileobject) ; From python27_s.lib(fileobject)
"PyFile_FromString" "PyFile_FromString"
"Py_UniversalNewlineFread" "Py_UniversalNewlineFread"
"PyFile_GetLine" "PyFile_GetLine"
...@@ -294,7 +294,7 @@ EXPORTS ...@@ -294,7 +294,7 @@ EXPORTS
"PyFile_Name" "PyFile_Name"
"PyFile_Type" "PyFile_Type"
; From python26_s.lib(floatobject) ; From python27_s.lib(floatobject)
"PyFloat_FromString" "PyFloat_FromString"
"PyFloat_AsDouble" "PyFloat_AsDouble"
"PyFloat_Fini" "PyFloat_Fini"
...@@ -309,7 +309,7 @@ EXPORTS ...@@ -309,7 +309,7 @@ EXPORTS
"PyFloat_AsStringEx" "PyFloat_AsStringEx"
"PyFloat_Type" "PyFloat_Type"
; From python26_s.lib(frameobject) ; From python27_s.lib(frameobject)
"PyFrame_New" "PyFrame_New"
"PyFrame_FastToLocals" "PyFrame_FastToLocals"
"PyFrame_LocalsToFast" "PyFrame_LocalsToFast"
...@@ -319,7 +319,7 @@ EXPORTS ...@@ -319,7 +319,7 @@ EXPORTS
"PyFrame_BlockPop" "PyFrame_BlockPop"
"PyFrame_Type" "PyFrame_Type"
; From python26_s.lib(funcobject) ; From python27_s.lib(funcobject)
"PyFunction_New" "PyFunction_New"
"PyFunction_GetCode" "PyFunction_GetCode"
"PyFunction_GetGlobals" "PyFunction_GetGlobals"
...@@ -334,12 +334,12 @@ EXPORTS ...@@ -334,12 +334,12 @@ EXPORTS
"PyClassMethod_Type" "PyClassMethod_Type"
"PyStaticMethod_Type" "PyStaticMethod_Type"
; From python26_s.lib(genobject) ; From python27_s.lib(genobject)
"PyGen_New" "PyGen_New"
"PyGen_NeedsFinalizing" "PyGen_NeedsFinalizing"
"PyGen_Type" "PyGen_Type"
; From python26_s.lib(intobject) ; From python27_s.lib(intobject)
"PyInt_AsLong" "PyInt_AsLong"
"PyInt_AsUnsignedLongMask" "PyInt_AsUnsignedLongMask"
"PyInt_AsUnsignedLongLongMask" "PyInt_AsUnsignedLongLongMask"
...@@ -354,13 +354,13 @@ EXPORTS ...@@ -354,13 +354,13 @@ EXPORTS
"_PyInt_Init" "_PyInt_Init"
"PyInt_Type" "PyInt_Type"
; From python26_s.lib(iterobject) ; From python27_s.lib(iterobject)
"PySeqIter_New" "PySeqIter_New"
"PyCallIter_New" "PyCallIter_New"
"PySeqIter_Type" "PySeqIter_Type"
"PyCallIter_Type" "PyCallIter_Type"
; From python26_s.lib(listobject) ; From python27_s.lib(listobject)
"PyList_New" "PyList_New"
"PyList_Append" "PyList_Append"
"PyList_Size" "PyList_Size"
...@@ -378,7 +378,7 @@ EXPORTS ...@@ -378,7 +378,7 @@ EXPORTS
"PyListIter_Type" "PyListIter_Type"
"PyListRevIter_Type" "PyListRevIter_Type"
; From python26_s.lib(longobject) ; From python27_s.lib(longobject)
"PyLong_FromDouble" "PyLong_FromDouble"
"PyLong_AsLong" "PyLong_AsLong"
"_PyLong_AsSsize_t" "_PyLong_AsSsize_t"
...@@ -408,7 +408,7 @@ EXPORTS ...@@ -408,7 +408,7 @@ EXPORTS
"PyLong_Type" "PyLong_Type"
"_PyLong_DigitValue" "_PyLong_DigitValue"
; From python26_s.lib(methodobject) ; From python27_s.lib(methodobject)
"PyCFunction_Call" "PyCFunction_Call"
"Py_FindMethodInChain" "Py_FindMethodInChain"
"PyCFunction_GetFunction" "PyCFunction_GetFunction"
...@@ -420,7 +420,7 @@ EXPORTS ...@@ -420,7 +420,7 @@ EXPORTS
"PyCFunction_New" "PyCFunction_New"
"PyCFunction_Type" "PyCFunction_Type"
; From python26_s.lib(moduleobject) ; From python27_s.lib(moduleobject)
"PyModule_New" "PyModule_New"
"_PyModule_Clear" "_PyModule_Clear"
"PyModule_GetDict" "PyModule_GetDict"
...@@ -428,7 +428,7 @@ EXPORTS ...@@ -428,7 +428,7 @@ EXPORTS
"PyModule_GetFilename" "PyModule_GetFilename"
"PyModule_Type" "PyModule_Type"
; From python26_s.lib(object) ; From python27_s.lib(object)
"Py_DivisionWarningFlag" "Py_DivisionWarningFlag"
"PyObject_Str" "PyObject_Str"
"PyObject_Repr" "PyObject_Repr"
...@@ -481,15 +481,15 @@ EXPORTS ...@@ -481,15 +481,15 @@ EXPORTS
"_PyTrash_delete_nesting" "_PyTrash_delete_nesting"
"_PyTrash_delete_later" "_PyTrash_delete_later"
; From python26_s.lib(obmalloc) ; From python27_s.lib(obmalloc)
"PyObject_Malloc" "PyObject_Malloc"
"PyObject_Free" "PyObject_Free"
"PyObject_Realloc" "PyObject_Realloc"
; From python26_s.lib(rangeobject) ; From python27_s.lib(rangeobject)
"PyRange_Type" "PyRange_Type"
; From python26_s.lib(setobject) ; From python27_s.lib(setobject)
"PySet_Pop" "PySet_Pop"
"PySet_New" "PySet_New"
"PyFrozenSet_New" "PyFrozenSet_New"
...@@ -504,7 +504,7 @@ EXPORTS ...@@ -504,7 +504,7 @@ EXPORTS
"PySet_Type" "PySet_Type"
"PyFrozenSet_Type" "PyFrozenSet_Type"
; From python26_s.lib(sliceobject) ; From python27_s.lib(sliceobject)
"_PySlice_FromIndices" "_PySlice_FromIndices"
"PySlice_GetIndices" "PySlice_GetIndices"
"PySlice_GetIndicesEx" "PySlice_GetIndicesEx"
...@@ -512,7 +512,7 @@ EXPORTS ...@@ -512,7 +512,7 @@ EXPORTS
"_Py_EllipsisObject" "_Py_EllipsisObject"
"PySlice_Type" "PySlice_Type"
; From python26_s.lib(stringobject) ; From python27_s.lib(stringobject)
"PyString_FromStringAndSize" "PyString_FromStringAndSize"
"PyString_InternInPlace" "PyString_InternInPlace"
"PyString_FromString" "PyString_FromString"
...@@ -543,12 +543,12 @@ EXPORTS ...@@ -543,12 +543,12 @@ EXPORTS
"PyString_Type" "PyString_Type"
"PyBaseString_Type" "PyBaseString_Type"
; From python26_s.lib(structseq) ; From python27_s.lib(structseq)
"PyStructSequence_InitType" "PyStructSequence_InitType"
"PyStructSequence_New" "PyStructSequence_New"
"PyStructSequence_UnnamedField" "PyStructSequence_UnnamedField"
; From python26_s.lib(tupleobject) ; From python27_s.lib(tupleobject)
"PyTuple_New" "PyTuple_New"
"PyTuple_Pack" "PyTuple_Pack"
"_PyTuple_Resize" "_PyTuple_Resize"
...@@ -560,7 +560,7 @@ EXPORTS ...@@ -560,7 +560,7 @@ EXPORTS
"PyTuple_Type" "PyTuple_Type"
"PyTupleIter_Type" "PyTupleIter_Type"
; From python26_s.lib(typeobject) ; From python27_s.lib(typeobject)
"PyType_IsSubtype" "PyType_IsSubtype"
"_PyType_Lookup" "_PyType_Lookup"
"PyType_Ready" "PyType_Ready"
...@@ -571,7 +571,7 @@ EXPORTS ...@@ -571,7 +571,7 @@ EXPORTS
"PyBaseObject_Type" "PyBaseObject_Type"
"PySuper_Type" "PySuper_Type"
; From python26_s.lib(unicodeobject) ; From python27_s.lib(unicodeobject)
"PyUnicodeUCS2_Resize" "PyUnicodeUCS2_Resize"
"PyUnicodeUCS2_FromOrdinal" "PyUnicodeUCS2_FromOrdinal"
"PyUnicodeUCS2_FromObject" "PyUnicodeUCS2_FromObject"
...@@ -637,7 +637,7 @@ EXPORTS ...@@ -637,7 +637,7 @@ EXPORTS
"PyUnicode_AsDecodedObject" "PyUnicode_AsDecodedObject"
"PyUnicode_Type" "PyUnicode_Type"
; From python26_s.lib(unicodectype) ; From python27_s.lib(unicodectype)
"_PyUnicode_TypeRecords" "_PyUnicode_TypeRecords"
"_PyUnicodeUCS2_ToNumeric" "_PyUnicodeUCS2_ToNumeric"
"_PyUnicodeUCS2_IsLowercase" "_PyUnicodeUCS2_IsLowercase"
...@@ -655,7 +655,7 @@ EXPORTS ...@@ -655,7 +655,7 @@ EXPORTS
"_PyUnicodeUCS2_IsNumeric" "_PyUnicodeUCS2_IsNumeric"
"_PyUnicodeUCS2_IsAlpha" "_PyUnicodeUCS2_IsAlpha"
; From python26_s.lib(weakrefobject) ; From python27_s.lib(weakrefobject)
"PyWeakref_NewRef" "PyWeakref_NewRef"
"PyWeakref_NewProxy" "PyWeakref_NewProxy"
"PyObject_ClearWeakRefs" "PyObject_ClearWeakRefs"
...@@ -666,7 +666,7 @@ EXPORTS ...@@ -666,7 +666,7 @@ EXPORTS
"_PyWeakref_ProxyType" "_PyWeakref_ProxyType"
"_PyWeakref_CallableProxyType" "_PyWeakref_CallableProxyType"
; From python26_s.lib(Python-ast) ; From python27_s.lib(Python-ast)
; "init_ast" ; "init_ast"
"Module" "Module"
"Interactive" "Interactive"
...@@ -725,18 +725,18 @@ EXPORTS ...@@ -725,18 +725,18 @@ EXPORTS
"alias" "alias"
"PyAST_mod2obj" "PyAST_mod2obj"
; From python26_s.lib(asdl) ; From python27_s.lib(asdl)
"asdl_seq_new" "asdl_seq_new"
"asdl_int_seq_new" "asdl_int_seq_new"
; From python26_s.lib(ast) ; From python27_s.lib(ast)
"PyAST_FromNode" "PyAST_FromNode"
; From python26_s.lib(bltinmodule) ; From python27_s.lib(bltinmodule)
"_PyBuiltin_Init" "_PyBuiltin_Init"
"Py_FileSystemDefaultEncoding" "Py_FileSystemDefaultEncoding"
; From python26_s.lib(exceptions) ; From python27_s.lib(exceptions)
"PyUnicodeEncodeError_GetStart" "PyUnicodeEncodeError_GetStart"
"PyUnicodeDecodeError_GetStart" "PyUnicodeDecodeError_GetStart"
"PyUnicodeEncodeError_GetEnd" "PyUnicodeEncodeError_GetEnd"
...@@ -812,7 +812,7 @@ EXPORTS ...@@ -812,7 +812,7 @@ EXPORTS
"PyExc_ImportWarning" "PyExc_ImportWarning"
"PyExc_MemoryErrorInst" "PyExc_MemoryErrorInst"
; From python26_s.lib(ceval) ; From python27_s.lib(ceval)
"PyEval_EvalFrameEx" "PyEval_EvalFrameEx"
"PyEval_CallObjectWithKeywords" "PyEval_CallObjectWithKeywords"
"PyEval_EvalCodeEx" "PyEval_EvalCodeEx"
...@@ -851,13 +851,13 @@ EXPORTS ...@@ -851,13 +851,13 @@ EXPORTS
"_Py_CheckInterval" "_Py_CheckInterval"
"_Py_Ticker" "_Py_Ticker"
; From python26_s.lib(compile) ; From python27_s.lib(compile)
"_Py_Mangle" "_Py_Mangle"
"PyAST_Compile" "PyAST_Compile"
"PyNode_Compile" "PyNode_Compile"
"Py_OptimizeFlag" "Py_OptimizeFlag"
; From python26_s.lib(codecs) ; From python27_s.lib(codecs)
"_PyCodec_Lookup" "_PyCodec_Lookup"
"PyCodec_Encode" "PyCodec_Encode"
"PyCodec_Decode" "PyCodec_Decode"
...@@ -876,7 +876,7 @@ EXPORTS ...@@ -876,7 +876,7 @@ EXPORTS
"PyCodec_LookupError" "PyCodec_LookupError"
"PyCodec_StrictErrors" "PyCodec_StrictErrors"
; From python26_s.lib(errors) ; From python27_s.lib(errors)
"PyErr_SetNone" "PyErr_SetNone"
"PyErr_SetString" "PyErr_SetString"
"PyErr_GivenExceptionMatches" "PyErr_GivenExceptionMatches"
...@@ -902,16 +902,16 @@ EXPORTS ...@@ -902,16 +902,16 @@ EXPORTS
"PyErr_Warn" "PyErr_Warn"
"PyErr_WarnExplicit" "PyErr_WarnExplicit"
; From python26_s.lib(frozen) ; From python27_s.lib(frozen)
"PyImport_FrozenModules" "PyImport_FrozenModules"
; From python26_s.lib(frozenmain) ; From python27_s.lib(frozenmain)
"Py_FrozenMain" "Py_FrozenMain"
; From python26_s.lib(future) ; From python27_s.lib(future)
"PyFuture_FromAST" "PyFuture_FromAST"
; From python26_s.lib(getargs) ; From python27_s.lib(getargs)
"PyArg_Parse" "PyArg_Parse"
"_PyArg_Parse_SizeT" "_PyArg_Parse_SizeT"
"PyArg_ParseTuple" "PyArg_ParseTuple"
...@@ -925,25 +925,25 @@ EXPORTS ...@@ -925,25 +925,25 @@ EXPORTS
"_PyArg_VaParse_SizeT" "_PyArg_VaParse_SizeT"
"_PyArg_VaParseTupleAndKeywords_SizeT" "_PyArg_VaParseTupleAndKeywords_SizeT"
; From python26_s.lib(getcompiler) ; From python27_s.lib(getcompiler)
"Py_GetCompiler" "Py_GetCompiler"
; From python26_s.lib(getcopyright) ; From python27_s.lib(getcopyright)
"Py_GetCopyright" "Py_GetCopyright"
; From python26_s.lib(getmtime) ; From python27_s.lib(getmtime)
"PyOS_GetLastModificationTime" "PyOS_GetLastModificationTime"
; From python26_s.lib(getplatform) ; From python27_s.lib(getplatform)
"Py_GetPlatform" "Py_GetPlatform"
; From python26_s.lib(getversion) ; From python27_s.lib(getversion)
"Py_GetVersion" "Py_GetVersion"
; From python26_s.lib(graminit) ; From python27_s.lib(graminit)
"_PyParser_Grammar" "_PyParser_Grammar"
; From python26_s.lib(import) ; From python27_s.lib(import)
"_PyImport_Init" "_PyImport_Init"
"_PyImportHooks_Init" "_PyImportHooks_Init"
"PyImport_ImportModule" "PyImport_ImportModule"
...@@ -970,10 +970,10 @@ EXPORTS ...@@ -970,10 +970,10 @@ EXPORTS
"PyImport_Inittab" "PyImport_Inittab"
"_PyImport_Filetab" "_PyImport_Filetab"
; From python26_s.lib(importdl) ; From python27_s.lib(importdl)
"_PyImport_LoadDynamicModule" "_PyImport_LoadDynamicModule"
; From python26_s.lib(marshal) ; From python27_s.lib(marshal)
"PyMarshal_ReadLongFromFile" "PyMarshal_ReadLongFromFile"
"PyMarshal_WriteObjectToString" "PyMarshal_WriteObjectToString"
"PyMarshal_WriteLongToFile" "PyMarshal_WriteLongToFile"
...@@ -984,7 +984,7 @@ EXPORTS ...@@ -984,7 +984,7 @@ EXPORTS
"PyMarshal_ReadObjectFromString" "PyMarshal_ReadObjectFromString"
"PyMarshal_Init" "PyMarshal_Init"
; From python26_s.lib(modsupport) ; From python27_s.lib(modsupport)
"Py_InitModule4" "Py_InitModule4"
"Py_BuildValue" "Py_BuildValue"
"_Py_BuildValue_SizeT" "_Py_BuildValue_SizeT"
...@@ -997,24 +997,24 @@ EXPORTS ...@@ -997,24 +997,24 @@ EXPORTS
"PyModule_AddStringConstant" "PyModule_AddStringConstant"
"_Py_PackageContext" "_Py_PackageContext"
; From python26_s.lib(mysnprintf) ; From python27_s.lib(mysnprintf)
"PyOS_snprintf" "PyOS_snprintf"
"PyOS_vsnprintf" "PyOS_vsnprintf"
; From python26_s.lib(mystrtoul) ; From python27_s.lib(mystrtoul)
"PyOS_strtoul" "PyOS_strtoul"
"PyOS_strtol" "PyOS_strtol"
; From python26_s.lib(pyarena) ; From python27_s.lib(pyarena)
"PyArena_New" "PyArena_New"
"PyArena_Free" "PyArena_Free"
"PyArena_Malloc" "PyArena_Malloc"
"PyArena_AddPyObject" "PyArena_AddPyObject"
; From python26_s.lib(pyfpe) ; From python27_s.lib(pyfpe)
"PyFPE_dummy" "PyFPE_dummy"
; From python26_s.lib(pystate) ; From python27_s.lib(pystate)
"PyInterpreterState_Clear" "PyInterpreterState_Clear"
"PyThreadState_Clear" "PyThreadState_Clear"
"_PyThread_CurrentFrames" "_PyThread_CurrentFrames"
...@@ -1039,12 +1039,12 @@ EXPORTS ...@@ -1039,12 +1039,12 @@ EXPORTS
"_PyThreadState_Current" "_PyThreadState_Current"
"_PyThreadState_GetFrame" "_PyThreadState_GetFrame"
; From python26_s.lib(pystrtod) ; From python27_s.lib(pystrtod)
"PyOS_ascii_strtod" "PyOS_ascii_strtod"
"PyOS_ascii_formatd" "PyOS_ascii_formatd"
"PyOS_ascii_atof" "PyOS_ascii_atof"
; From python26_s.lib(pythonrun) ; From python27_s.lib(pythonrun)
"Py_IgnoreEnvironmentFlag" "Py_IgnoreEnvironmentFlag"
"Py_DebugFlag" "Py_DebugFlag"
"Py_VerboseFlag" "Py_VerboseFlag"
...@@ -1106,20 +1106,20 @@ EXPORTS ...@@ -1106,20 +1106,20 @@ EXPORTS
"Py_UnicodeFlag" "Py_UnicodeFlag"
"_Py_QnewFlag" "_Py_QnewFlag"
; From python26_s.lib(structmember) ; From python27_s.lib(structmember)
"PyMember_Get" "PyMember_Get"
"PyMember_GetOne" "PyMember_GetOne"
"PyMember_SetOne" "PyMember_SetOne"
"PyMember_Set" "PyMember_Set"
; From python26_s.lib(symtable) ; From python27_s.lib(symtable)
"PySymtable_Build" "PySymtable_Build"
"PySymtable_Free" "PySymtable_Free"
"PyST_GetScope" "PyST_GetScope"
"PySymtable_Lookup" "PySymtable_Lookup"
"PySTEntry_Type" "PySTEntry_Type"
; From python26_s.lib(sysmodule) ; From python27_s.lib(sysmodule)
"_PySys_Init" "_PySys_Init"
"PySys_WriteStderr" "PySys_WriteStderr"
"PySys_SetPath" "PySys_SetPath"
...@@ -1133,22 +1133,22 @@ EXPORTS ...@@ -1133,22 +1133,22 @@ EXPORTS
"PySys_ResetWarnOptions" "PySys_ResetWarnOptions"
"PySys_AddWarnOption" "PySys_AddWarnOption"
; From python26_s.lib(traceback) ; From python27_s.lib(traceback)
"PyTraceBack_Here" "PyTraceBack_Here"
"PyTraceBack_Print" "PyTraceBack_Print"
"PyTraceBack_Type" "PyTraceBack_Type"
; From python26_s.lib(getopt) ; From python27_s.lib(getopt)
"_PyOS_GetOpt" "_PyOS_GetOpt"
"_PyOS_opterr" "_PyOS_opterr"
"_PyOS_optind" "_PyOS_optind"
"_PyOS_optarg" "_PyOS_optarg"
; From python26_s.lib(dynload_shlib) ; From python27_s.lib(dynload_shlib)
"_PyImport_DynLoadFiletab" "_PyImport_DynLoadFiletab"
"_PyImport_GetDynLoadFunc" "_PyImport_GetDynLoadFunc"
; From python26_s.lib(thread) ; From python27_s.lib(thread)
"PyThread_delete_key_value" "PyThread_delete_key_value"
"PyThread_init_thread" "PyThread_init_thread"
"PyThread_start_new_thread" "PyThread_start_new_thread"
...@@ -1166,7 +1166,7 @@ EXPORTS ...@@ -1166,7 +1166,7 @@ EXPORTS
"PyThread_get_key_value" "PyThread_get_key_value"
"PyThread__exit_thread" "PyThread__exit_thread"
; From python26_s.lib(gcmodule) ; From python27_s.lib(gcmodule)
; "initgc" ; "initgc"
"_PyObject_GC_New" "_PyObject_GC_New"
"_PyObject_GC_NewVar" "_PyObject_GC_NewVar"
...@@ -1182,7 +1182,7 @@ EXPORTS ...@@ -1182,7 +1182,7 @@ EXPORTS
"_PyObject_GC_Del" "_PyObject_GC_Del"
"_PyGC_generation0" "_PyGC_generation0"
; From python26_s.lib(signalmodule) ; From python27_s.lib(signalmodule)
; "initsignal" ; "initsignal"
"PyErr_CheckSignals" "PyErr_CheckSignals"
"PyErr_SetInterrupt" "PyErr_SetInterrupt"
...@@ -1191,124 +1191,124 @@ EXPORTS ...@@ -1191,124 +1191,124 @@ EXPORTS
"PyOS_InitInterrupts" "PyOS_InitInterrupts"
"PyOS_AfterFork" "PyOS_AfterFork"
; From python26_s.lib(posixmodule) ; From python27_s.lib(posixmodule)
; "initos2" ; "initos2"
; From python26_s.lib(threadmodule) ; From python27_s.lib(threadmodule)
; "initthread" ; "initthread"
; From python26_s.lib(arraymodule) ; From python27_s.lib(arraymodule)
; "initarray" ; "initarray"
; "array_methods" ; "array_methods"
; From python26_s.lib(binascii) ; From python27_s.lib(binascii)
; "initbinascii" ; "initbinascii"
; From python26_s.lib(cmathmodule) ; From python27_s.lib(cmathmodule)
; "initcmath" ; "initcmath"
; From python26_s.lib(_codecsmodule) ; From python27_s.lib(_codecsmodule)
; "init_codecs" ; "init_codecs"
; From python26_s.lib(collectionsmodule) ; From python27_s.lib(collectionsmodule)
; "initcollections" ; "initcollections"
"dequeiter_type" "dequeiter_type"
"dequereviter_type" "dequereviter_type"
; From python26_s.lib(cPickle) ; From python27_s.lib(cPickle)
; "initcPickle" ; "initcPickle"
; "fast_save_leave" ; "fast_save_leave"
; From python26_s.lib(cStringIO) ; From python27_s.lib(cStringIO)
; "initcStringIO" ; "initcStringIO"
; From python26_s.lib(_csv) ; From python27_s.lib(_csv)
; "init_csv" ; "init_csv"
; From python26_s.lib(datetimemodule) ; From python27_s.lib(datetimemodule)
; "initdatetime" ; "initdatetime"
; From python26_s.lib(dlmodule) ; From python27_s.lib(dlmodule)
; "initdl" ; "initdl"
; From python26_s.lib(errnomodule) ; From python27_s.lib(errnomodule)
; "initerrno" ; "initerrno"
; From python26_s.lib(fcntlmodule) ; From python27_s.lib(fcntlmodule)
; "initfcntl" ; "initfcntl"
; From python26_s.lib(_functoolsmodule) ; From python27_s.lib(_functoolsmodule)
; "init_functools" ; "init_functools"
; From python26_s.lib(_heapqmodule) ; From python27_s.lib(_heapqmodule)
; "init_heapq" ; "init_heapq"
; From python26_s.lib(imageop) ; From python27_s.lib(imageop)
; "initimageop" ; "initimageop"
; From python26_s.lib(itertoolsmodule) ; From python27_s.lib(itertoolsmodule)
; "inititertools" ; "inititertools"
; From python26_s.lib(_localemodule) ; From python27_s.lib(_localemodule)
; "init_locale" ; "init_locale"
; From python26_s.lib(mathmodule) ; From python27_s.lib(mathmodule)
; "initmath" ; "initmath"
; From python26_s.lib(md5) ; From python27_s.lib(md5)
"md5_finish" "md5_finish"
"md5_init" "md5_init"
"md5_append" "md5_append"
; From python26_s.lib(md5module) ; From python27_s.lib(md5module)
; "init_md5" ; "init_md5"
; From python26_s.lib(operator) ; From python27_s.lib(operator)
; "initoperator" ; "initoperator"
; From python26_s.lib(_randommodule) ; From python27_s.lib(_randommodule)
; "init_random" ; "init_random"
; From python26_s.lib(rgbimgmodule) ; From python27_s.lib(rgbimgmodule)
; "initrgbimg" ; "initrgbimg"
; From python26_s.lib(shamodule) ; From python27_s.lib(shamodule)
; "init_sha" ; "init_sha"
; From python26_s.lib(sha256module) ; From python27_s.lib(sha256module)
; "init_sha256" ; "init_sha256"
; From python26_s.lib(sha512module) ; From python27_s.lib(sha512module)
; "init_sha512" ; "init_sha512"
; From python26_s.lib(_sre) ; From python27_s.lib(_sre)
; "init_sre" ; "init_sre"
; From python26_s.lib(stropmodule) ; From python27_s.lib(stropmodule)
; "initstrop" ; "initstrop"
; From python26_s.lib(_struct) ; From python27_s.lib(_struct)
; "init_struct" ; "init_struct"
; From python26_s.lib(symtablemodule) ; From python27_s.lib(symtablemodule)
; "init_symtable" ; "init_symtable"
; From python26_s.lib(termios) ; From python27_s.lib(termios)
; "inittermios" ; "inittermios"
; From python26_s.lib(timemodule) ; From python27_s.lib(timemodule)
; "inittime" ; "inittime"
"_PyTime_DoubleToTimet" "_PyTime_DoubleToTimet"
; "inittimezone" ; "inittimezone"
; From python26_s.lib(timingmodule) ; From python27_s.lib(timingmodule)
; "inittiming" ; "inittiming"
; From python26_s.lib(_weakref) ; From python27_s.lib(_weakref)
; "init_weakref" ; "init_weakref"
; From python26_s.lib(xxsubtype) ; From python27_s.lib(xxsubtype)
; "initxxsubtype" ; "initxxsubtype"
; From python26_s.lib(zipimport) ; From python27_s.lib(zipimport)
; "initzipimport" ; "initzipimport"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment