summaryrefslogtreecommitdiff
path: root/Lib/test/test_StringIO.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-10-21 22:22:43 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2011-10-21 22:22:43 +0200
commitf678e822406a5063b294036f5521c2294a6e20bd (patch)
treecfdf8352c04da87dfa231609f4920f9faff2e8a2 /Lib/test/test_StringIO.py
parenta5016cd0f7cc9a549e989299c659d9ddc7b23da5 (diff)
downloadcpython-git-f678e822406a5063b294036f5521c2294a6e20bd.tar.gz
Oops, forgot issue number
Diffstat (limited to 'Lib/test/test_StringIO.py')
-rw-r--r--Lib/test/test_StringIO.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_StringIO.py b/Lib/test/test_StringIO.py
index ed8690c4e7..1459e617a6 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')