diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-12-02 12:37:09 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-12-02 12:37:09 -0500 |
commit | 661c346ab34830c607a2bac92d21e25f47c3288d (patch) | |
tree | ff3405c4e821efae622f07c83f7319eb95593627 /Lib/test | |
parent | c77dd206989c9f8641f5e128f29599383526e645 (diff) | |
parent | 2f560fa3009b8b6d4e64eec4c1e7d201b5ed7035 (diff) | |
download | cpython-git-661c346ab34830c607a2bac92d21e25f47c3288d.tar.gz |
merge 3.3
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/multibytecodec_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/multibytecodec_support.py b/Lib/test/multibytecodec_support.py index a2c57eaf10..5f08f10606 100644 --- a/Lib/test/multibytecodec_support.py +++ b/Lib/test/multibytecodec_support.py @@ -113,7 +113,7 @@ class TestBase: return (ret, exc.end) codecs.register_error("test.cjktest", myreplace) - for ret in ([1, 2, 3], [], None, object(), b'string', b''): + for ret in ([1, 2, 3], [], None, object()): self.assertRaises(TypeError, self.encode, self.unmappedunicode, 'test.cjktest') |