Add initial 3.7 alpha support, and fix 3.6 opcode map

This commit is contained in:
Michael Hansen
2017-12-20 13:15:03 -08:00
parent b9dd99d518
commit 98ad031109
9 changed files with 336 additions and 196 deletions

View File

@@ -29,6 +29,7 @@ enum PycMagic {
MAGIC_3_5 = 0x0A0D0D16,
MAGIC_3_5_3 = 0x0A0D0D17,
MAGIC_3_6 = 0x0A0D0D33,
MAGIC_3_7 = 0x0A0D0D3F,
};
#define PYC_VERSION(maj, min) MAGIC_##maj##_##min