cpython/Lib/dos-8x3/test_arr.py

60 lines
1.2 KiB
Python
Raw Normal View History

#! /usr/bin/env python
"""Test the arraymodule.
1997-04-02 02:13:34 -04:00
Roger E. Masse
"""
import array
1997-05-08 20:14:57 -03:00
from test_support import verbose, TESTFN, unlink
1997-04-02 02:13:34 -04:00
def main():
testtype('c', 'c')
for type in (['b', 'h', 'i', 'l', 'f', 'd']):
testtype(type, 1)
1997-05-08 20:14:57 -03:00
unlink(TESTFN)
def testtype(type, example):
a = array.array(type)
a.append(example)
1997-04-02 02:13:34 -04:00
if verbose:
print 40*'*'
print 'array after append: ', a
a.typecode
a.itemsize
if a.typecode in ('i', 'b', 'h', 'l'):
a.byteswap()
if a.typecode == 'c':
1997-05-08 20:14:57 -03:00
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)
1997-05-08 20:14:57 -03:00
f.close()
1997-04-02 02:13:34 -04:00
if verbose:
1997-05-08 20:14:57 -03:00
print 'char array with 10 bytes of TESTFN appended: ', a
a.fromlist(['a', 'b', 'c'])
1997-04-02 02:13:34 -04:00
if verbose:
print 'char array with list appended: ', a
a.insert(0, example)
1997-04-02 02:13:34 -04:00
if verbose:
print 'array of %s after inserting another:' % a.typecode, a
1997-05-08 20:14:57 -03:00
f = open(TESTFN, 'w')
a.tofile(f)
1997-05-08 20:14:57 -03:00
f.close()
a.tolist()
a.tostring()
1997-04-02 02:13:34 -04:00
if verbose:
print 'array of %s converted to a list: ' % a.typecode, a.tolist()
if verbose:
print 'array of %s converted to a string: ' \
1997-11-26 11:44:34 -04:00
% a.typecode, `a.tostring()`
1997-05-08 20:14:57 -03:00
1997-04-02 02:13:34 -04:00
main()