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

@@ -25,6 +25,7 @@ enum PycMagic {
MAGIC_3_1 = 0x0A0D0C4E,
MAGIC_3_2 = 0x0A0D0C6C,
MAGIC_3_3 = 0x0A0D0C9E,
MAGIC_3_4 = 0x0A0D0CE4,
};
#define PYC_VERSION(maj, min) MAGIC_##maj##_##min