Verify that str(a) and repr(a) don't blow up (part of SF patch 102068).
diff --git a/Lib/test/test_array.py b/Lib/test/test_array.py
index 4a64bd6..087e65b 100755
--- a/Lib/test/test_array.py
+++ b/Lib/test/test_array.py
@@ -84,8 +84,13 @@
     f = open(TESTFN, 'w')
     a.tofile(f)
     f.close()
+
+    # This block is just to verify that the operations don't blow up.
     a.tolist()
     a.tostring()
+    repr(a)
+    str(a)
+
     if verbose:
         print 'array of %s converted to a list: ' % a.typecode, a.tolist()
     if verbose: