From: Antoine Pitrou Date: Fri, 21 Oct 2011 20:22:43 +0000 (+0200) Subject: Oops, forgot issue number X-Git-Tag: v2.7.3rc1~387 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f678e822406a5063b294036f5521c2294a6e20bd;p=thirdparty%2FPython%2Fcpython.git Oops, forgot issue number --- diff --git a/Lib/test/test_StringIO.py b/Lib/test/test_StringIO.py index ed8690c4e772..1459e617a614 100644 --- a/Lib/test/test_StringIO.py +++ b/Lib/test/test_StringIO.py @@ -129,7 +129,7 @@ class TestcStringIO(TestGenericStringIO): 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')