summaryrefslogtreecommitdiffstats
path: root/Lib/encodings/charmap.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-08-08 20:19:19 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-08-08 20:19:19 (GMT)
commit469cdad8228df7bc294dc946b8cd4c0b7f810735 (patch)
treed2ce468dd141967a43a9930735226d4183400c2c /Lib/encodings/charmap.py
parentd7e8a0dd372a928749674f5f5fd11a96115e0801 (diff)
downloadcpython-469cdad8228df7bc294dc946b8cd4c0b7f810735.zip
cpython-469cdad8228df7bc294dc946b8cd4c0b7f810735.tar.gz
cpython-469cdad8228df7bc294dc946b8cd4c0b7f810735.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/encodings/charmap.py')
-rw-r--r--Lib/encodings/charmap.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/encodings/charmap.py b/Lib/encodings/charmap.py
index 5f5b9cc..de33b12 100644
--- a/Lib/encodings/charmap.py
+++ b/Lib/encodings/charmap.py
@@ -2,7 +2,7 @@
Use this codec directly rather than through the automatic
conversion mechanisms supplied by unicode() and .encode().
-
+
Written by Marc-Andre Lemburg (mal@lemburg.com).
@@ -31,7 +31,7 @@ class StreamWriter(Codec,codecs.StreamWriter):
def encode(self,input,errors='strict'):
return Codec.encode(input,errors,self.mapping)
-
+
class StreamReader(Codec,codecs.StreamReader):
def __init__(self,stream,errors='strict',mapping=None):
@@ -48,4 +48,3 @@ class StreamReader(Codec,codecs.StreamReader):
def getregentry():
return (Codec.encode,Codec.decode,StreamReader,StreamWriter)
-