summaryrefslogtreecommitdiff
path: root/Lib/test/test_StringIO.py
diff options
context:
space:
mode:
authorJim Fulton <jim@zope.com>2000-10-06 19:21:32 +0000
committerJim Fulton <jim@zope.com>2000-10-06 19:21:32 +0000
commiteab0e1aff8ea787f230e38ebdd12c84e646e58cb (patch)
treedd7a6b21700b50a7a08ef71d412051d19fd7de09 /Lib/test/test_StringIO.py
parente34aa3512042ea7423fd4b73896656693de23bd8 (diff)
downloadcpython-eab0e1aff8ea787f230e38ebdd12c84e646e58cb.tar.gz
Uncommented tests that failed for cStringIO,
Added missing clode to make the clode test test a close. ;)
Diffstat (limited to 'Lib/test/test_StringIO.py')
-rw-r--r--Lib/test/test_StringIO.py28
1 files changed, 11 insertions, 17 deletions
diff --git a/Lib/test/test_StringIO.py b/Lib/test/test_StringIO.py
index 2d9f2c1ded..f2d6dbf7be 100644
--- a/Lib/test/test_StringIO.py
+++ b/Lib/test/test_StringIO.py
@@ -14,23 +14,17 @@ def do_test(module):
f.seek(10)
f.truncate()
print `f.getvalue()`
- # This test fails for cStringIO; reported as SourceForge bug #115531;
- # please uncomment this test when that bug is fixed.
- # http://sourceforge.net/bugs/?func=detailbug&bug_id=115531&group_id=5470
-## f.seek(0)
-## f.truncate(5)
-## print `f.getvalue()`
-
- # This test fails for cStringIO; reported as SourceForge bug #115530;
- # please uncomment this test when that bug is fixed.
- # http://sourceforge.net/bugs/?func=detailbug&bug_id=115530&group_id=5470
-## try:
-## f.write("frobnitz")
-## except ValueError, e:
-## print "Caught expected ValueError writing to closed StringIO:"
-## print e
-## else:
-## print "Failed to catch ValueError writing to closed StringIO."
+ f.seek(0)
+ f.truncate(5)
+ print `f.getvalue()`
+ f.close()
+ try:
+ f.write("frobnitz")
+ except ValueError, e:
+ print "Caught expected ValueError writing to closed StringIO:"
+ print e
+ else:
+ print "Failed to catch ValueError writing to closed StringIO."
# Don't bother testing cStringIO without
import StringIO, cStringIO