""" Python 'utf-16-le' CodecWritten by Marc-Andre Lemburg (mal@lemburg.com).(c) Copyright CNRI, All Rights Reserved. NO WARRANTY."""importcodecs### Codec APIsclassCodec(codecs.Codec):# Note: Binding these as C functions will result in the class not# converting them to methods. This is intended.encode=codecs.utf_16_le_encodedecode=codecs.utf_16_le_decodeclassStreamWriter(Codec,codecs.StreamWriter):passclassStreamReader(Codec,codecs.StreamReader):