mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
added python 3.10 support
This commit is contained in:
parent
fd6985370d
commit
e4e3a9f4ed
7 changed files with 132 additions and 3 deletions
|
|
@ -157,7 +157,12 @@ void PycModule::setVersion(unsigned int magic)
|
|||
m_min = 9;
|
||||
m_unicode = true;
|
||||
break;
|
||||
|
||||
|
||||
case MAGIC_3_10:
|
||||
m_maj = 3;
|
||||
m_min = 10;
|
||||
m_unicode = true;
|
||||
break;
|
||||
/* Bad Magic detected */
|
||||
default:
|
||||
m_maj = -1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue