Update magic number for Python 3.3 beta

This commit is contained in:
Michael Hansen
2012-06-27 18:03:55 -07:00
parent cfbc806955
commit 209970f668
3 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ enum PycMagic {
MAGIC_3_0 = 0x0A0D0C3A,
MAGIC_3_1 = 0x0A0D0C4E,
MAGIC_3_2 = 0x0A0D0C6C,
MAGIC_3_3 = 0x0A0D0C94,
MAGIC_3_3 = 0x0A0D0C9E,
};
#define PYC_VERSION(maj, min) MAGIC_##maj##_##min