Commit 9ab2fb1c authored by Łukasz Langa's avatar Łukasz Langa

Bump to 3.9.0a0

parent 23d7ce74
...@@ -36,7 +36,7 @@ import suspicious ...@@ -36,7 +36,7 @@ import suspicious
ISSUE_URI = 'https://bugs.python.org/issue%s' ISSUE_URI = 'https://bugs.python.org/issue%s'
SOURCE_URI = 'https://github.com/python/cpython/tree/3.8/%s' SOURCE_URI = 'https://github.com/python/cpython/tree/master/%s'
# monkey-patch reST parser to disable alphabetic and roman enumerated lists # monkey-patch reST parser to disable alphabetic and roman enumerated lists
from docutils.parsers.rst.states import Body from docutils.parsers.rst.states import Body
......
...@@ -10,13 +10,13 @@ Using the Python Interpreter ...@@ -10,13 +10,13 @@ Using the Python Interpreter
Invoking the Interpreter Invoking the Interpreter
======================== ========================
The Python interpreter is usually installed as :file:`/usr/local/bin/python3.8` The Python interpreter is usually installed as :file:`/usr/local/bin/python3.9`
on those machines where it is available; putting :file:`/usr/local/bin` in your on those machines where it is available; putting :file:`/usr/local/bin` in your
Unix shell's search path makes it possible to start it by typing the command: Unix shell's search path makes it possible to start it by typing the command:
.. code-block:: text .. code-block:: text
python3.8 python3.9
to the shell. [#]_ Since the choice of the directory where the interpreter lives to the shell. [#]_ Since the choice of the directory where the interpreter lives
is an installation option, other places are possible; check with your local is an installation option, other places are possible; check with your local
...@@ -98,8 +98,8 @@ before printing the first prompt: ...@@ -98,8 +98,8 @@ before printing the first prompt:
.. code-block:: shell-session .. code-block:: shell-session
$ python3.8 $ python3.9
Python 3.8 (default, Sep 16 2015, 09:25:04) Python 3.9 (default, June 4 2019, 09:25:04)
[GCC 4.8.2] on linux [GCC 4.8.2] on linux
Type "help", "copyright", "credits" or "license" for more information. Type "help", "copyright", "credits" or "license" for more information.
>>> >>>
......
...@@ -15,7 +15,7 @@ operating system:: ...@@ -15,7 +15,7 @@ operating system::
>>> import os >>> import os
>>> os.getcwd() # Return the current working directory >>> os.getcwd() # Return the current working directory
'C:\\Python38' 'C:\\Python39'
>>> os.chdir('/server/accesslogs') # Change current working directory >>> os.chdir('/server/accesslogs') # Change current working directory
>>> os.system('mkdir today') # Run the command mkdir in the system shell >>> os.system('mkdir today') # Run the command mkdir in the system shell
0 0
......
...@@ -278,7 +278,7 @@ applications include caching objects that are expensive to create:: ...@@ -278,7 +278,7 @@ applications include caching objects that are expensive to create::
Traceback (most recent call last): Traceback (most recent call last):
File "<stdin>", line 1, in <module> File "<stdin>", line 1, in <module>
d['primary'] # entry was automatically removed d['primary'] # entry was automatically removed
File "C:/python38/lib/weakref.py", line 46, in __getitem__ File "C:/python39/lib/weakref.py", line 46, in __getitem__
o = self.data[key]() o = self.data[key]()
KeyError: 'primary' KeyError: 'primary'
......
...@@ -17,13 +17,13 @@ ...@@ -17,13 +17,13 @@
/* Version parsed out into numeric values */ /* Version parsed out into numeric values */
/*--start constants--*/ /*--start constants--*/
#define PY_MAJOR_VERSION 3 #define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION 8 #define PY_MINOR_VERSION 9
#define PY_MICRO_VERSION 0 #define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA #define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
#define PY_RELEASE_SERIAL 1 #define PY_RELEASE_SERIAL 0
/* Version as a string */ /* Version as a string */
#define PY_VERSION "3.8.0b1" #define PY_VERSION "3.9.0a0"
/*--end constants--*/ /*--end constants--*/
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
......
...@@ -274,11 +274,11 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ ...@@ -274,11 +274,11 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
file in their Makefile (other compilers are file in their Makefile (other compilers are
generally taken care of by distutils.) */ generally taken care of by distutils.) */
# if defined(_DEBUG) # if defined(_DEBUG)
# pragma comment(lib,"python38_d.lib") # pragma comment(lib,"python39_d.lib")
# elif defined(Py_LIMITED_API) # elif defined(Py_LIMITED_API)
# pragma comment(lib,"python3.lib") # pragma comment(lib,"python3.lib")
# else # else
# pragma comment(lib,"python38.lib") # pragma comment(lib,"python39.lib")
# endif /* _DEBUG */ # endif /* _DEBUG */
# endif /* _MSC_VER */ # endif /* _MSC_VER */
# endif /* Py_BUILD_CORE */ # endif /* Py_BUILD_CORE */
......
...@@ -2,802 +2,802 @@ ...@@ -2,802 +2,802 @@
; It is used when building python3dll.vcxproj ; It is used when building python3dll.vcxproj
LIBRARY "python3" LIBRARY "python3"
EXPORTS EXPORTS
PyArg_Parse=python38.PyArg_Parse PyArg_Parse=python39.PyArg_Parse
PyArg_ParseTuple=python38.PyArg_ParseTuple PyArg_ParseTuple=python39.PyArg_ParseTuple
PyArg_ParseTupleAndKeywords=python38.PyArg_ParseTupleAndKeywords PyArg_ParseTupleAndKeywords=python39.PyArg_ParseTupleAndKeywords
PyArg_UnpackTuple=python38.PyArg_UnpackTuple PyArg_UnpackTuple=python39.PyArg_UnpackTuple
PyArg_VaParse=python38.PyArg_VaParse PyArg_VaParse=python39.PyArg_VaParse
PyArg_VaParseTupleAndKeywords=python38.PyArg_VaParseTupleAndKeywords PyArg_VaParseTupleAndKeywords=python39.PyArg_VaParseTupleAndKeywords
PyArg_ValidateKeywordArguments=python38.PyArg_ValidateKeywordArguments PyArg_ValidateKeywordArguments=python39.PyArg_ValidateKeywordArguments
PyBaseObject_Type=python38.PyBaseObject_Type DATA PyBaseObject_Type=python39.PyBaseObject_Type DATA
PyBool_FromLong=python38.PyBool_FromLong PyBool_FromLong=python39.PyBool_FromLong
PyBool_Type=python38.PyBool_Type DATA PyBool_Type=python39.PyBool_Type DATA
PyByteArrayIter_Type=python38.PyByteArrayIter_Type DATA PyByteArrayIter_Type=python39.PyByteArrayIter_Type DATA
PyByteArray_AsString=python38.PyByteArray_AsString PyByteArray_AsString=python39.PyByteArray_AsString
PyByteArray_Concat=python38.PyByteArray_Concat PyByteArray_Concat=python39.PyByteArray_Concat
PyByteArray_FromObject=python38.PyByteArray_FromObject PyByteArray_FromObject=python39.PyByteArray_FromObject
PyByteArray_FromStringAndSize=python38.PyByteArray_FromStringAndSize PyByteArray_FromStringAndSize=python39.PyByteArray_FromStringAndSize
PyByteArray_Resize=python38.PyByteArray_Resize PyByteArray_Resize=python39.PyByteArray_Resize
PyByteArray_Size=python38.PyByteArray_Size PyByteArray_Size=python39.PyByteArray_Size
PyByteArray_Type=python38.PyByteArray_Type DATA PyByteArray_Type=python39.PyByteArray_Type DATA
PyBytesIter_Type=python38.PyBytesIter_Type DATA PyBytesIter_Type=python39.PyBytesIter_Type DATA
PyBytes_AsString=python38.PyBytes_AsString PyBytes_AsString=python39.PyBytes_AsString
PyBytes_AsStringAndSize=python38.PyBytes_AsStringAndSize PyBytes_AsStringAndSize=python39.PyBytes_AsStringAndSize
PyBytes_Concat=python38.PyBytes_Concat PyBytes_Concat=python39.PyBytes_Concat
PyBytes_ConcatAndDel=python38.PyBytes_ConcatAndDel PyBytes_ConcatAndDel=python39.PyBytes_ConcatAndDel
PyBytes_DecodeEscape=python38.PyBytes_DecodeEscape PyBytes_DecodeEscape=python39.PyBytes_DecodeEscape
PyBytes_FromFormat=python38.PyBytes_FromFormat PyBytes_FromFormat=python39.PyBytes_FromFormat
PyBytes_FromFormatV=python38.PyBytes_FromFormatV PyBytes_FromFormatV=python39.PyBytes_FromFormatV
PyBytes_FromObject=python38.PyBytes_FromObject PyBytes_FromObject=python39.PyBytes_FromObject
PyBytes_FromString=python38.PyBytes_FromString PyBytes_FromString=python39.PyBytes_FromString
PyBytes_FromStringAndSize=python38.PyBytes_FromStringAndSize PyBytes_FromStringAndSize=python39.PyBytes_FromStringAndSize
PyBytes_Repr=python38.PyBytes_Repr PyBytes_Repr=python39.PyBytes_Repr
PyBytes_Size=python38.PyBytes_Size PyBytes_Size=python39.PyBytes_Size
PyBytes_Type=python38.PyBytes_Type DATA PyBytes_Type=python39.PyBytes_Type DATA
PyCFunction_Call=python38.PyCFunction_Call PyCFunction_Call=python39.PyCFunction_Call
PyCFunction_ClearFreeList=python38.PyCFunction_ClearFreeList PyCFunction_ClearFreeList=python39.PyCFunction_ClearFreeList
PyCFunction_GetFlags=python38.PyCFunction_GetFlags PyCFunction_GetFlags=python39.PyCFunction_GetFlags
PyCFunction_GetFunction=python38.PyCFunction_GetFunction PyCFunction_GetFunction=python39.PyCFunction_GetFunction
PyCFunction_GetSelf=python38.PyCFunction_GetSelf PyCFunction_GetSelf=python39.PyCFunction_GetSelf
PyCFunction_New=python38.PyCFunction_New PyCFunction_New=python39.PyCFunction_New
PyCFunction_NewEx=python38.PyCFunction_NewEx PyCFunction_NewEx=python39.PyCFunction_NewEx
PyCFunction_Type=python38.PyCFunction_Type DATA PyCFunction_Type=python39.PyCFunction_Type DATA
PyCallIter_New=python38.PyCallIter_New PyCallIter_New=python39.PyCallIter_New
PyCallIter_Type=python38.PyCallIter_Type DATA PyCallIter_Type=python39.PyCallIter_Type DATA
PyCallable_Check=python38.PyCallable_Check PyCallable_Check=python39.PyCallable_Check
PyCapsule_GetContext=python38.PyCapsule_GetContext PyCapsule_GetContext=python39.PyCapsule_GetContext
PyCapsule_GetDestructor=python38.PyCapsule_GetDestructor PyCapsule_GetDestructor=python39.PyCapsule_GetDestructor
PyCapsule_GetName=python38.PyCapsule_GetName PyCapsule_GetName=python39.PyCapsule_GetName
PyCapsule_GetPointer=python38.PyCapsule_GetPointer PyCapsule_GetPointer=python39.PyCapsule_GetPointer
PyCapsule_Import=python38.PyCapsule_Import PyCapsule_Import=python39.PyCapsule_Import
PyCapsule_IsValid=python38.PyCapsule_IsValid PyCapsule_IsValid=python39.PyCapsule_IsValid
PyCapsule_New=python38.PyCapsule_New PyCapsule_New=python39.PyCapsule_New
PyCapsule_SetContext=python38.PyCapsule_SetContext PyCapsule_SetContext=python39.PyCapsule_SetContext
PyCapsule_SetDestructor=python38.PyCapsule_SetDestructor PyCapsule_SetDestructor=python39.PyCapsule_SetDestructor
PyCapsule_SetName=python38.PyCapsule_SetName PyCapsule_SetName=python39.PyCapsule_SetName
PyCapsule_SetPointer=python38.PyCapsule_SetPointer PyCapsule_SetPointer=python39.PyCapsule_SetPointer
PyCapsule_Type=python38.PyCapsule_Type DATA PyCapsule_Type=python39.PyCapsule_Type DATA
PyClassMethodDescr_Type=python38.PyClassMethodDescr_Type DATA PyClassMethodDescr_Type=python39.PyClassMethodDescr_Type DATA
PyCodec_BackslashReplaceErrors=python38.PyCodec_BackslashReplaceErrors PyCodec_BackslashReplaceErrors=python39.PyCodec_BackslashReplaceErrors
PyCodec_Decode=python38.PyCodec_Decode PyCodec_Decode=python39.PyCodec_Decode
PyCodec_Decoder=python38.PyCodec_Decoder PyCodec_Decoder=python39.PyCodec_Decoder
PyCodec_Encode=python38.PyCodec_Encode PyCodec_Encode=python39.PyCodec_Encode
PyCodec_Encoder=python38.PyCodec_Encoder PyCodec_Encoder=python39.PyCodec_Encoder
PyCodec_IgnoreErrors=python38.PyCodec_IgnoreErrors PyCodec_IgnoreErrors=python39.PyCodec_IgnoreErrors
PyCodec_IncrementalDecoder=python38.PyCodec_IncrementalDecoder PyCodec_IncrementalDecoder=python39.PyCodec_IncrementalDecoder
PyCodec_IncrementalEncoder=python38.PyCodec_IncrementalEncoder PyCodec_IncrementalEncoder=python39.PyCodec_IncrementalEncoder
PyCodec_KnownEncoding=python38.PyCodec_KnownEncoding PyCodec_KnownEncoding=python39.PyCodec_KnownEncoding
PyCodec_LookupError=python38.PyCodec_LookupError PyCodec_LookupError=python39.PyCodec_LookupError
PyCodec_NameReplaceErrors=python38.PyCodec_NameReplaceErrors PyCodec_NameReplaceErrors=python39.PyCodec_NameReplaceErrors
PyCodec_Register=python38.PyCodec_Register PyCodec_Register=python39.PyCodec_Register
PyCodec_RegisterError=python38.PyCodec_RegisterError PyCodec_RegisterError=python39.PyCodec_RegisterError
PyCodec_ReplaceErrors=python38.PyCodec_ReplaceErrors PyCodec_ReplaceErrors=python39.PyCodec_ReplaceErrors
PyCodec_StreamReader=python38.PyCodec_StreamReader PyCodec_StreamReader=python39.PyCodec_StreamReader
PyCodec_StreamWriter=python38.PyCodec_StreamWriter PyCodec_StreamWriter=python39.PyCodec_StreamWriter
PyCodec_StrictErrors=python38.PyCodec_StrictErrors PyCodec_StrictErrors=python39.PyCodec_StrictErrors
PyCodec_XMLCharRefReplaceErrors=python38.PyCodec_XMLCharRefReplaceErrors PyCodec_XMLCharRefReplaceErrors=python39.PyCodec_XMLCharRefReplaceErrors
PyComplex_FromDoubles=python38.PyComplex_FromDoubles PyComplex_FromDoubles=python39.PyComplex_FromDoubles
PyComplex_ImagAsDouble=python38.PyComplex_ImagAsDouble PyComplex_ImagAsDouble=python39.PyComplex_ImagAsDouble
PyComplex_RealAsDouble=python38.PyComplex_RealAsDouble PyComplex_RealAsDouble=python39.PyComplex_RealAsDouble
PyComplex_Type=python38.PyComplex_Type DATA PyComplex_Type=python39.PyComplex_Type DATA
PyDescr_NewClassMethod=python38.PyDescr_NewClassMethod PyDescr_NewClassMethod=python39.PyDescr_NewClassMethod
PyDescr_NewGetSet=python38.PyDescr_NewGetSet PyDescr_NewGetSet=python39.PyDescr_NewGetSet
PyDescr_NewMember=python38.PyDescr_NewMember PyDescr_NewMember=python39.PyDescr_NewMember
PyDescr_NewMethod=python38.PyDescr_NewMethod PyDescr_NewMethod=python39.PyDescr_NewMethod
PyDictItems_Type=python38.PyDictItems_Type DATA PyDictItems_Type=python39.PyDictItems_Type DATA
PyDictIterItem_Type=python38.PyDictIterItem_Type DATA PyDictIterItem_Type=python39.PyDictIterItem_Type DATA
PyDictIterKey_Type=python38.PyDictIterKey_Type DATA PyDictIterKey_Type=python39.PyDictIterKey_Type DATA
PyDictIterValue_Type=python38.PyDictIterValue_Type DATA PyDictIterValue_Type=python39.PyDictIterValue_Type DATA
PyDictKeys_Type=python38.PyDictKeys_Type DATA PyDictKeys_Type=python39.PyDictKeys_Type DATA
PyDictProxy_New=python38.PyDictProxy_New PyDictProxy_New=python39.PyDictProxy_New
PyDictProxy_Type=python38.PyDictProxy_Type DATA PyDictProxy_Type=python39.PyDictProxy_Type DATA
PyDictValues_Type=python38.PyDictValues_Type DATA PyDictValues_Type=python39.PyDictValues_Type DATA
PyDict_Clear=python38.PyDict_Clear PyDict_Clear=python39.PyDict_Clear
PyDict_Contains=python38.PyDict_Contains PyDict_Contains=python39.PyDict_Contains
PyDict_Copy=python38.PyDict_Copy PyDict_Copy=python39.PyDict_Copy
PyDict_DelItem=python38.PyDict_DelItem PyDict_DelItem=python39.PyDict_DelItem
PyDict_DelItemString=python38.PyDict_DelItemString PyDict_DelItemString=python39.PyDict_DelItemString
PyDict_GetItem=python38.PyDict_GetItem PyDict_GetItem=python39.PyDict_GetItem
PyDict_GetItemString=python38.PyDict_GetItemString PyDict_GetItemString=python39.PyDict_GetItemString
PyDict_GetItemWithError=python38.PyDict_GetItemWithError PyDict_GetItemWithError=python39.PyDict_GetItemWithError
PyDict_Items=python38.PyDict_Items PyDict_Items=python39.PyDict_Items
PyDict_Keys=python38.PyDict_Keys PyDict_Keys=python39.PyDict_Keys
PyDict_Merge=python38.PyDict_Merge PyDict_Merge=python39.PyDict_Merge
PyDict_MergeFromSeq2=python38.PyDict_MergeFromSeq2 PyDict_MergeFromSeq2=python39.PyDict_MergeFromSeq2
PyDict_New=python38.PyDict_New PyDict_New=python39.PyDict_New
PyDict_Next=python38.PyDict_Next PyDict_Next=python39.PyDict_Next
PyDict_SetItem=python38.PyDict_SetItem PyDict_SetItem=python39.PyDict_SetItem
PyDict_SetItemString=python38.PyDict_SetItemString PyDict_SetItemString=python39.PyDict_SetItemString
PyDict_Size=python38.PyDict_Size PyDict_Size=python39.PyDict_Size
PyDict_Type=python38.PyDict_Type DATA PyDict_Type=python39.PyDict_Type DATA
PyDict_Update=python38.PyDict_Update PyDict_Update=python39.PyDict_Update
PyDict_Values=python38.PyDict_Values PyDict_Values=python39.PyDict_Values
PyEllipsis_Type=python38.PyEllipsis_Type DATA PyEllipsis_Type=python39.PyEllipsis_Type DATA
PyEnum_Type=python38.PyEnum_Type DATA PyEnum_Type=python39.PyEnum_Type DATA
PyErr_BadArgument=python38.PyErr_BadArgument PyErr_BadArgument=python39.PyErr_BadArgument
PyErr_BadInternalCall=python38.PyErr_BadInternalCall PyErr_BadInternalCall=python39.PyErr_BadInternalCall
PyErr_CheckSignals=python38.PyErr_CheckSignals PyErr_CheckSignals=python39.PyErr_CheckSignals
PyErr_Clear=python38.PyErr_Clear PyErr_Clear=python39.PyErr_Clear
PyErr_Display=python38.PyErr_Display PyErr_Display=python39.PyErr_Display
PyErr_ExceptionMatches=python38.PyErr_ExceptionMatches PyErr_ExceptionMatches=python39.PyErr_ExceptionMatches
PyErr_Fetch=python38.PyErr_Fetch PyErr_Fetch=python39.PyErr_Fetch
PyErr_Format=python38.PyErr_Format PyErr_Format=python39.PyErr_Format
PyErr_FormatV=python38.PyErr_FormatV PyErr_FormatV=python39.PyErr_FormatV
PyErr_GetExcInfo=python38.PyErr_GetExcInfo PyErr_GetExcInfo=python39.PyErr_GetExcInfo
PyErr_GivenExceptionMatches=python38.PyErr_GivenExceptionMatches PyErr_GivenExceptionMatches=python39.PyErr_GivenExceptionMatches
PyErr_NewException=python38.PyErr_NewException PyErr_NewException=python39.PyErr_NewException
PyErr_NewExceptionWithDoc=python38.PyErr_NewExceptionWithDoc PyErr_NewExceptionWithDoc=python39.PyErr_NewExceptionWithDoc
PyErr_NoMemory=python38.PyErr_NoMemory PyErr_NoMemory=python39.PyErr_NoMemory
PyErr_NormalizeException=python38.PyErr_NormalizeException PyErr_NormalizeException=python39.PyErr_NormalizeException
PyErr_Occurred=python38.PyErr_Occurred PyErr_Occurred=python39.PyErr_Occurred
PyErr_Print=python38.PyErr_Print PyErr_Print=python39.PyErr_Print
PyErr_PrintEx=python38.PyErr_PrintEx PyErr_PrintEx=python39.PyErr_PrintEx
PyErr_ProgramText=python38.PyErr_ProgramText PyErr_ProgramText=python39.PyErr_ProgramText
PyErr_ResourceWarning=python38.PyErr_ResourceWarning PyErr_ResourceWarning=python39.PyErr_ResourceWarning
PyErr_Restore=python38.PyErr_Restore PyErr_Restore=python39.PyErr_Restore
PyErr_SetExcFromWindowsErr=python38.PyErr_SetExcFromWindowsErr PyErr_SetExcFromWindowsErr=python39.PyErr_SetExcFromWindowsErr
PyErr_SetExcFromWindowsErrWithFilename=python38.PyErr_SetExcFromWindowsErrWithFilename PyErr_SetExcFromWindowsErrWithFilename=python39.PyErr_SetExcFromWindowsErrWithFilename
PyErr_SetExcFromWindowsErrWithFilenameObject=python38.PyErr_SetExcFromWindowsErrWithFilenameObject PyErr_SetExcFromWindowsErrWithFilenameObject=python39.PyErr_SetExcFromWindowsErrWithFilenameObject
PyErr_SetExcFromWindowsErrWithFilenameObjects=python38.PyErr_SetExcFromWindowsErrWithFilenameObjects PyErr_SetExcFromWindowsErrWithFilenameObjects=python39.PyErr_SetExcFromWindowsErrWithFilenameObjects
PyErr_SetExcInfo=python38.PyErr_SetExcInfo PyErr_SetExcInfo=python39.PyErr_SetExcInfo
PyErr_SetFromErrno=python38.PyErr_SetFromErrno PyErr_SetFromErrno=python39.PyErr_SetFromErrno
PyErr_SetFromErrnoWithFilename=python38.PyErr_SetFromErrnoWithFilename PyErr_SetFromErrnoWithFilename=python39.PyErr_SetFromErrnoWithFilename
PyErr_SetFromErrnoWithFilenameObject=python38.PyErr_SetFromErrnoWithFilenameObject PyErr_SetFromErrnoWithFilenameObject=python39.PyErr_SetFromErrnoWithFilenameObject
PyErr_SetFromErrnoWithFilenameObjects=python38.PyErr_SetFromErrnoWithFilenameObjects PyErr_SetFromErrnoWithFilenameObjects=python39.PyErr_SetFromErrnoWithFilenameObjects
PyErr_SetFromWindowsErr=python38.PyErr_SetFromWindowsErr PyErr_SetFromWindowsErr=python39.PyErr_SetFromWindowsErr
PyErr_SetFromWindowsErrWithFilename=python38.PyErr_SetFromWindowsErrWithFilename PyErr_SetFromWindowsErrWithFilename=python39.PyErr_SetFromWindowsErrWithFilename
PyErr_SetImportError=python38.PyErr_SetImportError PyErr_SetImportError=python39.PyErr_SetImportError
PyErr_SetImportErrorSubclass=python38.PyErr_SetImportErrorSubclass PyErr_SetImportErrorSubclass=python39.PyErr_SetImportErrorSubclass
PyErr_SetInterrupt=python38.PyErr_SetInterrupt PyErr_SetInterrupt=python39.PyErr_SetInterrupt
PyErr_SetNone=python38.PyErr_SetNone PyErr_SetNone=python39.PyErr_SetNone
PyErr_SetObject=python38.PyErr_SetObject PyErr_SetObject=python39.PyErr_SetObject
PyErr_SetString=python38.PyErr_SetString PyErr_SetString=python39.PyErr_SetString
PyErr_SyntaxLocation=python38.PyErr_SyntaxLocation PyErr_SyntaxLocation=python39.PyErr_SyntaxLocation
PyErr_SyntaxLocationEx=python38.PyErr_SyntaxLocationEx PyErr_SyntaxLocationEx=python39.PyErr_SyntaxLocationEx
PyErr_WarnEx=python38.PyErr_WarnEx PyErr_WarnEx=python39.PyErr_WarnEx
PyErr_WarnExplicit=python38.PyErr_WarnExplicit PyErr_WarnExplicit=python39.PyErr_WarnExplicit
PyErr_WarnFormat=python38.PyErr_WarnFormat PyErr_WarnFormat=python39.PyErr_WarnFormat
PyErr_WriteUnraisable=python38.PyErr_WriteUnraisable PyErr_WriteUnraisable=python39.PyErr_WriteUnraisable
PyEval_AcquireLock=python38.PyEval_AcquireLock PyEval_AcquireLock=python39.PyEval_AcquireLock
PyEval_AcquireThread=python38.PyEval_AcquireThread PyEval_AcquireThread=python39.PyEval_AcquireThread
PyEval_CallFunction=python38.PyEval_CallFunction PyEval_CallFunction=python39.PyEval_CallFunction
PyEval_CallMethod=python38.PyEval_CallMethod PyEval_CallMethod=python39.PyEval_CallMethod
PyEval_CallObjectWithKeywords=python38.PyEval_CallObjectWithKeywords PyEval_CallObjectWithKeywords=python39.PyEval_CallObjectWithKeywords
PyEval_EvalCode=python38.PyEval_EvalCode PyEval_EvalCode=python39.PyEval_EvalCode
PyEval_EvalCodeEx=python38.PyEval_EvalCodeEx PyEval_EvalCodeEx=python39.PyEval_EvalCodeEx
PyEval_EvalFrame=python38.PyEval_EvalFrame PyEval_EvalFrame=python39.PyEval_EvalFrame
PyEval_EvalFrameEx=python38.PyEval_EvalFrameEx PyEval_EvalFrameEx=python39.PyEval_EvalFrameEx
PyEval_GetBuiltins=python38.PyEval_GetBuiltins PyEval_GetBuiltins=python39.PyEval_GetBuiltins
PyEval_GetCallStats=python38.PyEval_GetCallStats PyEval_GetCallStats=python39.PyEval_GetCallStats
PyEval_GetFrame=python38.PyEval_GetFrame PyEval_GetFrame=python39.PyEval_GetFrame
PyEval_GetFuncDesc=python38.PyEval_GetFuncDesc PyEval_GetFuncDesc=python39.PyEval_GetFuncDesc
PyEval_GetFuncName=python38.PyEval_GetFuncName PyEval_GetFuncName=python39.PyEval_GetFuncName
PyEval_GetGlobals=python38.PyEval_GetGlobals PyEval_GetGlobals=python39.PyEval_GetGlobals
PyEval_GetLocals=python38.PyEval_GetLocals PyEval_GetLocals=python39.PyEval_GetLocals
PyEval_InitThreads=python38.PyEval_InitThreads PyEval_InitThreads=python39.PyEval_InitThreads
PyEval_ReInitThreads=python38.PyEval_ReInitThreads PyEval_ReInitThreads=python39.PyEval_ReInitThreads
PyEval_ReleaseLock=python38.PyEval_ReleaseLock PyEval_ReleaseLock=python39.PyEval_ReleaseLock
PyEval_ReleaseThread=python38.PyEval_ReleaseThread PyEval_ReleaseThread=python39.PyEval_ReleaseThread
PyEval_RestoreThread=python38.PyEval_RestoreThread PyEval_RestoreThread=python39.PyEval_RestoreThread
PyEval_SaveThread=python38.PyEval_SaveThread PyEval_SaveThread=python39.PyEval_SaveThread
PyEval_ThreadsInitialized=python38.PyEval_ThreadsInitialized PyEval_ThreadsInitialized=python39.PyEval_ThreadsInitialized
PyExc_ArithmeticError=python38.PyExc_ArithmeticError DATA PyExc_ArithmeticError=python39.PyExc_ArithmeticError DATA
PyExc_AssertionError=python38.PyExc_AssertionError DATA PyExc_AssertionError=python39.PyExc_AssertionError DATA
PyExc_AttributeError=python38.PyExc_AttributeError DATA PyExc_AttributeError=python39.PyExc_AttributeError DATA
PyExc_BaseException=python38.PyExc_BaseException DATA PyExc_BaseException=python39.PyExc_BaseException DATA
PyExc_BlockingIOError=python38.PyExc_BlockingIOError DATA PyExc_BlockingIOError=python39.PyExc_BlockingIOError DATA
PyExc_BrokenPipeError=python38.PyExc_BrokenPipeError DATA PyExc_BrokenPipeError=python39.PyExc_BrokenPipeError DATA
PyExc_BufferError=python38.PyExc_BufferError DATA PyExc_BufferError=python39.PyExc_BufferError DATA
PyExc_BytesWarning=python38.PyExc_BytesWarning DATA PyExc_BytesWarning=python39.PyExc_BytesWarning DATA
PyExc_ChildProcessError=python38.PyExc_ChildProcessError DATA PyExc_ChildProcessError=python39.PyExc_ChildProcessError DATA
PyExc_ConnectionAbortedError=python38.PyExc_ConnectionAbortedError DATA PyExc_ConnectionAbortedError=python39.PyExc_ConnectionAbortedError DATA
PyExc_ConnectionError=python38.PyExc_ConnectionError DATA PyExc_ConnectionError=python39.PyExc_ConnectionError DATA
PyExc_ConnectionRefusedError=python38.PyExc_ConnectionRefusedError DATA PyExc_ConnectionRefusedError=python39.PyExc_ConnectionRefusedError DATA
PyExc_ConnectionResetError=python38.PyExc_ConnectionResetError DATA PyExc_ConnectionResetError=python39.PyExc_ConnectionResetError DATA
PyExc_DeprecationWarning=python38.PyExc_DeprecationWarning DATA PyExc_DeprecationWarning=python39.PyExc_DeprecationWarning DATA
PyExc_EOFError=python38.PyExc_EOFError DATA PyExc_EOFError=python39.PyExc_EOFError DATA
PyExc_EnvironmentError=python38.PyExc_EnvironmentError DATA PyExc_EnvironmentError=python39.PyExc_EnvironmentError DATA
PyExc_Exception=python38.PyExc_Exception DATA PyExc_Exception=python39.PyExc_Exception DATA
PyExc_FileExistsError=python38.PyExc_FileExistsError DATA PyExc_FileExistsError=python39.PyExc_FileExistsError DATA
PyExc_FileNotFoundError=python38.PyExc_FileNotFoundError DATA PyExc_FileNotFoundError=python39.PyExc_FileNotFoundError DATA
PyExc_FloatingPointError=python38.PyExc_FloatingPointError DATA PyExc_FloatingPointError=python39.PyExc_FloatingPointError DATA
PyExc_FutureWarning=python38.PyExc_FutureWarning DATA PyExc_FutureWarning=python39.PyExc_FutureWarning DATA
PyExc_GeneratorExit=python38.PyExc_GeneratorExit DATA PyExc_GeneratorExit=python39.PyExc_GeneratorExit DATA
PyExc_IOError=python38.PyExc_IOError DATA PyExc_IOError=python39.PyExc_IOError DATA
PyExc_ImportError=python38.PyExc_ImportError DATA PyExc_ImportError=python39.PyExc_ImportError DATA
PyExc_ImportWarning=python38.PyExc_ImportWarning DATA PyExc_ImportWarning=python39.PyExc_ImportWarning DATA
PyExc_IndentationError=python38.PyExc_IndentationError DATA PyExc_IndentationError=python39.PyExc_IndentationError DATA
PyExc_IndexError=python38.PyExc_IndexError DATA PyExc_IndexError=python39.PyExc_IndexError DATA
PyExc_InterruptedError=python38.PyExc_InterruptedError DATA PyExc_InterruptedError=python39.PyExc_InterruptedError DATA
PyExc_IsADirectoryError=python38.PyExc_IsADirectoryError DATA PyExc_IsADirectoryError=python39.PyExc_IsADirectoryError DATA
PyExc_KeyError=python38.PyExc_KeyError DATA PyExc_KeyError=python39.PyExc_KeyError DATA
PyExc_KeyboardInterrupt=python38.PyExc_KeyboardInterrupt DATA PyExc_KeyboardInterrupt=python39.PyExc_KeyboardInterrupt DATA
PyExc_LookupError=python38.PyExc_LookupError DATA PyExc_LookupError=python39.PyExc_LookupError DATA
PyExc_MemoryError=python38.PyExc_MemoryError DATA PyExc_MemoryError=python39.PyExc_MemoryError DATA
PyExc_ModuleNotFoundError=python38.PyExc_ModuleNotFoundError DATA PyExc_ModuleNotFoundError=python39.PyExc_ModuleNotFoundError DATA
PyExc_NameError=python38.PyExc_NameError DATA PyExc_NameError=python39.PyExc_NameError DATA
PyExc_NotADirectoryError=python38.PyExc_NotADirectoryError DATA PyExc_NotADirectoryError=python39.PyExc_NotADirectoryError DATA
PyExc_NotImplementedError=python38.PyExc_NotImplementedError DATA PyExc_NotImplementedError=python39.PyExc_NotImplementedError DATA
PyExc_OSError=python38.PyExc_OSError DATA PyExc_OSError=python39.PyExc_OSError DATA
PyExc_OverflowError=python38.PyExc_OverflowError DATA PyExc_OverflowError=python39.PyExc_OverflowError DATA
PyExc_PendingDeprecationWarning=python38.PyExc_PendingDeprecationWarning DATA PyExc_PendingDeprecationWarning=python39.PyExc_PendingDeprecationWarning DATA
PyExc_PermissionError=python38.PyExc_PermissionError DATA PyExc_PermissionError=python39.PyExc_PermissionError DATA
PyExc_ProcessLookupError=python38.PyExc_ProcessLookupError DATA PyExc_ProcessLookupError=python39.PyExc_ProcessLookupError DATA
PyExc_RecursionError=python38.PyExc_RecursionError DATA PyExc_RecursionError=python39.PyExc_RecursionError DATA
PyExc_ReferenceError=python38.PyExc_ReferenceError DATA PyExc_ReferenceError=python39.PyExc_ReferenceError DATA
PyExc_ResourceWarning=python38.PyExc_ResourceWarning DATA PyExc_ResourceWarning=python39.PyExc_ResourceWarning DATA
PyExc_RuntimeError=python38.PyExc_RuntimeError DATA PyExc_RuntimeError=python39.PyExc_RuntimeError DATA
PyExc_RuntimeWarning=python38.PyExc_RuntimeWarning DATA PyExc_RuntimeWarning=python39.PyExc_RuntimeWarning DATA
PyExc_StopAsyncIteration=python38.PyExc_StopAsyncIteration DATA PyExc_StopAsyncIteration=python39.PyExc_StopAsyncIteration DATA
PyExc_StopIteration=python38.PyExc_StopIteration DATA PyExc_StopIteration=python39.PyExc_StopIteration DATA
PyExc_SyntaxError=python38.PyExc_SyntaxError DATA PyExc_SyntaxError=python39.PyExc_SyntaxError DATA
PyExc_SyntaxWarning=python38.PyExc_SyntaxWarning DATA PyExc_SyntaxWarning=python39.PyExc_SyntaxWarning DATA
PyExc_SystemError=python38.PyExc_SystemError DATA PyExc_SystemError=python39.PyExc_SystemError DATA
PyExc_SystemExit=python38.PyExc_SystemExit DATA PyExc_SystemExit=python39.PyExc_SystemExit DATA
PyExc_TabError=python38.PyExc_TabError DATA PyExc_TabError=python39.PyExc_TabError DATA
PyExc_TargetScopeError=python38.PyExc_TargetScopeError DATA PyExc_TargetScopeError=python39.PyExc_TargetScopeError DATA
PyExc_TimeoutError=python38.PyExc_TimeoutError DATA PyExc_TimeoutError=python39.PyExc_TimeoutError DATA
PyExc_TypeError=python38.PyExc_TypeError DATA PyExc_TypeError=python39.PyExc_TypeError DATA
PyExc_UnboundLocalError=python38.PyExc_UnboundLocalError DATA PyExc_UnboundLocalError=python39.PyExc_UnboundLocalError DATA
PyExc_UnicodeDecodeError=python38.PyExc_UnicodeDecodeError DATA PyExc_UnicodeDecodeError=python39.PyExc_UnicodeDecodeError DATA
PyExc_UnicodeEncodeError=python38.PyExc_UnicodeEncodeError DATA PyExc_UnicodeEncodeError=python39.PyExc_UnicodeEncodeError DATA
PyExc_UnicodeError=python38.PyExc_UnicodeError DATA PyExc_UnicodeError=python39.PyExc_UnicodeError DATA
PyExc_UnicodeTranslateError=python38.PyExc_UnicodeTranslateError DATA PyExc_UnicodeTranslateError=python39.PyExc_UnicodeTranslateError DATA
PyExc_UnicodeWarning=python38.PyExc_UnicodeWarning DATA PyExc_UnicodeWarning=python39.PyExc_UnicodeWarning DATA
PyExc_UserWarning=python38.PyExc_UserWarning DATA PyExc_UserWarning=python39.PyExc_UserWarning DATA
PyExc_ValueError=python38.PyExc_ValueError DATA PyExc_ValueError=python39.PyExc_ValueError DATA
PyExc_Warning=python38.PyExc_Warning DATA PyExc_Warning=python39.PyExc_Warning DATA
PyExc_WindowsError=python38.PyExc_WindowsError DATA PyExc_WindowsError=python39.PyExc_WindowsError DATA
PyExc_ZeroDivisionError=python38.PyExc_ZeroDivisionError DATA PyExc_ZeroDivisionError=python39.PyExc_ZeroDivisionError DATA
PyExceptionClass_Name=python38.PyExceptionClass_Name PyExceptionClass_Name=python39.PyExceptionClass_Name
PyException_GetCause=python38.PyException_GetCause PyException_GetCause=python39.PyException_GetCause
PyException_GetContext=python38.PyException_GetContext PyException_GetContext=python39.PyException_GetContext
PyException_GetTraceback=python38.PyException_GetTraceback PyException_GetTraceback=python39.PyException_GetTraceback
PyException_SetCause=python38.PyException_SetCause PyException_SetCause=python39.PyException_SetCause
PyException_SetContext=python38.PyException_SetContext PyException_SetContext=python39.PyException_SetContext
PyException_SetTraceback=python38.PyException_SetTraceback PyException_SetTraceback=python39.PyException_SetTraceback
PyFile_FromFd=python38.PyFile_FromFd PyFile_FromFd=python39.PyFile_FromFd
PyFile_GetLine=python38.PyFile_GetLine PyFile_GetLine=python39.PyFile_GetLine
PyFile_WriteObject=python38.PyFile_WriteObject PyFile_WriteObject=python39.PyFile_WriteObject
PyFile_WriteString=python38.PyFile_WriteString PyFile_WriteString=python39.PyFile_WriteString
PyFilter_Type=python38.PyFilter_Type DATA PyFilter_Type=python39.PyFilter_Type DATA
PyFloat_AsDouble=python38.PyFloat_AsDouble PyFloat_AsDouble=python39.PyFloat_AsDouble
PyFloat_FromDouble=python38.PyFloat_FromDouble PyFloat_FromDouble=python39.PyFloat_FromDouble
PyFloat_FromString=python38.PyFloat_FromString PyFloat_FromString=python39.PyFloat_FromString
PyFloat_GetInfo=python38.PyFloat_GetInfo PyFloat_GetInfo=python39.PyFloat_GetInfo
PyFloat_GetMax=python38.PyFloat_GetMax PyFloat_GetMax=python39.PyFloat_GetMax
PyFloat_GetMin=python38.PyFloat_GetMin PyFloat_GetMin=python39.PyFloat_GetMin
PyFloat_Type=python38.PyFloat_Type DATA PyFloat_Type=python39.PyFloat_Type DATA
PyFrozenSet_New=python38.PyFrozenSet_New PyFrozenSet_New=python39.PyFrozenSet_New
PyFrozenSet_Type=python38.PyFrozenSet_Type DATA PyFrozenSet_Type=python39.PyFrozenSet_Type DATA
PyGC_Collect=python38.PyGC_Collect PyGC_Collect=python39.PyGC_Collect
PyGILState_Ensure=python38.PyGILState_Ensure PyGILState_Ensure=python39.PyGILState_Ensure
PyGILState_GetThisThreadState=python38.PyGILState_GetThisThreadState PyGILState_GetThisThreadState=python39.PyGILState_GetThisThreadState
PyGILState_Release=python38.PyGILState_Release PyGILState_Release=python39.PyGILState_Release
PyGetSetDescr_Type=python38.PyGetSetDescr_Type DATA PyGetSetDescr_Type=python39.PyGetSetDescr_Type DATA
PyImport_AddModule=python38.PyImport_AddModule PyImport_AddModule=python39.PyImport_AddModule
PyImport_AddModuleObject=python38.PyImport_AddModuleObject PyImport_AddModuleObject=python39.PyImport_AddModuleObject
PyImport_AppendInittab=python38.PyImport_AppendInittab PyImport_AppendInittab=python39.PyImport_AppendInittab
PyImport_Cleanup=python38.PyImport_Cleanup PyImport_Cleanup=python39.PyImport_Cleanup
PyImport_ExecCodeModule=python38.PyImport_ExecCodeModule PyImport_ExecCodeModule=python39.PyImport_ExecCodeModule
PyImport_ExecCodeModuleEx=python38.PyImport_ExecCodeModuleEx PyImport_ExecCodeModuleEx=python39.PyImport_ExecCodeModuleEx
PyImport_ExecCodeModuleObject=python38.PyImport_ExecCodeModuleObject PyImport_ExecCodeModuleObject=python39.PyImport_ExecCodeModuleObject
PyImport_ExecCodeModuleWithPathnames=python38.PyImport_ExecCodeModuleWithPathnames PyImport_ExecCodeModuleWithPathnames=python39.PyImport_ExecCodeModuleWithPathnames
PyImport_GetImporter=python38.PyImport_GetImporter PyImport_GetImporter=python39.PyImport_GetImporter
PyImport_GetMagicNumber=python38.PyImport_GetMagicNumber PyImport_GetMagicNumber=python39.PyImport_GetMagicNumber
PyImport_GetMagicTag=python38.PyImport_GetMagicTag PyImport_GetMagicTag=python39.PyImport_GetMagicTag
PyImport_GetModule=python38.PyImport_GetModule PyImport_GetModule=python39.PyImport_GetModule
PyImport_GetModuleDict=python38.PyImport_GetModuleDict PyImport_GetModuleDict=python39.PyImport_GetModuleDict
PyImport_Import=python38.PyImport_Import PyImport_Import=python39.PyImport_Import
PyImport_ImportFrozenModule=python38.PyImport_ImportFrozenModule PyImport_ImportFrozenModule=python39.PyImport_ImportFrozenModule
PyImport_ImportFrozenModuleObject=python38.PyImport_ImportFrozenModuleObject PyImport_ImportFrozenModuleObject=python39.PyImport_ImportFrozenModuleObject
PyImport_ImportModule=python38.PyImport_ImportModule PyImport_ImportModule=python39.PyImport_ImportModule
PyImport_ImportModuleLevel=python38.PyImport_ImportModuleLevel PyImport_ImportModuleLevel=python39.PyImport_ImportModuleLevel
PyImport_ImportModuleLevelObject=python38.PyImport_ImportModuleLevelObject PyImport_ImportModuleLevelObject=python39.PyImport_ImportModuleLevelObject
PyImport_ImportModuleNoBlock=python38.PyImport_ImportModuleNoBlock PyImport_ImportModuleNoBlock=python39.PyImport_ImportModuleNoBlock
PyImport_ReloadModule=python38.PyImport_ReloadModule PyImport_ReloadModule=python39.PyImport_ReloadModule
PyIndex_Check=python38.PyIndex_Check PyIndex_Check=python39.PyIndex_Check
PyInterpreterState_Clear=python38.PyInterpreterState_Clear PyInterpreterState_Clear=python39.PyInterpreterState_Clear
PyInterpreterState_Delete=python38.PyInterpreterState_Delete PyInterpreterState_Delete=python39.PyInterpreterState_Delete
PyInterpreterState_New=python38.PyInterpreterState_New PyInterpreterState_New=python39.PyInterpreterState_New
PyIter_Check=python38.PyIter_Check PyIter_Check=python39.PyIter_Check
PyIter_Next=python38.PyIter_Next PyIter_Next=python39.PyIter_Next
PyListIter_Type=python38.PyListIter_Type DATA PyListIter_Type=python39.PyListIter_Type DATA
PyListRevIter_Type=python38.PyListRevIter_Type DATA PyListRevIter_Type=python39.PyListRevIter_Type DATA
PyList_Append=python38.PyList_Append PyList_Append=python39.PyList_Append
PyList_AsTuple=python38.PyList_AsTuple PyList_AsTuple=python39.PyList_AsTuple
PyList_GetItem=python38.PyList_GetItem PyList_GetItem=python39.PyList_GetItem
PyList_GetSlice=python38.PyList_GetSlice PyList_GetSlice=python39.PyList_GetSlice
PyList_Insert=python38.PyList_Insert PyList_Insert=python39.PyList_Insert
PyList_New=python38.PyList_New PyList_New=python39.PyList_New
PyList_Reverse=python38.PyList_Reverse PyList_Reverse=python39.PyList_Reverse
PyList_SetItem=python38.PyList_SetItem PyList_SetItem=python39.PyList_SetItem
PyList_SetSlice=python38.PyList_SetSlice PyList_SetSlice=python39.PyList_SetSlice
PyList_Size=python38.PyList_Size PyList_Size=python39.PyList_Size
PyList_Sort=python38.PyList_Sort PyList_Sort=python39.PyList_Sort
PyList_Type=python38.PyList_Type DATA PyList_Type=python39.PyList_Type DATA
PyLongRangeIter_Type=python38.PyLongRangeIter_Type DATA PyLongRangeIter_Type=python39.PyLongRangeIter_Type DATA
PyLong_AsDouble=python38.PyLong_AsDouble PyLong_AsDouble=python39.PyLong_AsDouble
PyLong_AsLong=python38.PyLong_AsLong PyLong_AsLong=python39.PyLong_AsLong
PyLong_AsLongAndOverflow=python38.PyLong_AsLongAndOverflow PyLong_AsLongAndOverflow=python39.PyLong_AsLongAndOverflow
PyLong_AsLongLong=python38.PyLong_AsLongLong PyLong_AsLongLong=python39.PyLong_AsLongLong
PyLong_AsLongLongAndOverflow=python38.PyLong_AsLongLongAndOverflow PyLong_AsLongLongAndOverflow=python39.PyLong_AsLongLongAndOverflow
PyLong_AsSize_t=python38.PyLong_AsSize_t PyLong_AsSize_t=python39.PyLong_AsSize_t
PyLong_AsSsize_t=python38.PyLong_AsSsize_t PyLong_AsSsize_t=python39.PyLong_AsSsize_t
PyLong_AsUnsignedLong=python38.PyLong_AsUnsignedLong PyLong_AsUnsignedLong=python39.PyLong_AsUnsignedLong
PyLong_AsUnsignedLongLong=python38.PyLong_AsUnsignedLongLong PyLong_AsUnsignedLongLong=python39.PyLong_AsUnsignedLongLong
PyLong_AsUnsignedLongLongMask=python38.PyLong_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask=python39.PyLong_AsUnsignedLongLongMask
PyLong_AsUnsignedLongMask=python38.PyLong_AsUnsignedLongMask PyLong_AsUnsignedLongMask=python39.PyLong_AsUnsignedLongMask
PyLong_AsVoidPtr=python38.PyLong_AsVoidPtr PyLong_AsVoidPtr=python39.PyLong_AsVoidPtr
PyLong_FromDouble=python38.PyLong_FromDouble PyLong_FromDouble=python39.PyLong_FromDouble
PyLong_FromLong=python38.PyLong_FromLong PyLong_FromLong=python39.PyLong_FromLong
PyLong_FromLongLong=python38.PyLong_FromLongLong PyLong_FromLongLong=python39.PyLong_FromLongLong
PyLong_FromSize_t=python38.PyLong_FromSize_t PyLong_FromSize_t=python39.PyLong_FromSize_t
PyLong_FromSsize_t=python38.PyLong_FromSsize_t PyLong_FromSsize_t=python39.PyLong_FromSsize_t
PyLong_FromString=python38.PyLong_FromString PyLong_FromString=python39.PyLong_FromString
PyLong_FromUnsignedLong=python38.PyLong_FromUnsignedLong PyLong_FromUnsignedLong=python39.PyLong_FromUnsignedLong
PyLong_FromUnsignedLongLong=python38.PyLong_FromUnsignedLongLong PyLong_FromUnsignedLongLong=python39.PyLong_FromUnsignedLongLong
PyLong_FromVoidPtr=python38.PyLong_FromVoidPtr PyLong_FromVoidPtr=python39.PyLong_FromVoidPtr
PyLong_GetInfo=python38.PyLong_GetInfo PyLong_GetInfo=python39.PyLong_GetInfo
PyLong_Type=python38.PyLong_Type DATA PyLong_Type=python39.PyLong_Type DATA
PyMap_Type=python38.PyMap_Type DATA PyMap_Type=python39.PyMap_Type DATA
PyMapping_Check=python38.PyMapping_Check PyMapping_Check=python39.PyMapping_Check
PyMapping_GetItemString=python38.PyMapping_GetItemString PyMapping_GetItemString=python39.PyMapping_GetItemString
PyMapping_HasKey=python38.PyMapping_HasKey PyMapping_HasKey=python39.PyMapping_HasKey
PyMapping_HasKeyString=python38.PyMapping_HasKeyString PyMapping_HasKeyString=python39.PyMapping_HasKeyString
PyMapping_Items=python38.PyMapping_Items PyMapping_Items=python39.PyMapping_Items
PyMapping_Keys=python38.PyMapping_Keys PyMapping_Keys=python39.PyMapping_Keys
PyMapping_Length=python38.PyMapping_Length PyMapping_Length=python39.PyMapping_Length
PyMapping_SetItemString=python38.PyMapping_SetItemString PyMapping_SetItemString=python39.PyMapping_SetItemString
PyMapping_Size=python38.PyMapping_Size PyMapping_Size=python39.PyMapping_Size
PyMapping_Values=python38.PyMapping_Values PyMapping_Values=python39.PyMapping_Values
PyMem_Calloc=python38.PyMem_Calloc PyMem_Calloc=python39.PyMem_Calloc
PyMem_Free=python38.PyMem_Free PyMem_Free=python39.PyMem_Free
PyMem_Malloc=python38.PyMem_Malloc PyMem_Malloc=python39.PyMem_Malloc
PyMem_Realloc=python38.PyMem_Realloc PyMem_Realloc=python39.PyMem_Realloc
PyMemberDescr_Type=python38.PyMemberDescr_Type DATA PyMemberDescr_Type=python39.PyMemberDescr_Type DATA
PyMemoryView_FromMemory=python38.PyMemoryView_FromMemory PyMemoryView_FromMemory=python39.PyMemoryView_FromMemory
PyMemoryView_FromObject=python38.PyMemoryView_FromObject PyMemoryView_FromObject=python39.PyMemoryView_FromObject
PyMemoryView_GetContiguous=python38.PyMemoryView_GetContiguous PyMemoryView_GetContiguous=python39.PyMemoryView_GetContiguous
PyMemoryView_Type=python38.PyMemoryView_Type DATA PyMemoryView_Type=python39.PyMemoryView_Type DATA
PyMethodDescr_Type=python38.PyMethodDescr_Type DATA PyMethodDescr_Type=python39.PyMethodDescr_Type DATA
PyModuleDef_Init=python38.PyModuleDef_Init PyModuleDef_Init=python39.PyModuleDef_Init
PyModuleDef_Type=python38.PyModuleDef_Type DATA PyModuleDef_Type=python39.PyModuleDef_Type DATA
PyModule_AddFunctions=python38.PyModule_AddFunctions PyModule_AddFunctions=python39.PyModule_AddFunctions
PyModule_AddIntConstant=python38.PyModule_AddIntConstant PyModule_AddIntConstant=python39.PyModule_AddIntConstant
PyModule_AddObject=python38.PyModule_AddObject PyModule_AddObject=python39.PyModule_AddObject
PyModule_AddStringConstant=python38.PyModule_AddStringConstant PyModule_AddStringConstant=python39.PyModule_AddStringConstant
PyModule_Create2=python38.PyModule_Create2 PyModule_Create2=python39.PyModule_Create2
PyModule_ExecDef=python38.PyModule_ExecDef PyModule_ExecDef=python39.PyModule_ExecDef
PyModule_FromDefAndSpec2=python38.PyModule_FromDefAndSpec2 PyModule_FromDefAndSpec2=python39.PyModule_FromDefAndSpec2
PyModule_GetDef=python38.PyModule_GetDef PyModule_GetDef=python39.PyModule_GetDef
PyModule_GetDict=python38.PyModule_GetDict PyModule_GetDict=python39.PyModule_GetDict
PyModule_GetFilename=python38.PyModule_GetFilename PyModule_GetFilename=python39.PyModule_GetFilename
PyModule_GetFilenameObject=python38.PyModule_GetFilenameObject PyModule_GetFilenameObject=python39.PyModule_GetFilenameObject
PyModule_GetName=python38.PyModule_GetName PyModule_GetName=python39.PyModule_GetName
PyModule_GetNameObject=python38.PyModule_GetNameObject PyModule_GetNameObject=python39.PyModule_GetNameObject
PyModule_GetState=python38.PyModule_GetState PyModule_GetState=python39.PyModule_GetState
PyModule_New=python38.PyModule_New PyModule_New=python39.PyModule_New
PyModule_NewObject=python38.PyModule_NewObject PyModule_NewObject=python39.PyModule_NewObject
PyModule_SetDocString=python38.PyModule_SetDocString PyModule_SetDocString=python39.PyModule_SetDocString
PyModule_Type=python38.PyModule_Type DATA PyModule_Type=python39.PyModule_Type DATA
PyNullImporter_Type=python38.PyNullImporter_Type DATA PyNullImporter_Type=python39.PyNullImporter_Type DATA
PyNumber_Absolute=python38.PyNumber_Absolute PyNumber_Absolute=python39.PyNumber_Absolute
PyNumber_Add=python38.PyNumber_Add PyNumber_Add=python39.PyNumber_Add
PyNumber_And=python38.PyNumber_And PyNumber_And=python39.PyNumber_And
PyNumber_AsSsize_t=python38.PyNumber_AsSsize_t PyNumber_AsSsize_t=python39.PyNumber_AsSsize_t
PyNumber_Check=python38.PyNumber_Check PyNumber_Check=python39.PyNumber_Check
PyNumber_Divmod=python38.PyNumber_Divmod PyNumber_Divmod=python39.PyNumber_Divmod
PyNumber_Float=python38.PyNumber_Float PyNumber_Float=python39.PyNumber_Float
PyNumber_FloorDivide=python38.PyNumber_FloorDivide PyNumber_FloorDivide=python39.PyNumber_FloorDivide
PyNumber_InPlaceAdd=python38.PyNumber_InPlaceAdd PyNumber_InPlaceAdd=python39.PyNumber_InPlaceAdd
PyNumber_InPlaceAnd=python38.PyNumber_InPlaceAnd PyNumber_InPlaceAnd=python39.PyNumber_InPlaceAnd
PyNumber_InPlaceFloorDivide=python38.PyNumber_InPlaceFloorDivide PyNumber_InPlaceFloorDivide=python39.PyNumber_InPlaceFloorDivide
PyNumber_InPlaceLshift=python38.PyNumber_InPlaceLshift PyNumber_InPlaceLshift=python39.PyNumber_InPlaceLshift
PyNumber_InPlaceMatrixMultiply=python38.PyNumber_InPlaceMatrixMultiply PyNumber_InPlaceMatrixMultiply=python39.PyNumber_InPlaceMatrixMultiply
PyNumber_InPlaceMultiply=python38.PyNumber_InPlaceMultiply PyNumber_InPlaceMultiply=python39.PyNumber_InPlaceMultiply
PyNumber_InPlaceOr=python38.PyNumber_InPlaceOr PyNumber_InPlaceOr=python39.PyNumber_InPlaceOr
PyNumber_InPlacePower=python38.PyNumber_InPlacePower PyNumber_InPlacePower=python39.PyNumber_InPlacePower
PyNumber_InPlaceRemainder=python38.PyNumber_InPlaceRemainder PyNumber_InPlaceRemainder=python39.PyNumber_InPlaceRemainder
PyNumber_InPlaceRshift=python38.PyNumber_InPlaceRshift PyNumber_InPlaceRshift=python39.PyNumber_InPlaceRshift
PyNumber_InPlaceSubtract=python38.PyNumber_InPlaceSubtract PyNumber_InPlaceSubtract=python39.PyNumber_InPlaceSubtract
PyNumber_InPlaceTrueDivide=python38.PyNumber_InPlaceTrueDivide PyNumber_InPlaceTrueDivide=python39.PyNumber_InPlaceTrueDivide
PyNumber_InPlaceXor=python38.PyNumber_InPlaceXor PyNumber_InPlaceXor=python39.PyNumber_InPlaceXor
PyNumber_Index=python38.PyNumber_Index PyNumber_Index=python39.PyNumber_Index
PyNumber_Invert=python38.PyNumber_Invert PyNumber_Invert=python39.PyNumber_Invert
PyNumber_Long=python38.PyNumber_Long PyNumber_Long=python39.PyNumber_Long
PyNumber_Lshift=python38.PyNumber_Lshift PyNumber_Lshift=python39.PyNumber_Lshift
PyNumber_MatrixMultiply=python38.PyNumber_MatrixMultiply PyNumber_MatrixMultiply=python39.PyNumber_MatrixMultiply
PyNumber_Multiply=python38.PyNumber_Multiply PyNumber_Multiply=python39.PyNumber_Multiply
PyNumber_Negative=python38.PyNumber_Negative PyNumber_Negative=python39.PyNumber_Negative
PyNumber_Or=python38.PyNumber_Or PyNumber_Or=python39.PyNumber_Or
PyNumber_Positive=python38.PyNumber_Positive PyNumber_Positive=python39.PyNumber_Positive
PyNumber_Power=python38.PyNumber_Power PyNumber_Power=python39.PyNumber_Power
PyNumber_Remainder=python38.PyNumber_Remainder PyNumber_Remainder=python39.PyNumber_Remainder
PyNumber_Rshift=python38.PyNumber_Rshift PyNumber_Rshift=python39.PyNumber_Rshift
PyNumber_Subtract=python38.PyNumber_Subtract PyNumber_Subtract=python39.PyNumber_Subtract
PyNumber_ToBase=python38.PyNumber_ToBase PyNumber_ToBase=python39.PyNumber_ToBase
PyNumber_TrueDivide=python38.PyNumber_TrueDivide PyNumber_TrueDivide=python39.PyNumber_TrueDivide
PyNumber_Xor=python38.PyNumber_Xor PyNumber_Xor=python39.PyNumber_Xor
PyODictItems_Type=python38.PyODictItems_Type DATA PyODictItems_Type=python39.PyODictItems_Type DATA
PyODictIter_Type=python38.PyODictIter_Type DATA PyODictIter_Type=python39.PyODictIter_Type DATA
PyODictKeys_Type=python38.PyODictKeys_Type DATA PyODictKeys_Type=python39.PyODictKeys_Type DATA
PyODictValues_Type=python38.PyODictValues_Type DATA PyODictValues_Type=python39.PyODictValues_Type DATA
PyODict_DelItem=python38.PyODict_DelItem PyODict_DelItem=python39.PyODict_DelItem
PyODict_New=python38.PyODict_New PyODict_New=python39.PyODict_New
PyODict_SetItem=python38.PyODict_SetItem PyODict_SetItem=python39.PyODict_SetItem
PyODict_Type=python38.PyODict_Type DATA PyODict_Type=python39.PyODict_Type DATA
PyOS_AfterFork=python38.PyOS_AfterFork PyOS_AfterFork=python39.PyOS_AfterFork
PyOS_CheckStack=python38.PyOS_CheckStack PyOS_CheckStack=python39.PyOS_CheckStack
PyOS_FSPath=python38.PyOS_FSPath PyOS_FSPath=python39.PyOS_FSPath
PyOS_InitInterrupts=python38.PyOS_InitInterrupts PyOS_InitInterrupts=python39.PyOS_InitInterrupts
PyOS_InputHook=python38.PyOS_InputHook DATA PyOS_InputHook=python39.PyOS_InputHook DATA
PyOS_InterruptOccurred=python38.PyOS_InterruptOccurred PyOS_InterruptOccurred=python39.PyOS_InterruptOccurred
PyOS_ReadlineFunctionPointer=python38.PyOS_ReadlineFunctionPointer DATA PyOS_ReadlineFunctionPointer=python39.PyOS_ReadlineFunctionPointer DATA
PyOS_double_to_string=python38.PyOS_double_to_string PyOS_double_to_string=python39.PyOS_double_to_string
PyOS_getsig=python38.PyOS_getsig PyOS_getsig=python39.PyOS_getsig
PyOS_mystricmp=python38.PyOS_mystricmp PyOS_mystricmp=python39.PyOS_mystricmp
PyOS_mystrnicmp=python38.PyOS_mystrnicmp PyOS_mystrnicmp=python39.PyOS_mystrnicmp
PyOS_setsig=python38.PyOS_setsig PyOS_setsig=python39.PyOS_setsig
PyOS_snprintf=python38.PyOS_snprintf PyOS_snprintf=python39.PyOS_snprintf
PyOS_string_to_double=python38.PyOS_string_to_double PyOS_string_to_double=python39.PyOS_string_to_double
PyOS_strtol=python38.PyOS_strtol PyOS_strtol=python39.PyOS_strtol
PyOS_strtoul=python38.PyOS_strtoul PyOS_strtoul=python39.PyOS_strtoul
PyOS_vsnprintf=python38.PyOS_vsnprintf PyOS_vsnprintf=python39.PyOS_vsnprintf
PyObject_ASCII=python38.PyObject_ASCII PyObject_ASCII=python39.PyObject_ASCII
PyObject_AsCharBuffer=python38.PyObject_AsCharBuffer PyObject_AsCharBuffer=python39.PyObject_AsCharBuffer
PyObject_AsFileDescriptor=python38.PyObject_AsFileDescriptor PyObject_AsFileDescriptor=python39.PyObject_AsFileDescriptor
PyObject_AsReadBuffer=python38.PyObject_AsReadBuffer PyObject_AsReadBuffer=python39.PyObject_AsReadBuffer
PyObject_AsWriteBuffer=python38.PyObject_AsWriteBuffer PyObject_AsWriteBuffer=python39.PyObject_AsWriteBuffer
PyObject_Bytes=python38.PyObject_Bytes PyObject_Bytes=python39.PyObject_Bytes
PyObject_Call=python38.PyObject_Call PyObject_Call=python39.PyObject_Call
PyObject_CallFunction=python38.PyObject_CallFunction PyObject_CallFunction=python39.PyObject_CallFunction
PyObject_CallFunctionObjArgs=python38.PyObject_CallFunctionObjArgs PyObject_CallFunctionObjArgs=python39.PyObject_CallFunctionObjArgs
PyObject_CallMethod=python38.PyObject_CallMethod PyObject_CallMethod=python39.PyObject_CallMethod
PyObject_CallMethodObjArgs=python38.PyObject_CallMethodObjArgs PyObject_CallMethodObjArgs=python39.PyObject_CallMethodObjArgs
PyObject_CallObject=python38.PyObject_CallObject PyObject_CallObject=python39.PyObject_CallObject
PyObject_Calloc=python38.PyObject_Calloc PyObject_Calloc=python39.PyObject_Calloc
PyObject_CheckReadBuffer=python38.PyObject_CheckReadBuffer PyObject_CheckReadBuffer=python39.PyObject_CheckReadBuffer
PyObject_ClearWeakRefs=python38.PyObject_ClearWeakRefs PyObject_ClearWeakRefs=python39.PyObject_ClearWeakRefs
PyObject_DelItem=python38.PyObject_DelItem PyObject_DelItem=python39.PyObject_DelItem
PyObject_DelItemString=python38.PyObject_DelItemString PyObject_DelItemString=python39.PyObject_DelItemString
PyObject_Dir=python38.PyObject_Dir PyObject_Dir=python39.PyObject_Dir
PyObject_Format=python38.PyObject_Format PyObject_Format=python39.PyObject_Format
PyObject_Free=python38.PyObject_Free PyObject_Free=python39.PyObject_Free
PyObject_GC_Del=python38.PyObject_GC_Del PyObject_GC_Del=python39.PyObject_GC_Del
PyObject_GC_Track=python38.PyObject_GC_Track PyObject_GC_Track=python39.PyObject_GC_Track
PyObject_GC_UnTrack=python38.PyObject_GC_UnTrack PyObject_GC_UnTrack=python39.PyObject_GC_UnTrack
PyObject_GenericGetAttr=python38.PyObject_GenericGetAttr PyObject_GenericGetAttr=python39.PyObject_GenericGetAttr
PyObject_GenericSetAttr=python38.PyObject_GenericSetAttr PyObject_GenericSetAttr=python39.PyObject_GenericSetAttr
PyObject_GenericSetDict=python38.PyObject_GenericSetDict PyObject_GenericSetDict=python39.PyObject_GenericSetDict
PyObject_GetAttr=python38.PyObject_GetAttr PyObject_GetAttr=python39.PyObject_GetAttr
PyObject_GetAttrString=python38.PyObject_GetAttrString PyObject_GetAttrString=python39.PyObject_GetAttrString
PyObject_GetItem=python38.PyObject_GetItem PyObject_GetItem=python39.PyObject_GetItem
PyObject_GetIter=python38.PyObject_GetIter PyObject_GetIter=python39.PyObject_GetIter
PyObject_HasAttr=python38.PyObject_HasAttr PyObject_HasAttr=python39.PyObject_HasAttr
PyObject_HasAttrString=python38.PyObject_HasAttrString PyObject_HasAttrString=python39.PyObject_HasAttrString
PyObject_Hash=python38.PyObject_Hash PyObject_Hash=python39.PyObject_Hash
PyObject_HashNotImplemented=python38.PyObject_HashNotImplemented PyObject_HashNotImplemented=python39.PyObject_HashNotImplemented
PyObject_Init=python38.PyObject_Init PyObject_Init=python39.PyObject_Init
PyObject_InitVar=python38.PyObject_InitVar PyObject_InitVar=python39.PyObject_InitVar
PyObject_IsInstance=python38.PyObject_IsInstance PyObject_IsInstance=python39.PyObject_IsInstance
PyObject_IsSubclass=python38.PyObject_IsSubclass PyObject_IsSubclass=python39.PyObject_IsSubclass
PyObject_IsTrue=python38.PyObject_IsTrue PyObject_IsTrue=python39.PyObject_IsTrue
PyObject_Length=python38.PyObject_Length PyObject_Length=python39.PyObject_Length
PyObject_Malloc=python38.PyObject_Malloc PyObject_Malloc=python39.PyObject_Malloc
PyObject_Not=python38.PyObject_Not PyObject_Not=python39.PyObject_Not
PyObject_Realloc=python38.PyObject_Realloc PyObject_Realloc=python39.PyObject_Realloc
PyObject_Repr=python38.PyObject_Repr PyObject_Repr=python39.PyObject_Repr
PyObject_RichCompare=python38.PyObject_RichCompare PyObject_RichCompare=python39.PyObject_RichCompare
PyObject_RichCompareBool=python38.PyObject_RichCompareBool PyObject_RichCompareBool=python39.PyObject_RichCompareBool
PyObject_SelfIter=python38.PyObject_SelfIter PyObject_SelfIter=python39.PyObject_SelfIter
PyObject_SetAttr=python38.PyObject_SetAttr PyObject_SetAttr=python39.PyObject_SetAttr
PyObject_SetAttrString=python38.PyObject_SetAttrString PyObject_SetAttrString=python39.PyObject_SetAttrString
PyObject_SetItem=python38.PyObject_SetItem PyObject_SetItem=python39.PyObject_SetItem
PyObject_Size=python38.PyObject_Size PyObject_Size=python39.PyObject_Size
PyObject_Str=python38.PyObject_Str PyObject_Str=python39.PyObject_Str
PyObject_Type=python38.PyObject_Type PyObject_Type=python39.PyObject_Type
PyParser_SimpleParseFileFlags=python38.PyParser_SimpleParseFileFlags PyParser_SimpleParseFileFlags=python39.PyParser_SimpleParseFileFlags
PyParser_SimpleParseStringFlags=python38.PyParser_SimpleParseStringFlags PyParser_SimpleParseStringFlags=python39.PyParser_SimpleParseStringFlags
PyParser_SimpleParseStringFlagsFilename=python38.PyParser_SimpleParseStringFlagsFilename PyParser_SimpleParseStringFlagsFilename=python39.PyParser_SimpleParseStringFlagsFilename
PyProperty_Type=python38.PyProperty_Type DATA PyProperty_Type=python39.PyProperty_Type DATA
PyRangeIter_Type=python38.PyRangeIter_Type DATA PyRangeIter_Type=python39.PyRangeIter_Type DATA
PyRange_Type=python38.PyRange_Type DATA PyRange_Type=python39.PyRange_Type DATA
PyReversed_Type=python38.PyReversed_Type DATA PyReversed_Type=python39.PyReversed_Type DATA
PySeqIter_New=python38.PySeqIter_New PySeqIter_New=python39.PySeqIter_New
PySeqIter_Type=python38.PySeqIter_Type DATA PySeqIter_Type=python39.PySeqIter_Type DATA
PySequence_Check=python38.PySequence_Check PySequence_Check=python39.PySequence_Check
PySequence_Concat=python38.PySequence_Concat PySequence_Concat=python39.PySequence_Concat
PySequence_Contains=python38.PySequence_Contains PySequence_Contains=python39.PySequence_Contains
PySequence_Count=python38.PySequence_Count PySequence_Count=python39.PySequence_Count
PySequence_DelItem=python38.PySequence_DelItem PySequence_DelItem=python39.PySequence_DelItem
PySequence_DelSlice=python38.PySequence_DelSlice PySequence_DelSlice=python39.PySequence_DelSlice
PySequence_Fast=python38.PySequence_Fast PySequence_Fast=python39.PySequence_Fast
PySequence_GetItem=python38.PySequence_GetItem PySequence_GetItem=python39.PySequence_GetItem
PySequence_GetSlice=python38.PySequence_GetSlice PySequence_GetSlice=python39.PySequence_GetSlice
PySequence_In=python38.PySequence_In PySequence_In=python39.PySequence_In
PySequence_InPlaceConcat=python38.PySequence_InPlaceConcat PySequence_InPlaceConcat=python39.PySequence_InPlaceConcat
PySequence_InPlaceRepeat=python38.PySequence_InPlaceRepeat PySequence_InPlaceRepeat=python39.PySequence_InPlaceRepeat
PySequence_Index=python38.PySequence_Index PySequence_Index=python39.PySequence_Index
PySequence_Length=python38.PySequence_Length PySequence_Length=python39.PySequence_Length
PySequence_List=python38.PySequence_List PySequence_List=python39.PySequence_List
PySequence_Repeat=python38.PySequence_Repeat PySequence_Repeat=python39.PySequence_Repeat
PySequence_SetItem=python38.PySequence_SetItem PySequence_SetItem=python39.PySequence_SetItem
PySequence_SetSlice=python38.PySequence_SetSlice PySequence_SetSlice=python39.PySequence_SetSlice
PySequence_Size=python38.PySequence_Size PySequence_Size=python39.PySequence_Size
PySequence_Tuple=python38.PySequence_Tuple PySequence_Tuple=python39.PySequence_Tuple
PySetIter_Type=python38.PySetIter_Type DATA PySetIter_Type=python39.PySetIter_Type DATA
PySet_Add=python38.PySet_Add PySet_Add=python39.PySet_Add
PySet_Clear=python38.PySet_Clear PySet_Clear=python39.PySet_Clear
PySet_Contains=python38.PySet_Contains PySet_Contains=python39.PySet_Contains
PySet_Discard=python38.PySet_Discard PySet_Discard=python39.PySet_Discard
PySet_New=python38.PySet_New PySet_New=python39.PySet_New
PySet_Pop=python38.PySet_Pop PySet_Pop=python39.PySet_Pop
PySet_Size=python38.PySet_Size PySet_Size=python39.PySet_Size
PySet_Type=python38.PySet_Type DATA PySet_Type=python39.PySet_Type DATA
PySlice_AdjustIndices=python38.PySlice_AdjustIndices PySlice_AdjustIndices=python39.PySlice_AdjustIndices
PySlice_GetIndices=python38.PySlice_GetIndices PySlice_GetIndices=python39.PySlice_GetIndices
PySlice_GetIndicesEx=python38.PySlice_GetIndicesEx PySlice_GetIndicesEx=python39.PySlice_GetIndicesEx
PySlice_New=python38.PySlice_New PySlice_New=python39.PySlice_New
PySlice_Type=python38.PySlice_Type DATA PySlice_Type=python39.PySlice_Type DATA
PySlice_Unpack=python38.PySlice_Unpack PySlice_Unpack=python39.PySlice_Unpack
PySortWrapper_Type=python38.PySortWrapper_Type DATA PySortWrapper_Type=python39.PySortWrapper_Type DATA
PyInterpreterState_GetID=python38.PyInterpreterState_GetID PyInterpreterState_GetID=python39.PyInterpreterState_GetID
PyState_AddModule=python38.PyState_AddModule PyState_AddModule=python39.PyState_AddModule
PyState_FindModule=python38.PyState_FindModule PyState_FindModule=python39.PyState_FindModule
PyState_RemoveModule=python38.PyState_RemoveModule PyState_RemoveModule=python39.PyState_RemoveModule
PyStructSequence_GetItem=python38.PyStructSequence_GetItem PyStructSequence_GetItem=python39.PyStructSequence_GetItem
PyStructSequence_New=python38.PyStructSequence_New PyStructSequence_New=python39.PyStructSequence_New
PyStructSequence_NewType=python38.PyStructSequence_NewType PyStructSequence_NewType=python39.PyStructSequence_NewType
PyStructSequence_SetItem=python38.PyStructSequence_SetItem PyStructSequence_SetItem=python39.PyStructSequence_SetItem
PySuper_Type=python38.PySuper_Type DATA PySuper_Type=python39.PySuper_Type DATA
PySys_AddWarnOption=python38.PySys_AddWarnOption PySys_AddWarnOption=python39.PySys_AddWarnOption
PySys_AddWarnOptionUnicode=python38.PySys_AddWarnOptionUnicode PySys_AddWarnOptionUnicode=python39.PySys_AddWarnOptionUnicode
PySys_AddXOption=python38.PySys_AddXOption PySys_AddXOption=python39.PySys_AddXOption
PySys_FormatStderr=python38.PySys_FormatStderr PySys_FormatStderr=python39.PySys_FormatStderr
PySys_FormatStdout=python38.PySys_FormatStdout PySys_FormatStdout=python39.PySys_FormatStdout
PySys_GetObject=python38.PySys_GetObject PySys_GetObject=python39.PySys_GetObject
PySys_GetXOptions=python38.PySys_GetXOptions PySys_GetXOptions=python39.PySys_GetXOptions
PySys_HasWarnOptions=python38.PySys_HasWarnOptions PySys_HasWarnOptions=python39.PySys_HasWarnOptions
PySys_ResetWarnOptions=python38.PySys_ResetWarnOptions PySys_ResetWarnOptions=python39.PySys_ResetWarnOptions
PySys_SetArgv=python38.PySys_SetArgv PySys_SetArgv=python39.PySys_SetArgv
PySys_SetArgvEx=python38.PySys_SetArgvEx PySys_SetArgvEx=python39.PySys_SetArgvEx
PySys_SetObject=python38.PySys_SetObject PySys_SetObject=python39.PySys_SetObject
PySys_SetPath=python38.PySys_SetPath PySys_SetPath=python39.PySys_SetPath
PySys_WriteStderr=python38.PySys_WriteStderr PySys_WriteStderr=python39.PySys_WriteStderr
PySys_WriteStdout=python38.PySys_WriteStdout PySys_WriteStdout=python39.PySys_WriteStdout
PyThreadState_Clear=python38.PyThreadState_Clear PyThreadState_Clear=python39.PyThreadState_Clear
PyThreadState_Delete=python38.PyThreadState_Delete PyThreadState_Delete=python39.PyThreadState_Delete
PyThreadState_DeleteCurrent=python38.PyThreadState_DeleteCurrent PyThreadState_DeleteCurrent=python39.PyThreadState_DeleteCurrent
PyThreadState_Get=python38.PyThreadState_Get PyThreadState_Get=python39.PyThreadState_Get
PyThreadState_GetDict=python38.PyThreadState_GetDict PyThreadState_GetDict=python39.PyThreadState_GetDict
PyThreadState_New=python38.PyThreadState_New PyThreadState_New=python39.PyThreadState_New
PyThreadState_SetAsyncExc=python38.PyThreadState_SetAsyncExc PyThreadState_SetAsyncExc=python39.PyThreadState_SetAsyncExc
PyThreadState_Swap=python38.PyThreadState_Swap PyThreadState_Swap=python39.PyThreadState_Swap
PyThread_tss_alloc=python38.PyThread_tss_alloc PyThread_tss_alloc=python39.PyThread_tss_alloc
PyThread_tss_create=python38.PyThread_tss_create PyThread_tss_create=python39.PyThread_tss_create
PyThread_tss_delete=python38.PyThread_tss_delete PyThread_tss_delete=python39.PyThread_tss_delete
PyThread_tss_free=python38.PyThread_tss_free PyThread_tss_free=python39.PyThread_tss_free
PyThread_tss_get=python38.PyThread_tss_get PyThread_tss_get=python39.PyThread_tss_get
PyThread_tss_is_created=python38.PyThread_tss_is_created PyThread_tss_is_created=python39.PyThread_tss_is_created
PyThread_tss_set=python38.PyThread_tss_set PyThread_tss_set=python39.PyThread_tss_set
PyTraceBack_Here=python38.PyTraceBack_Here PyTraceBack_Here=python39.PyTraceBack_Here
PyTraceBack_Print=python38.PyTraceBack_Print PyTraceBack_Print=python39.PyTraceBack_Print
PyTraceBack_Type=python38.PyTraceBack_Type DATA PyTraceBack_Type=python39.PyTraceBack_Type DATA
PyTupleIter_Type=python38.PyTupleIter_Type DATA PyTupleIter_Type=python39.PyTupleIter_Type DATA
PyTuple_ClearFreeList=python38.PyTuple_ClearFreeList PyTuple_ClearFreeList=python39.PyTuple_ClearFreeList
PyTuple_GetItem=python38.PyTuple_GetItem PyTuple_GetItem=python39.PyTuple_GetItem
PyTuple_GetSlice=python38.PyTuple_GetSlice PyTuple_GetSlice=python39.PyTuple_GetSlice
PyTuple_New=python38.PyTuple_New PyTuple_New=python39.PyTuple_New
PyTuple_Pack=python38.PyTuple_Pack PyTuple_Pack=python39.PyTuple_Pack
PyTuple_SetItem=python38.PyTuple_SetItem PyTuple_SetItem=python39.PyTuple_SetItem
PyTuple_Size=python38.PyTuple_Size PyTuple_Size=python39.PyTuple_Size
PyTuple_Type=python38.PyTuple_Type DATA PyTuple_Type=python39.PyTuple_Type DATA
PyType_ClearCache=python38.PyType_ClearCache PyType_ClearCache=python39.PyType_ClearCache
PyType_FromSpec=python38.PyType_FromSpec PyType_FromSpec=python39.PyType_FromSpec
PyType_FromSpecWithBases=python38.PyType_FromSpecWithBases PyType_FromSpecWithBases=python39.PyType_FromSpecWithBases
PyType_GenericAlloc=python38.PyType_GenericAlloc PyType_GenericAlloc=python39.PyType_GenericAlloc
PyType_GenericNew=python38.PyType_GenericNew PyType_GenericNew=python39.PyType_GenericNew
PyType_GetFlags=python38.PyType_GetFlags PyType_GetFlags=python39.PyType_GetFlags
PyType_GetSlot=python38.PyType_GetSlot PyType_GetSlot=python39.PyType_GetSlot
PyType_IsSubtype=python38.PyType_IsSubtype PyType_IsSubtype=python39.PyType_IsSubtype
PyType_Modified=python38.PyType_Modified PyType_Modified=python39.PyType_Modified
PyType_Ready=python38.PyType_Ready PyType_Ready=python39.PyType_Ready
PyType_Type=python38.PyType_Type DATA PyType_Type=python39.PyType_Type DATA
PyUnicodeDecodeError_Create=python38.PyUnicodeDecodeError_Create PyUnicodeDecodeError_Create=python39.PyUnicodeDecodeError_Create
PyUnicodeDecodeError_GetEncoding=python38.PyUnicodeDecodeError_GetEncoding PyUnicodeDecodeError_GetEncoding=python39.PyUnicodeDecodeError_GetEncoding
PyUnicodeDecodeError_GetEnd=python38.PyUnicodeDecodeError_GetEnd PyUnicodeDecodeError_GetEnd=python39.PyUnicodeDecodeError_GetEnd
PyUnicodeDecodeError_GetObject=python38.PyUnicodeDecodeError_GetObject PyUnicodeDecodeError_GetObject=python39.PyUnicodeDecodeError_GetObject
PyUnicodeDecodeError_GetReason=python38.PyUnicodeDecodeError_GetReason PyUnicodeDecodeError_GetReason=python39.PyUnicodeDecodeError_GetReason
PyUnicodeDecodeError_GetStart=python38.PyUnicodeDecodeError_GetStart PyUnicodeDecodeError_GetStart=python39.PyUnicodeDecodeError_GetStart
PyUnicodeDecodeError_SetEnd=python38.PyUnicodeDecodeError_SetEnd PyUnicodeDecodeError_SetEnd=python39.PyUnicodeDecodeError_SetEnd
PyUnicodeDecodeError_SetReason=python38.PyUnicodeDecodeError_SetReason PyUnicodeDecodeError_SetReason=python39.PyUnicodeDecodeError_SetReason
PyUnicodeDecodeError_SetStart=python38.PyUnicodeDecodeError_SetStart PyUnicodeDecodeError_SetStart=python39.PyUnicodeDecodeError_SetStart
PyUnicodeEncodeError_GetEncoding=python38.PyUnicodeEncodeError_GetEncoding PyUnicodeEncodeError_GetEncoding=python39.PyUnicodeEncodeError_GetEncoding
PyUnicodeEncodeError_GetEnd=python38.PyUnicodeEncodeError_GetEnd PyUnicodeEncodeError_GetEnd=python39.PyUnicodeEncodeError_GetEnd
PyUnicodeEncodeError_GetObject=python38.PyUnicodeEncodeError_GetObject PyUnicodeEncodeError_GetObject=python39.PyUnicodeEncodeError_GetObject
PyUnicodeEncodeError_GetReason=python38.PyUnicodeEncodeError_GetReason PyUnicodeEncodeError_GetReason=python39.PyUnicodeEncodeError_GetReason
PyUnicodeEncodeError_GetStart=python38.PyUnicodeEncodeError_GetStart PyUnicodeEncodeError_GetStart=python39.PyUnicodeEncodeError_GetStart
PyUnicodeEncodeError_SetEnd=python38.PyUnicodeEncodeError_SetEnd PyUnicodeEncodeError_SetEnd=python39.PyUnicodeEncodeError_SetEnd
PyUnicodeEncodeError_SetReason=python38.PyUnicodeEncodeError_SetReason PyUnicodeEncodeError_SetReason=python39.PyUnicodeEncodeError_SetReason
PyUnicodeEncodeError_SetStart=python38.PyUnicodeEncodeError_SetStart PyUnicodeEncodeError_SetStart=python39.PyUnicodeEncodeError_SetStart
PyUnicodeIter_Type=python38.PyUnicodeIter_Type DATA PyUnicodeIter_Type=python39.PyUnicodeIter_Type DATA
PyUnicodeTranslateError_GetEnd=python38.PyUnicodeTranslateError_GetEnd PyUnicodeTranslateError_GetEnd=python39.PyUnicodeTranslateError_GetEnd
PyUnicodeTranslateError_GetObject=python38.PyUnicodeTranslateError_GetObject PyUnicodeTranslateError_GetObject=python39.PyUnicodeTranslateError_GetObject
PyUnicodeTranslateError_GetReason=python38.PyUnicodeTranslateError_GetReason PyUnicodeTranslateError_GetReason=python39.PyUnicodeTranslateError_GetReason
PyUnicodeTranslateError_GetStart=python38.PyUnicodeTranslateError_GetStart PyUnicodeTranslateError_GetStart=python39.PyUnicodeTranslateError_GetStart
PyUnicodeTranslateError_SetEnd=python38.PyUnicodeTranslateError_SetEnd PyUnicodeTranslateError_SetEnd=python39.PyUnicodeTranslateError_SetEnd
PyUnicodeTranslateError_SetReason=python38.PyUnicodeTranslateError_SetReason PyUnicodeTranslateError_SetReason=python39.PyUnicodeTranslateError_SetReason
PyUnicodeTranslateError_SetStart=python38.PyUnicodeTranslateError_SetStart PyUnicodeTranslateError_SetStart=python39.PyUnicodeTranslateError_SetStart
PyUnicode_Append=python38.PyUnicode_Append PyUnicode_Append=python39.PyUnicode_Append
PyUnicode_AppendAndDel=python38.PyUnicode_AppendAndDel PyUnicode_AppendAndDel=python39.PyUnicode_AppendAndDel
PyUnicode_AsASCIIString=python38.PyUnicode_AsASCIIString PyUnicode_AsASCIIString=python39.PyUnicode_AsASCIIString
PyUnicode_AsCharmapString=python38.PyUnicode_AsCharmapString PyUnicode_AsCharmapString=python39.PyUnicode_AsCharmapString
PyUnicode_AsDecodedObject=python38.PyUnicode_AsDecodedObject PyUnicode_AsDecodedObject=python39.PyUnicode_AsDecodedObject
PyUnicode_AsDecodedUnicode=python38.PyUnicode_AsDecodedUnicode PyUnicode_AsDecodedUnicode=python39.PyUnicode_AsDecodedUnicode
PyUnicode_AsEncodedObject=python38.PyUnicode_AsEncodedObject PyUnicode_AsEncodedObject=python39.PyUnicode_AsEncodedObject
PyUnicode_AsEncodedString=python38.PyUnicode_AsEncodedString PyUnicode_AsEncodedString=python39.PyUnicode_AsEncodedString
PyUnicode_AsEncodedUnicode=python38.PyUnicode_AsEncodedUnicode PyUnicode_AsEncodedUnicode=python39.PyUnicode_AsEncodedUnicode
PyUnicode_AsLatin1String=python38.PyUnicode_AsLatin1String PyUnicode_AsLatin1String=python39.PyUnicode_AsLatin1String
PyUnicode_AsMBCSString=python38.PyUnicode_AsMBCSString PyUnicode_AsMBCSString=python39.PyUnicode_AsMBCSString
PyUnicode_AsRawUnicodeEscapeString=python38.PyUnicode_AsRawUnicodeEscapeString PyUnicode_AsRawUnicodeEscapeString=python39.PyUnicode_AsRawUnicodeEscapeString
PyUnicode_AsUCS4=python38.PyUnicode_AsUCS4 PyUnicode_AsUCS4=python39.PyUnicode_AsUCS4
PyUnicode_AsUCS4Copy=python38.PyUnicode_AsUCS4Copy PyUnicode_AsUCS4Copy=python39.PyUnicode_AsUCS4Copy
PyUnicode_AsUTF16String=python38.PyUnicode_AsUTF16String PyUnicode_AsUTF16String=python39.PyUnicode_AsUTF16String
PyUnicode_AsUTF32String=python38.PyUnicode_AsUTF32String PyUnicode_AsUTF32String=python39.PyUnicode_AsUTF32String
PyUnicode_AsUTF8String=python38.PyUnicode_AsUTF8String PyUnicode_AsUTF8String=python39.PyUnicode_AsUTF8String
PyUnicode_AsUnicodeEscapeString=python38.PyUnicode_AsUnicodeEscapeString PyUnicode_AsUnicodeEscapeString=python39.PyUnicode_AsUnicodeEscapeString
PyUnicode_AsWideChar=python38.PyUnicode_AsWideChar PyUnicode_AsWideChar=python39.PyUnicode_AsWideChar
PyUnicode_AsWideCharString=python38.PyUnicode_AsWideCharString PyUnicode_AsWideCharString=python39.PyUnicode_AsWideCharString
PyUnicode_BuildEncodingMap=python38.PyUnicode_BuildEncodingMap PyUnicode_BuildEncodingMap=python39.PyUnicode_BuildEncodingMap
PyUnicode_ClearFreeList=python38.PyUnicode_ClearFreeList PyUnicode_ClearFreeList=python39.PyUnicode_ClearFreeList
PyUnicode_Compare=python38.PyUnicode_Compare PyUnicode_Compare=python39.PyUnicode_Compare
PyUnicode_CompareWithASCIIString=python38.PyUnicode_CompareWithASCIIString PyUnicode_CompareWithASCIIString=python39.PyUnicode_CompareWithASCIIString
PyUnicode_Concat=python38.PyUnicode_Concat PyUnicode_Concat=python39.PyUnicode_Concat
PyUnicode_Contains=python38.PyUnicode_Contains PyUnicode_Contains=python39.PyUnicode_Contains
PyUnicode_Count=python38.PyUnicode_Count PyUnicode_Count=python39.PyUnicode_Count
PyUnicode_Decode=python38.PyUnicode_Decode PyUnicode_Decode=python39.PyUnicode_Decode
PyUnicode_DecodeASCII=python38.PyUnicode_DecodeASCII PyUnicode_DecodeASCII=python39.PyUnicode_DecodeASCII
PyUnicode_DecodeCharmap=python38.PyUnicode_DecodeCharmap PyUnicode_DecodeCharmap=python39.PyUnicode_DecodeCharmap
PyUnicode_DecodeCodePageStateful=python38.PyUnicode_DecodeCodePageStateful PyUnicode_DecodeCodePageStateful=python39.PyUnicode_DecodeCodePageStateful
PyUnicode_DecodeFSDefault=python38.PyUnicode_DecodeFSDefault PyUnicode_DecodeFSDefault=python39.PyUnicode_DecodeFSDefault
PyUnicode_DecodeFSDefaultAndSize=python38.PyUnicode_DecodeFSDefaultAndSize PyUnicode_DecodeFSDefaultAndSize=python39.PyUnicode_DecodeFSDefaultAndSize
PyUnicode_DecodeLatin1=python38.PyUnicode_DecodeLatin1 PyUnicode_DecodeLatin1=python39.PyUnicode_DecodeLatin1
PyUnicode_DecodeLocale=python38.PyUnicode_DecodeLocale PyUnicode_DecodeLocale=python39.PyUnicode_DecodeLocale
PyUnicode_DecodeLocaleAndSize=python38.PyUnicode_DecodeLocaleAndSize PyUnicode_DecodeLocaleAndSize=python39.PyUnicode_DecodeLocaleAndSize
PyUnicode_DecodeMBCS=python38.PyUnicode_DecodeMBCS PyUnicode_DecodeMBCS=python39.PyUnicode_DecodeMBCS
PyUnicode_DecodeMBCSStateful=python38.PyUnicode_DecodeMBCSStateful PyUnicode_DecodeMBCSStateful=python39.PyUnicode_DecodeMBCSStateful
PyUnicode_DecodeRawUnicodeEscape=python38.PyUnicode_DecodeRawUnicodeEscape PyUnicode_DecodeRawUnicodeEscape=python39.PyUnicode_DecodeRawUnicodeEscape
PyUnicode_DecodeUTF16=python38.PyUnicode_DecodeUTF16 PyUnicode_DecodeUTF16=python39.PyUnicode_DecodeUTF16
PyUnicode_DecodeUTF16Stateful=python38.PyUnicode_DecodeUTF16Stateful PyUnicode_DecodeUTF16Stateful=python39.PyUnicode_DecodeUTF16Stateful
PyUnicode_DecodeUTF32=python38.PyUnicode_DecodeUTF32 PyUnicode_DecodeUTF32=python39.PyUnicode_DecodeUTF32
PyUnicode_DecodeUTF32Stateful=python38.PyUnicode_DecodeUTF32Stateful PyUnicode_DecodeUTF32Stateful=python39.PyUnicode_DecodeUTF32Stateful
PyUnicode_DecodeUTF7=python38.PyUnicode_DecodeUTF7 PyUnicode_DecodeUTF7=python39.PyUnicode_DecodeUTF7
PyUnicode_DecodeUTF7Stateful=python38.PyUnicode_DecodeUTF7Stateful PyUnicode_DecodeUTF7Stateful=python39.PyUnicode_DecodeUTF7Stateful
PyUnicode_DecodeUTF8=python38.PyUnicode_DecodeUTF8 PyUnicode_DecodeUTF8=python39.PyUnicode_DecodeUTF8
PyUnicode_DecodeUTF8Stateful=python38.PyUnicode_DecodeUTF8Stateful PyUnicode_DecodeUTF8Stateful=python39.PyUnicode_DecodeUTF8Stateful
PyUnicode_DecodeUnicodeEscape=python38.PyUnicode_DecodeUnicodeEscape PyUnicode_DecodeUnicodeEscape=python39.PyUnicode_DecodeUnicodeEscape
PyUnicode_EncodeCodePage=python38.PyUnicode_EncodeCodePage PyUnicode_EncodeCodePage=python39.PyUnicode_EncodeCodePage
PyUnicode_EncodeFSDefault=python38.PyUnicode_EncodeFSDefault PyUnicode_EncodeFSDefault=python39.PyUnicode_EncodeFSDefault
PyUnicode_EncodeLocale=python38.PyUnicode_EncodeLocale PyUnicode_EncodeLocale=python39.PyUnicode_EncodeLocale
PyUnicode_FSConverter=python38.PyUnicode_FSConverter PyUnicode_FSConverter=python39.PyUnicode_FSConverter
PyUnicode_FSDecoder=python38.PyUnicode_FSDecoder PyUnicode_FSDecoder=python39.PyUnicode_FSDecoder
PyUnicode_Find=python38.PyUnicode_Find PyUnicode_Find=python39.PyUnicode_Find
PyUnicode_FindChar=python38.PyUnicode_FindChar PyUnicode_FindChar=python39.PyUnicode_FindChar
PyUnicode_Format=python38.PyUnicode_Format PyUnicode_Format=python39.PyUnicode_Format
PyUnicode_FromEncodedObject=python38.PyUnicode_FromEncodedObject PyUnicode_FromEncodedObject=python39.PyUnicode_FromEncodedObject
PyUnicode_FromFormat=python38.PyUnicode_FromFormat PyUnicode_FromFormat=python39.PyUnicode_FromFormat
PyUnicode_FromFormatV=python38.PyUnicode_FromFormatV PyUnicode_FromFormatV=python39.PyUnicode_FromFormatV
PyUnicode_FromObject=python38.PyUnicode_FromObject PyUnicode_FromObject=python39.PyUnicode_FromObject
PyUnicode_FromOrdinal=python38.PyUnicode_FromOrdinal PyUnicode_FromOrdinal=python39.PyUnicode_FromOrdinal
PyUnicode_FromString=python38.PyUnicode_FromString PyUnicode_FromString=python39.PyUnicode_FromString
PyUnicode_FromStringAndSize=python38.PyUnicode_FromStringAndSize PyUnicode_FromStringAndSize=python39.PyUnicode_FromStringAndSize
PyUnicode_FromWideChar=python38.PyUnicode_FromWideChar PyUnicode_FromWideChar=python39.PyUnicode_FromWideChar
PyUnicode_GetDefaultEncoding=python38.PyUnicode_GetDefaultEncoding PyUnicode_GetDefaultEncoding=python39.PyUnicode_GetDefaultEncoding
PyUnicode_GetLength=python38.PyUnicode_GetLength PyUnicode_GetLength=python39.PyUnicode_GetLength
PyUnicode_GetSize=python38.PyUnicode_GetSize PyUnicode_GetSize=python39.PyUnicode_GetSize
PyUnicode_InternFromString=python38.PyUnicode_InternFromString PyUnicode_InternFromString=python39.PyUnicode_InternFromString
PyUnicode_InternImmortal=python38.PyUnicode_InternImmortal PyUnicode_InternImmortal=python39.PyUnicode_InternImmortal
PyUnicode_InternInPlace=python38.PyUnicode_InternInPlace PyUnicode_InternInPlace=python39.PyUnicode_InternInPlace
PyUnicode_IsIdentifier=python38.PyUnicode_IsIdentifier PyUnicode_IsIdentifier=python39.PyUnicode_IsIdentifier
PyUnicode_Join=python38.PyUnicode_Join PyUnicode_Join=python39.PyUnicode_Join
PyUnicode_Partition=python38.PyUnicode_Partition PyUnicode_Partition=python39.PyUnicode_Partition
PyUnicode_RPartition=python38.PyUnicode_RPartition PyUnicode_RPartition=python39.PyUnicode_RPartition
PyUnicode_RSplit=python38.PyUnicode_RSplit PyUnicode_RSplit=python39.PyUnicode_RSplit
PyUnicode_ReadChar=python38.PyUnicode_ReadChar PyUnicode_ReadChar=python39.PyUnicode_ReadChar
PyUnicode_Replace=python38.PyUnicode_Replace PyUnicode_Replace=python39.PyUnicode_Replace
PyUnicode_Resize=python38.PyUnicode_Resize PyUnicode_Resize=python39.PyUnicode_Resize
PyUnicode_RichCompare=python38.PyUnicode_RichCompare PyUnicode_RichCompare=python39.PyUnicode_RichCompare
PyUnicode_Split=python38.PyUnicode_Split PyUnicode_Split=python39.PyUnicode_Split
PyUnicode_Splitlines=python38.PyUnicode_Splitlines PyUnicode_Splitlines=python39.PyUnicode_Splitlines
PyUnicode_Substring=python38.PyUnicode_Substring PyUnicode_Substring=python39.PyUnicode_Substring
PyUnicode_Tailmatch=python38.PyUnicode_Tailmatch PyUnicode_Tailmatch=python39.PyUnicode_Tailmatch
PyUnicode_Translate=python38.PyUnicode_Translate PyUnicode_Translate=python39.PyUnicode_Translate
PyUnicode_Type=python38.PyUnicode_Type DATA PyUnicode_Type=python39.PyUnicode_Type DATA
PyUnicode_WriteChar=python38.PyUnicode_WriteChar PyUnicode_WriteChar=python39.PyUnicode_WriteChar
PyWeakref_GetObject=python38.PyWeakref_GetObject PyWeakref_GetObject=python39.PyWeakref_GetObject
PyWeakref_NewProxy=python38.PyWeakref_NewProxy PyWeakref_NewProxy=python39.PyWeakref_NewProxy
PyWeakref_NewRef=python38.PyWeakref_NewRef PyWeakref_NewRef=python39.PyWeakref_NewRef
PyWrapperDescr_Type=python38.PyWrapperDescr_Type DATA PyWrapperDescr_Type=python39.PyWrapperDescr_Type DATA
PyWrapper_New=python38.PyWrapper_New PyWrapper_New=python39.PyWrapper_New
PyZip_Type=python38.PyZip_Type DATA PyZip_Type=python39.PyZip_Type DATA
Py_AddPendingCall=python38.Py_AddPendingCall Py_AddPendingCall=python39.Py_AddPendingCall
Py_AtExit=python38.Py_AtExit Py_AtExit=python39.Py_AtExit
Py_BuildValue=python38.Py_BuildValue Py_BuildValue=python39.Py_BuildValue
Py_CompileString=python38.Py_CompileString Py_CompileString=python39.Py_CompileString
Py_DecRef=python38.Py_DecRef Py_DecRef=python39.Py_DecRef
Py_DecodeLocale=python38.Py_DecodeLocale Py_DecodeLocale=python39.Py_DecodeLocale
Py_EncodeLocale=python38.Py_EncodeLocale Py_EncodeLocale=python39.Py_EncodeLocale
Py_EndInterpreter=python38.Py_EndInterpreter Py_EndInterpreter=python39.Py_EndInterpreter
Py_Exit=python38.Py_Exit Py_Exit=python39.Py_Exit
Py_FatalError=python38.Py_FatalError Py_FatalError=python39.Py_FatalError
Py_FileSystemDefaultEncodeErrors=python38.Py_FileSystemDefaultEncodeErrors DATA Py_FileSystemDefaultEncodeErrors=python39.Py_FileSystemDefaultEncodeErrors DATA
Py_FileSystemDefaultEncoding=python38.Py_FileSystemDefaultEncoding DATA Py_FileSystemDefaultEncoding=python39.Py_FileSystemDefaultEncoding DATA
Py_Finalize=python38.Py_Finalize Py_Finalize=python39.Py_Finalize
Py_FinalizeEx=python38.Py_FinalizeEx Py_FinalizeEx=python39.Py_FinalizeEx
Py_GetBuildInfo=python38.Py_GetBuildInfo Py_GetBuildInfo=python39.Py_GetBuildInfo
Py_GetCompiler=python38.Py_GetCompiler Py_GetCompiler=python39.Py_GetCompiler
Py_GetCopyright=python38.Py_GetCopyright Py_GetCopyright=python39.Py_GetCopyright
Py_GetExecPrefix=python38.Py_GetExecPrefix Py_GetExecPrefix=python39.Py_GetExecPrefix
Py_GetPath=python38.Py_GetPath Py_GetPath=python39.Py_GetPath
Py_GetPlatform=python38.Py_GetPlatform Py_GetPlatform=python39.Py_GetPlatform
Py_GetPrefix=python38.Py_GetPrefix Py_GetPrefix=python39.Py_GetPrefix
Py_GetProgramFullPath=python38.Py_GetProgramFullPath Py_GetProgramFullPath=python39.Py_GetProgramFullPath
Py_GetProgramName=python38.Py_GetProgramName Py_GetProgramName=python39.Py_GetProgramName
Py_GetPythonHome=python38.Py_GetPythonHome Py_GetPythonHome=python39.Py_GetPythonHome
Py_GetRecursionLimit=python38.Py_GetRecursionLimit Py_GetRecursionLimit=python39.Py_GetRecursionLimit
Py_GetVersion=python38.Py_GetVersion Py_GetVersion=python39.Py_GetVersion
Py_HasFileSystemDefaultEncoding=python38.Py_HasFileSystemDefaultEncoding DATA Py_HasFileSystemDefaultEncoding=python39.Py_HasFileSystemDefaultEncoding DATA
Py_IncRef=python38.Py_IncRef Py_IncRef=python39.Py_IncRef
Py_Initialize=python38.Py_Initialize Py_Initialize=python39.Py_Initialize
Py_InitializeEx=python38.Py_InitializeEx Py_InitializeEx=python39.Py_InitializeEx
Py_IsInitialized=python38.Py_IsInitialized Py_IsInitialized=python39.Py_IsInitialized
Py_Main=python38.Py_Main Py_Main=python39.Py_Main
Py_MakePendingCalls=python38.Py_MakePendingCalls Py_MakePendingCalls=python39.Py_MakePendingCalls
Py_NewInterpreter=python38.Py_NewInterpreter Py_NewInterpreter=python39.Py_NewInterpreter
Py_ReprEnter=python38.Py_ReprEnter Py_ReprEnter=python39.Py_ReprEnter
Py_ReprLeave=python38.Py_ReprLeave Py_ReprLeave=python39.Py_ReprLeave
Py_SetPath=python38.Py_SetPath Py_SetPath=python39.Py_SetPath
Py_SetProgramName=python38.Py_SetProgramName Py_SetProgramName=python39.Py_SetProgramName
Py_SetPythonHome=python38.Py_SetPythonHome Py_SetPythonHome=python39.Py_SetPythonHome
Py_SetRecursionLimit=python38.Py_SetRecursionLimit Py_SetRecursionLimit=python39.Py_SetRecursionLimit
Py_SymtableString=python38.Py_SymtableString Py_SymtableString=python39.Py_SymtableString
Py_UTF8Mode=python38.Py_UTF8Mode DATA Py_UTF8Mode=python39.Py_UTF8Mode DATA
Py_VaBuildValue=python38.Py_VaBuildValue Py_VaBuildValue=python39.Py_VaBuildValue
_PyArg_ParseTupleAndKeywords_SizeT=python38._PyArg_ParseTupleAndKeywords_SizeT _PyArg_ParseTupleAndKeywords_SizeT=python39._PyArg_ParseTupleAndKeywords_SizeT
_PyArg_ParseTuple_SizeT=python38._PyArg_ParseTuple_SizeT _PyArg_ParseTuple_SizeT=python39._PyArg_ParseTuple_SizeT
_PyArg_Parse_SizeT=python38._PyArg_Parse_SizeT _PyArg_Parse_SizeT=python39._PyArg_Parse_SizeT
_PyArg_VaParseTupleAndKeywords_SizeT=python38._PyArg_VaParseTupleAndKeywords_SizeT _PyArg_VaParseTupleAndKeywords_SizeT=python39._PyArg_VaParseTupleAndKeywords_SizeT
_PyArg_VaParse_SizeT=python38._PyArg_VaParse_SizeT _PyArg_VaParse_SizeT=python39._PyArg_VaParse_SizeT
_PyErr_BadInternalCall=python38._PyErr_BadInternalCall _PyErr_BadInternalCall=python39._PyErr_BadInternalCall
_PyObject_CallFunction_SizeT=python38._PyObject_CallFunction_SizeT _PyObject_CallFunction_SizeT=python39._PyObject_CallFunction_SizeT
_PyObject_CallMethod_SizeT=python38._PyObject_CallMethod_SizeT _PyObject_CallMethod_SizeT=python39._PyObject_CallMethod_SizeT
_PyObject_GC_Malloc=python38._PyObject_GC_Malloc _PyObject_GC_Malloc=python39._PyObject_GC_Malloc
_PyObject_GC_New=python38._PyObject_GC_New _PyObject_GC_New=python39._PyObject_GC_New
_PyObject_GC_NewVar=python38._PyObject_GC_NewVar _PyObject_GC_NewVar=python39._PyObject_GC_NewVar
_PyObject_GC_Resize=python38._PyObject_GC_Resize _PyObject_GC_Resize=python39._PyObject_GC_Resize
_PyObject_New=python38._PyObject_New _PyObject_New=python39._PyObject_New
_PyObject_NewVar=python38._PyObject_NewVar _PyObject_NewVar=python39._PyObject_NewVar
_PyState_AddModule=python38._PyState_AddModule _PyState_AddModule=python39._PyState_AddModule
_PyThreadState_Init=python38._PyThreadState_Init _PyThreadState_Init=python39._PyThreadState_Init
_PyThreadState_Prealloc=python38._PyThreadState_Prealloc _PyThreadState_Prealloc=python39._PyThreadState_Prealloc
_PyTrash_delete_later=python38._PyTrash_delete_later DATA _PyTrash_delete_later=python39._PyTrash_delete_later DATA
_PyTrash_delete_nesting=python38._PyTrash_delete_nesting DATA _PyTrash_delete_nesting=python39._PyTrash_delete_nesting DATA
_PyTrash_deposit_object=python38._PyTrash_deposit_object _PyTrash_deposit_object=python39._PyTrash_deposit_object
_PyTrash_destroy_chain=python38._PyTrash_destroy_chain _PyTrash_destroy_chain=python39._PyTrash_destroy_chain
_PyTrash_thread_deposit_object=python38._PyTrash_thread_deposit_object _PyTrash_thread_deposit_object=python39._PyTrash_thread_deposit_object
_PyTrash_thread_destroy_chain=python38._PyTrash_thread_destroy_chain _PyTrash_thread_destroy_chain=python39._PyTrash_thread_destroy_chain
_PyWeakref_CallableProxyType=python38._PyWeakref_CallableProxyType DATA _PyWeakref_CallableProxyType=python39._PyWeakref_CallableProxyType DATA
_PyWeakref_ProxyType=python38._PyWeakref_ProxyType DATA _PyWeakref_ProxyType=python39._PyWeakref_ProxyType DATA
_PyWeakref_RefType=python38._PyWeakref_RefType DATA _PyWeakref_RefType=python39._PyWeakref_RefType DATA
_Py_BuildValue_SizeT=python38._Py_BuildValue_SizeT _Py_BuildValue_SizeT=python39._Py_BuildValue_SizeT
_Py_CheckRecursionLimit=python38._Py_CheckRecursionLimit DATA _Py_CheckRecursionLimit=python39._Py_CheckRecursionLimit DATA
_Py_CheckRecursiveCall=python38._Py_CheckRecursiveCall _Py_CheckRecursiveCall=python39._Py_CheckRecursiveCall
_Py_Dealloc=python38._Py_Dealloc _Py_Dealloc=python39._Py_Dealloc
_Py_EllipsisObject=python38._Py_EllipsisObject DATA _Py_EllipsisObject=python39._Py_EllipsisObject DATA
_Py_FalseStruct=python38._Py_FalseStruct DATA _Py_FalseStruct=python39._Py_FalseStruct DATA
_Py_NoneStruct=python38._Py_NoneStruct DATA _Py_NoneStruct=python39._Py_NoneStruct DATA
_Py_NotImplementedStruct=python38._Py_NotImplementedStruct DATA _Py_NotImplementedStruct=python39._Py_NotImplementedStruct DATA
_Py_SwappedOp=python38._Py_SwappedOp DATA _Py_SwappedOp=python39._Py_SwappedOp DATA
_Py_TrueStruct=python38._Py_TrueStruct DATA _Py_TrueStruct=python39._Py_TrueStruct DATA
_Py_VaBuildValue_SizeT=python38._Py_VaBuildValue_SizeT _Py_VaBuildValue_SizeT=python39._Py_VaBuildValue_SizeT
...@@ -38,7 +38,7 @@ Debug ...@@ -38,7 +38,7 @@ Debug
Used to build Python with extra debugging capabilities, equivalent Used to build Python with extra debugging capabilities, equivalent
to using ./configure --with-pydebug on UNIX. All binaries built to using ./configure --with-pydebug on UNIX. All binaries built
using this configuration have "_d" added to their name: using this configuration have "_d" added to their name:
python38_d.dll, python_d.exe, parser_d.pyd, and so on. Both the python39_d.dll, python_d.exe, parser_d.pyd, and so on. Both the
build and rt (run test) batch files in this directory accept a -d build and rt (run test) batch files in this directory accept a -d
option for debug builds. If you are building Python to help with option for debug builds. If you are building Python to help with
development of CPython, you will most likely use this configuration. development of CPython, you will most likely use this configuration.
......
This is Python version 3.8.0 beta 1 This is Python version 3.9.0 alpha 0
=================================== ====================================
.. image:: https://travis-ci.org/python/cpython.svg?branch=master .. image:: https://travis-ci.org/python/cpython.svg?branch=master
:alt: CPython build status on Travis CI :alt: CPython build status on Travis CI
...@@ -140,7 +140,7 @@ What's New ...@@ -140,7 +140,7 @@ What's New
---------- ----------
We have a comprehensive overview of the changes in the `What's New in Python We have a comprehensive overview of the changes in the `What's New in Python
3.8 <https://docs.python.org/3.8/whatsnew/3.8.html>`_ document. For a more 3.9 <https://docs.python.org/3.9/whatsnew/3.9.html>`_ document. For a more
detailed change log, read `Misc/NEWS detailed change log, read `Misc/NEWS
<https://github.com/python/cpython/blob/master/Misc/NEWS.d>`_, but a full <https://github.com/python/cpython/blob/master/Misc/NEWS.d>`_, but a full
accounting of changes can only be gleaned from the `commit history accounting of changes can only be gleaned from the `commit history
...@@ -153,7 +153,7 @@ entitled "Installing multiple versions". ...@@ -153,7 +153,7 @@ entitled "Installing multiple versions".
Documentation Documentation
------------- -------------
`Documentation for Python 3.8 <https://docs.python.org/3.8/>`_ is online, `Documentation for Python 3.9 <https://docs.python.org/3.9/>`_ is online,
updated daily. updated daily.
It can also be downloaded in many formats for faster access. The documentation It can also be downloaded in many formats for faster access. The documentation
...@@ -212,8 +212,8 @@ intend to install multiple versions using the same prefix you must decide which ...@@ -212,8 +212,8 @@ intend to install multiple versions using the same prefix you must decide which
version (if any) is your "primary" version. Install that version using ``make version (if any) is your "primary" version. Install that version using ``make
install``. Install all other versions using ``make altinstall``. install``. Install all other versions using ``make altinstall``.
For example, if you want to install Python 2.7, 3.6, and 3.8 with 3.8 being the For example, if you want to install Python 2.7, 3.6, and 3.9 with 3.9 being the
primary version, you would execute ``make install`` in your 3.8 build directory primary version, you would execute ``make install`` in your 3.9 build directory
and ``make altinstall`` in the others. and ``make altinstall`` in the others.
...@@ -243,7 +243,7 @@ All current PEPs, as well as guidelines for submitting a new PEP, are listed at ...@@ -243,7 +243,7 @@ All current PEPs, as well as guidelines for submitting a new PEP, are listed at
Release Schedule Release Schedule
---------------- ----------------
See :pep:`569` for Python 3.8 release details. See :pep:`596` for Python 3.9 release details.
Copyright and License Information Copyright and License Information
......
#! /bin/sh #! /bin/sh
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for python 3.8. # Generated by GNU Autoconf 2.69 for python 3.9.
# #
# Report bugs to <https://bugs.python.org/>. # Report bugs to <https://bugs.python.org/>.
# #
...@@ -580,8 +580,8 @@ MAKEFLAGS= ...@@ -580,8 +580,8 @@ MAKEFLAGS=
# Identity of this package. # Identity of this package.
PACKAGE_NAME='python' PACKAGE_NAME='python'
PACKAGE_TARNAME='python' PACKAGE_TARNAME='python'
PACKAGE_VERSION='3.8' PACKAGE_VERSION='3.9'
PACKAGE_STRING='python 3.8' PACKAGE_STRING='python 3.9'
PACKAGE_BUGREPORT='https://bugs.python.org/' PACKAGE_BUGREPORT='https://bugs.python.org/'
PACKAGE_URL='' PACKAGE_URL=''
...@@ -1399,7 +1399,7 @@ if test "$ac_init_help" = "long"; then ...@@ -1399,7 +1399,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing. # Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh. # This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF cat <<_ACEOF
\`configure' configures python 3.8 to adapt to many kinds of systems. \`configure' configures python 3.9 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]... Usage: $0 [OPTION]... [VAR=VALUE]...
...@@ -1465,7 +1465,7 @@ fi ...@@ -1465,7 +1465,7 @@ fi
if test -n "$ac_init_help"; then if test -n "$ac_init_help"; then
case $ac_init_help in case $ac_init_help in
short | recursive ) echo "Configuration of python 3.8:";; short | recursive ) echo "Configuration of python 3.9:";;
esac esac
cat <<\_ACEOF cat <<\_ACEOF
...@@ -1631,7 +1631,7 @@ fi ...@@ -1631,7 +1631,7 @@ fi
test -n "$ac_init_help" && exit $ac_status test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then if $ac_init_version; then
cat <<\_ACEOF cat <<\_ACEOF
python configure 3.8 python configure 3.9
generated by GNU Autoconf 2.69 generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc. Copyright (C) 2012 Free Software Foundation, Inc.
...@@ -2340,7 +2340,7 @@ cat >config.log <<_ACEOF ...@@ -2340,7 +2340,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake. running configure, to aid debugging if configure makes a mistake.
It was created by python $as_me 3.8, which was It was created by python $as_me 3.9, which was
generated by GNU Autoconf 2.69. Invocation command line was generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@ $ $0 $@
...@@ -2960,7 +2960,7 @@ rm confdefs.h ...@@ -2960,7 +2960,7 @@ rm confdefs.h
mv confdefs.h.new confdefs.h mv confdefs.h.new confdefs.h
VERSION=3.8 VERSION=3.9
# Version number of Python's own shared library file. # Version number of Python's own shared library file.
...@@ -17862,7 +17862,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ...@@ -17862,7 +17862,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their # report actual input values of CONFIG_FILES etc. instead of their
# values after options handling. # values after options handling.
ac_log=" ac_log="
This file was extended by python $as_me 3.8, which was This file was extended by python $as_me 3.9, which was
generated by GNU Autoconf 2.69. Invocation command line was generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES CONFIG_FILES = $CONFIG_FILES
...@@ -17924,7 +17924,7 @@ _ACEOF ...@@ -17924,7 +17924,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\ ac_cs_version="\\
python config.status 3.8 python config.status 3.9
configured by $0, generated by GNU Autoconf 2.69, configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\" with options \\"\$ac_cs_config\\"
......
...@@ -3,7 +3,7 @@ dnl * Please run autoreconf to test your changes! * ...@@ -3,7 +3,7 @@ dnl * Please run autoreconf to test your changes! *
dnl *********************************************** dnl ***********************************************
# Set VERSION so we only need to edit in one place (i.e., here) # Set VERSION so we only need to edit in one place (i.e., here)
m4_define(PYTHON_VERSION, 3.8) m4_define(PYTHON_VERSION, 3.9)
AC_PREREQ([2.69]) AC_PREREQ([2.69])
......
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