mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
Add Python 3.2 support
This commit is contained in:
parent
c0d7bc9515
commit
be6ea32619
9 changed files with 270 additions and 152 deletions
|
|
@ -109,6 +109,13 @@ void PycModule::setVersion(unsigned int magic)
|
|||
m_unicode = true;
|
||||
break;
|
||||
|
||||
/* 3.2 stops using the unicode increment */
|
||||
case MAGIC_3_2:
|
||||
m_maj = 3;
|
||||
m_min = 2;
|
||||
m_unicode = true;
|
||||
break;
|
||||
|
||||
/* Bad Magic detected */
|
||||
default:
|
||||
m_maj = -1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue