diff options
author | Guido van Rossum <guido@python.org> | 2007-08-27 17:23:59 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-08-27 17:23:59 (GMT) |
commit | 39478e852827a4ca6955151bf004c7a15099a4b1 (patch) | |
tree | 05e52988c7904b7c7dad9427411bece5f9c45fcb /Lib/test/test_io.py | |
parent | 85825dc1ff5cc21c5f3f453b30b825a7200609cb (diff) | |
download | cpython-39478e852827a4ca6955151bf004c7a15099a4b1.zip cpython-39478e852827a4ca6955151bf004c7a15099a4b1.tar.gz cpython-39478e852827a4ca6955151bf004c7a15099a4b1.tar.bz2 |
Changes in anticipation of stricter str vs. bytes enforcement.
Diffstat (limited to 'Lib/test/test_io.py')
-rw-r--r-- | Lib/test/test_io.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index f8a4938..656711f 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -305,7 +305,9 @@ class MemorySeekTestMixin: class BytesIOTest(MemorySeekTestMixin, unittest.TestCase): - buftype = bytes + @staticmethod + def buftype(s): + return s.encode("utf-8") ioclass = io.BytesIO EOF = b"" |