diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-05-22 02:11:07 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-05-22 02:11:07 (GMT) |
commit | 262be5e70bd75520d3d95a19ceda3eb97bd7045c (patch) | |
tree | c0e96ea7b54c66fa06c0a66cb747beec67677511 | |
parent | d6703b5e38baac6b85c1c2cf9311e11e4916984b (diff) | |
download | cpython-262be5e70bd75520d3d95a19ceda3eb97bd7045c.zip cpython-262be5e70bd75520d3d95a19ceda3eb97bd7045c.tar.gz cpython-262be5e70bd75520d3d95a19ceda3eb97bd7045c.tar.bz2 |
Issue #6268: Fix seek() method of codecs.open(), don't read the BOM twice
after seek(0)
-rw-r--r-- | Lib/codecs.py | 4 | ||||
-rw-r--r-- | Lib/test/test_codecs.py | 21 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
3 files changed, 28 insertions, 0 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py index a67240a..e903f2e 100644 --- a/Lib/codecs.py +++ b/Lib/codecs.py @@ -694,6 +694,10 @@ class StreamReaderWriter: self.reader.reset() self.writer.reset() + def seek(self, offset, whence=0): + self.reader.seek(offset, whence) + self.writer.seek(offset, whence) + def __getattr__(self, name, getattr=getattr): diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py index f8563f6..306a3b2 100644 --- a/Lib/test/test_codecs.py +++ b/Lib/test/test_codecs.py @@ -1496,6 +1496,26 @@ class WithStmtTest(unittest.TestCase): self.assertEquals(srw.read(), u"\xfc") +class BomTest(unittest.TestCase): + def test_seek0(self): + data = "1234567890" + tests = ("utf-16", + "utf-16-le", + "utf-16-be", + "utf-32", + "utf-32-le", + "utf-32-be") + for encoding in tests: + with codecs.open('foo', 'wt+', encoding=encoding) as f: + # Check if the BOM is written only once + f.write(data) + f.write(data) + f.seek(0) + self.assertEquals(f.read(), data * 2) + f.seek(0) + self.assertEquals(f.read(), data * 2) + + def test_main(): test_support.run_unittest( UTF32Test, @@ -1524,6 +1544,7 @@ def test_main(): BasicStrTest, CharmapTest, WithStmtTest, + BomTest, ) @@ -29,6 +29,9 @@ C-API Library ------- +- Issue #6268: Fix seek() method of codecs.open(), don't read the BOM twice + after seek(0) + - Issue #5640: Fix Shift-JIS incremental encoder for error handlers different than strict |