diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-21 20:22:43 (GMT) |
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-21 20:22:43 (GMT) |
| commit | f678e822406a5063b294036f5521c2294a6e20bd (patch) | |
| tree | cfdf8352c04da87dfa231609f4920f9faff2e8a2 /Lib/test/test_StringIO.py | |
| parent | a5016cd0f7cc9a549e989299c659d9ddc7b23da5 (diff) | |
| download | cpython-f678e822406a5063b294036f5521c2294a6e20bd.zip cpython-f678e822406a5063b294036f5521c2294a6e20bd.tar.gz cpython-f678e822406a5063b294036f5521c2294a6e20bd.tar.bz2 | |
Oops, forgot issue number
Diffstat (limited to 'Lib/test/test_StringIO.py')
| -rw-r--r-- | Lib/test/test_StringIO.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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') |
