Encoded file

Michel Claveau/Hamster No.Spam.mc at No.Spam.mclaveau.No.Spam.com
Wed Mar 17 16:45:03 EST 2004


Hi !



See in the module   "codecs.py" :


# UTF-8
BOM_UTF8 = '\xef\xbb\xbf'

# UTF-16, little endian
BOM_LE = BOM_UTF16_LE = '\xff\xfe'

# UTF-16, big endian
BOM_BE = BOM_UTF16_BE = '\xfe\xff'

# UTF-32, little endian
BOM_UTF32_LE = '\xff\xfe\x00\x00'

# UTF-32, big endian
BOM_UTF32_BE = '\x00\x00\xfe\xff'



--
@-salutations
--
Michel Claveau
site : http://mclaveau.com





More information about the Python-list mailing list