Add documentation and initial framework for Python 3.4 support

This commit is contained in:
Michael Hansen
2013-11-27 14:10:05 -08:00
parent ad03ec3034
commit 6ecbcfb564
8 changed files with 305 additions and 188 deletions

View File

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