- 1
- 2
- 3
- 4
class GNUTranslations(NullTranslations):
# Magic number of .mo files
LE_MAGIC = 0x950412de
BE_MAGIC = 0xde120495
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
−102
class GNUTranslations(NullTranslations):
# Magic number of .mo files
LE_MAGIC = 0x950412de
BE_MAGIC = 0xde120495
someone 07.10.2014 18:15 # +1
хуита 08.10.2014 09:34 # −1
bormand 08.10.2014 10:43 # −1
The first two words serve the identification of the file. The magic number will always signal GNU MO files. The number is stored in the byte order of the generating machine, so the magic number really is two numbers: 0x950412de and 0xde120495.
anonimb84a2f6fd141 08.10.2014 14:39 # −3
guest 31.12.2014 04:15 # 0
BE_MAGIC = 0xde120495
LE_MAGIC = unpack('<L', pack('>L', LE_MAGIC))