diff options
author | Guido van Rossum <guido@python.org> | 2007-10-19 22:06:24 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-10-19 22:06:24 +0000 |
commit | 75a902db7859a4751743e98530c5d96a672641be (patch) | |
tree | a730c966dcfc993a800078004aae3a6094a75a6a /Lib/test/test_bytes.py | |
parent | 21431e85d505b9698c085c25cbf1b2997a352b85 (diff) | |
download | cpython-git-75a902db7859a4751743e98530c5d96a672641be.tar.gz |
Patch 1280, by Alexandre Vassalotti.
Make PyString's indexing and iteration return integers.
(I changed a few of Alexandre's decisions -- GvR.)
Diffstat (limited to 'Lib/test/test_bytes.py')
-rw-r--r-- | Lib/test/test_bytes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py index 391a660ae0..c7c6bd31d5 100644 --- a/Lib/test/test_bytes.py +++ b/Lib/test/test_bytes.py @@ -348,7 +348,7 @@ class BytesTest(unittest.TestCase): sample = str8("Hello world\n\x80\x81\xfe\xff") buf = memoryview(sample) b = bytes(buf) - self.assertEqual(b, bytes(map(ord, sample))) + self.assertEqual(b, bytes(sample)) def test_to_str(self): sample = "Hello world\n\x80\x81\xfe\xff" |