diff options
author | Barry Warsaw <barry@python.org> | 2001-09-22 04:33:47 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-09-22 04:33:47 (GMT) |
commit | 7f8ff471f8020ab4c365c4e1885290cbfc08f718 (patch) | |
tree | 31b4cfd539d27605179e6e37a0121e3a1c1fe9bf /Lib/test/output | |
parent | 3208d4b387641edb99c16126b7062e701114d655 (diff) | |
download | cpython-7f8ff471f8020ab4c365c4e1885290cbfc08f718.zip cpython-7f8ff471f8020ab4c365c4e1885290cbfc08f718.tar.gz cpython-7f8ff471f8020ab4c365c4e1885290cbfc08f718.tar.bz2 |
Converted test_StringIO.py to use unittest, so
Lib/test/output/test_StringIO is no longer necessary.
Also, added a test of the iterator protocol that's just been added to
StringIO's and cStringIO's.
Diffstat (limited to 'Lib/test/output')
-rw-r--r-- | Lib/test/output/test_StringIO | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/Lib/test/output/test_StringIO b/Lib/test/output/test_StringIO deleted file mode 100644 index 992d534..0000000 --- a/Lib/test/output/test_StringIO +++ /dev/null @@ -1,21 +0,0 @@ -test_StringIO -abcdefghij -klmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ - -2 -'abcuvwxyz!' -'abc' -'abcdefghij' -'abcde' -Caught expected ValueError writing to closed StringIO: -I/O operation on closed file -abcdefghij -klmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ - -2 -'abcuvwxyz!' -'abc' -'abcdefghij' -'abcde' -Caught expected ValueError writing to closed StringIO: -I/O operation on closed file |