diff options
author | Guido van Rossum <guido@python.org> | 1997-05-08 23:14:57 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-08 23:14:57 (GMT) |
commit | de554ece418b241ad5058b1e600040c0d1c01891 (patch) | |
tree | 787ca28dc2f8582e7ce7f0bb535ef865bf1c7f9f /Lib/dos-8x3/test_arr.py | |
parent | 6dd87830d091673741a4aabfb0680ae5ca64c257 (diff) | |
download | cpython-de554ece418b241ad5058b1e600040c0d1c01891.zip cpython-de554ece418b241ad5058b1e600040c0d1c01891.tar.gz cpython-de554ece418b241ad5058b1e600040c0d1c01891.tar.bz2 |
The usual.
Diffstat (limited to 'Lib/dos-8x3/test_arr.py')
-rw-r--r-- | Lib/dos-8x3/test_arr.py | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/Lib/dos-8x3/test_arr.py b/Lib/dos-8x3/test_arr.py index 7474a27..832f192 100644 --- a/Lib/dos-8x3/test_arr.py +++ b/Lib/dos-8x3/test_arr.py @@ -3,7 +3,7 @@ Roger E. Masse """ import array -from test_support import verbose +from test_support import verbose, TESTFN, unlink def main(): @@ -12,10 +12,11 @@ def main(): for type in (['b', 'h', 'i', 'l', 'f', 'd']): testtype(type, 1) + unlink(TESTFN) + def testtype(type, example): - a = array.array(type) a.append(example) if verbose: @@ -27,10 +28,14 @@ def testtype(type, example): a.byteswap() if a.typecode == 'c': - f = open('/etc/passwd', 'r') + f = open(TESTFN, "w") + f.write("The quick brown fox jumps over the lazy dog.\n") + f.close() + f = open(TESTFN, 'r') a.fromfile(f, 10) + f.close() if verbose: - print 'char array with 10 bytes of /etc/passwd appended: ', a + print 'char array with 10 bytes of TESTFN appended: ', a a.fromlist(['a', 'b', 'c']) if verbose: print 'char array with list appended: ', a @@ -38,8 +43,9 @@ def testtype(type, example): a.insert(0, example) if verbose: print 'array of %s after inserting another:' % a.typecode, a - f = open('/dev/null', 'w') + f = open(TESTFN, 'w') a.tofile(f) + f.close() a.tolist() a.tostring() if verbose: @@ -48,5 +54,6 @@ def testtype(type, example): print 'array of %s converted to a string: ' \ % a.typecode, a.tostring() + main() |