Magic Number 34

Adjust Python 3.4 Magic Number
This commit is contained in:
mancoast
2014-12-13 10:42:30 -05:00
parent 6275a874f6
commit b7dc792499
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ enum PycMagic {
MAGIC_3_1 = 0x0A0D0C4E,
MAGIC_3_2 = 0x0A0D0C6C,
MAGIC_3_3 = 0x0A0D0C9E,
MAGIC_3_4 = 0x0A0D0CE4,
MAGIC_3_4 = 0x0A0D0CEE,
};
#define PYC_VERSION(maj, min) MAGIC_##maj##_##min