1996-12-10 12:02:14 -04:00
|
|
|
#! /usr/bin/env python
|
|
|
|
"""Test the arraymodule.
|
1997-04-02 02:13:34 -04:00
|
|
|
Roger E. Masse
|
1996-12-10 12:02:14 -04:00
|
|
|
"""
|
|
|
|
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)
|
|
|
|
|
1996-12-10 12:02:14 -04:00
|
|
|
|
|
|
|
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
|
1996-12-10 12:02:14 -04:00
|
|
|
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')
|
1996-12-10 12:02:14 -04:00
|
|
|
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
|
1996-12-10 12:02:14 -04:00
|
|
|
a.fromlist(['a', 'b', 'c'])
|
1997-04-02 02:13:34 -04:00
|
|
|
if verbose:
|
|
|
|
print 'char array with list appended: ', a
|
1996-12-10 12:02:14 -04:00
|
|
|
|
|
|
|
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')
|
1996-12-10 12:02:14 -04:00
|
|
|
a.tofile(f)
|
1997-05-08 20:14:57 -03:00
|
|
|
f.close()
|
1996-12-10 12:02:14 -04:00
|
|
|
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: ' \
|
|
|
|
% a.typecode, a.tostring()
|
1996-12-10 12:02:14 -04:00
|
|
|
|
1997-05-08 20:14:57 -03:00
|
|
|
|
1997-04-02 02:13:34 -04:00
|
|
|
main()
|
1996-12-10 12:02:14 -04:00
|
|
|
|