]> granicus.if.org Git - python/commitdiff
Uncommented tests that failed for cStringIO,
authorJim Fulton <jim@zope.com>
Fri, 6 Oct 2000 19:21:32 +0000 (19:21 +0000)
committerJim Fulton <jim@zope.com>
Fri, 6 Oct 2000 19:21:32 +0000 (19:21 +0000)
Added missing clode to make the clode test test a close. ;)

Lib/test/test_StringIO.py

index 2d9f2c1ded8758b140bb09ab1a8ca2ac85041ea5..f2d6dbf7be493499dcdb4d91c6957c289f3cc03b 100644 (file)
@@ -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