Update Python 3.6 magic from RC build

This commit is contained in:
Michael Hansen
2016-12-14 14:39:22 -08:00
parent 6a9d6a6132
commit a690d22822
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ Python MAGIC Python MAGIC Python MAGIC
1.3 0x0A0D2E89 2.3 0x0A0DF23B 3.3 0x0A0D0C9E
1.4 0x0A0D1704 2.4 0x0A0DF26D 3.4 0x0A0D0CEE
1.5 0x0A0D4E99 2.5 0x0A0DF2B3 3.5 0x0A0D0D16
1.6 0x0A0DC4FC 2.6 0x0A0DF2D1 3.6 0x0A0D0D32
1.6 0x0A0DC4FC 2.6 0x0A0DF2D1 3.6 0x0A0D0D33
2.7 0x0A0DF303

View File

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