Fix of issue 5282, white spaces should be kept.

svn: r18252
This commit is contained in:
Peter Landgren 2011-10-06 16:48:36 +00:00
parent b028d4c0e1
commit 95c5872126

View File

@ -1178,7 +1178,7 @@ class BaseReader(object):
line = unicode(self.ifile.readline(),
encoding=self.enc,
errors='replace')
return line.strip().translate(strip_dict)
return line.translate(strip_dict)
class UTF8Reader(BaseReader):
@ -1196,7 +1196,7 @@ class UTF8Reader(BaseReader):
line = unicode(self.ifile.readline(),
encoding=self.enc,
errors='replace')
return line.strip().translate(strip_dict)
return line.translate(strip_dict)
class UTF16Reader(BaseReader):