Add MAGIC_NUMBER for Python 3.5.3

See https://bugs.python.org/issue27286 for details.
This commit is contained in:
Dhiru Kholia
2017-04-09 18:06:52 +05:30
parent a690d22822
commit da6571587b
3 changed files with 6 additions and 2 deletions

View File

@@ -27,6 +27,7 @@ enum PycMagic {
MAGIC_3_3 = 0x0A0D0C9E,
MAGIC_3_4 = 0x0A0D0CEE,
MAGIC_3_5 = 0x0A0D0D16,
MAGIC_3_5_3 = 0x0A0D0D17,
MAGIC_3_6 = 0x0A0D0D33,
};