Update bytecode for Python 3.6 beta3, and use a common file for opcode names

This commit is contained in:
Michael Hansen
2016-11-08 16:00:44 -08:00
parent ed2c21cd66
commit 6a9d6a6132
5 changed files with 193 additions and 90 deletions

View File

@@ -27,7 +27,7 @@ enum PycMagic {
MAGIC_3_3 = 0x0A0D0C9E,
MAGIC_3_4 = 0x0A0D0CEE,
MAGIC_3_5 = 0x0A0D0D16,
MAGIC_3_6 = 0x0A0D0D2C,
MAGIC_3_6 = 0x0A0D0D32,
};
#define PYC_VERSION(maj, min) MAGIC_##maj##_##min