Package encodings :: Module utf_16_be :: Class StreamWriter
[hide private]
[frames] | no frames]

_ClassType StreamWriter

   codecs.Codec --+    
                  |    
codecs.StreamWriter --+
                      |
                     StreamWriter

Instance Methods [hide private]
 
encode(...)
Encodes the object input and returns a tuple (output object, length consumed).

Inherited from codecs.StreamWriter: __enter__, __exit__, __getattr__, __init__, reset, write, writelines

Inherited from codecs.Codec: decode

Method Details [hide private]

encode(...)

 

Encodes the object input and returns a tuple (output object, length consumed).

errors defines the error handling to apply. It defaults to 'strict' handling.

The method may not store state in the Codec instance. Use StreamCodec for codecs which have to keep state in order to make encoding/decoding efficient.

The encoder must be able to handle zero length input and return an empty object of the output object type in this situation.

Overrides: codecs.Codec.encode
(inherited documentation)