diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-08-08 20:19:19 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-08-08 20:19:19 (GMT) |
commit | 469cdad8228df7bc294dc946b8cd4c0b7f810735 (patch) | |
tree | d2ce468dd141967a43a9930735226d4183400c2c /Lib/encodings/utf_16.py | |
parent | d7e8a0dd372a928749674f5f5fd11a96115e0801 (diff) | |
download | cpython-469cdad8228df7bc294dc946b8cd4c0b7f810735.zip cpython-469cdad8228df7bc294dc946b8cd4c0b7f810735.tar.gz cpython-469cdad8228df7bc294dc946b8cd4c0b7f810735.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/encodings/utf_16.py')
-rw-r--r-- | Lib/encodings/utf_16.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/encodings/utf_16.py b/Lib/encodings/utf_16.py index 2c2638f..8c79c79 100644 --- a/Lib/encodings/utf_16.py +++ b/Lib/encodings/utf_16.py @@ -31,7 +31,7 @@ class StreamWriter(Codec,codecs.StreamWriter): else: self.encode = codecs.utf_16_be_encode return result - + class StreamReader(Codec,codecs.StreamReader): def __init__(self, stream, errors='strict'): self.bom_read = 0 @@ -61,4 +61,3 @@ class StreamReader(Codec,codecs.StreamReader): def getregentry(): return (Codec.encode,Codec.decode,StreamReader,StreamWriter) - |