1. Python / Говнокод #16814

    −102

    1. 1
    2. 2
    3. 3
    4. 4
    class GNUTranslations(NullTranslations):
        # Magic number of .mo files
        LE_MAGIC = 0x950412de
        BE_MAGIC = 0xde120495

    Запостил: хуита, 07 Октября 2014

    Комментарии (5) RSS

    • Где здесь ГК?
      Ответить
      • # Magic number of .mo files
        Ответить
        • И в чем говно?

          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.
          Ответить
    • Ну разве что

      BE_MAGIC = 0xde120495
      LE_MAGIC = unpack('<L', pack('>L', LE_MAGIC))
      Ответить

    Добавить комментарий