commit | f678e822406a5063b294036f5521c2294a6e20bd | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Fri Oct 21 22:22:43 2011 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Fri Oct 21 22:22:43 2011 +0200 |
tree | cfdf8352c04da87dfa231609f4920f9faff2e8a2 | |
parent | a5016cd0f7cc9a549e989299c659d9ddc7b23da5 [diff] |
Oops, forgot issue number
diff --git a/Lib/test/test_StringIO.py b/Lib/test/test_StringIO.py index ed8690c..1459e61 100644 --- a/Lib/test/test_StringIO.py +++ b/Lib/test/test_StringIO.py
@@ -129,7 +129,7 @@ MODULE = cStringIO def test_array_support(self): - # Issue + # Issue #1730114: cStringIO should accept array objects a = array.array('B', [0,1,2]) f = self.MODULE.StringIO(a) self.assertEqual(f.getvalue(), '\x00\x01\x02')