Merge pull request #54 from mancoast/master

Magic Number 34
This commit is contained in:
Michael Hansen
2014-12-13 10:05:05 -08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ Python MAGIC Python MAGIC Python MAGIC
1.1 0x00999903 2.1 0x0A0DEB2A 3.1 0x0A0D0C4E
1.2 0x00999903 2.2 0x0A0DED2D 3.2 0x0A0D0C6C
1.3 0x0A0D2E89 2.3 0x0A0DF23B 3.3 0x0A0D0C9E
1.4 0x0A0D1704 2.4 0x0A0DF26D 3.4 0x0A0D0CE4
1.4 0x0A0D1704 2.4 0x0A0DF26D 3.4 0x0A0D0CEE
1.5 0x0A0D4E99 2.5 0x0A0DF2B3
1.6 0x0A0DC4FC 2.6 0x0A0DF2D1
2.7 0x0A0DF303

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