Update magic for 3.7.0 release

This commit is contained in:
Michael Hansen
2018-07-02 13:13:50 -07:00
parent 1c01ca7ee6
commit 104c3c0b42
2 changed files with 2 additions and 2 deletions

View File

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