summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_io.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-07-28 01:39:45 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-07-28 01:39:45 (GMT)
commit73363e817a45992d4299fe6634de2bee5e4a2768 (patch)
tree12bcb6ed2034759c86979ed93fdf197310fb169c /Lib/test/test_io.py
parent3ff4463b356b79109fd7f71ef4507fb079871659 (diff)
downloadcpython-73363e817a45992d4299fe6634de2bee5e4a2768.zip
cpython-73363e817a45992d4299fe6634de2bee5e4a2768.tar.gz
cpython-73363e817a45992d4299fe6634de2bee5e4a2768.tar.bz2
Issue #6213: Implement getstate() and setstate() methods of utf-8-sig and
utf-16 incremental encoders.
Diffstat (limited to 'Lib/test/test_io.py')
-rw-r--r--Lib/test/test_io.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py
index 2874d79..b6bf686 100644
--- a/Lib/test/test_io.py
+++ b/Lib/test/test_io.py
@@ -2087,7 +2087,6 @@ class TextIOWrapperTest(unittest.TestCase):
self.assertEqual(buffer.seekable(), txt.seekable())
- @unittest.skip("Issue #6213 with incremental encoders")
def test_append_bom(self):
# The BOM is not written again when appending to a non-empty file
filename = support.TESTFN
@@ -2103,7 +2102,6 @@ class TextIOWrapperTest(unittest.TestCase):
with self.open(filename, 'rb') as f:
self.assertEquals(f.read(), 'aaaxxx'.encode(charset))
- @unittest.skip("Issue #6213 with incremental encoders")
def test_seek_bom(self):
# Same test, but when seeking manually
filename = support.TESTFN