Add bytecode support for Python 3.9 rc2

This commit is contained in:
Michael Hansen
2020-09-29 09:28:15 -07:00
parent 045b624f55
commit 8460d119fd
8 changed files with 326 additions and 170 deletions

View File

@@ -152,6 +152,12 @@ void PycModule::setVersion(unsigned int magic)
m_unicode = true;
break;
case MAGIC_3_9:
m_maj = 3;
m_min = 9;
m_unicode = true;
break;
/* Bad Magic detected */
default:
m_maj = -1;