commit | 39478e852827a4ca6955151bf004c7a15099a4b1 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Aug 27 17:23:59 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Aug 27 17:23:59 2007 +0000 |
tree | 05e52988c7904b7c7dad9427411bece5f9c45fcb | |
parent | 85825dc1ff5cc21c5f3f453b30b825a7200609cb [diff] [blame] |
Changes in anticipation of stricter str vs. bytes enforcement.
diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py index 18fde4a..2d61c46 100644 --- a/Lib/test/test_httplib.py +++ b/Lib/test/test_httplib.py
@@ -10,7 +10,7 @@ class FakeSocket: def __init__(self, text, fileclass=io.BytesIO): if isinstance(text, str): - text = bytes(text) + text = text.encode("ascii") self.text = text self.fileclass = fileclass self.data = b''