Use `...` around binary strings.
diff --git a/Lib/test/test_array.py b/Lib/test/test_array.py
index 832f192..e95fac4 100755
--- a/Lib/test/test_array.py
+++ b/Lib/test/test_array.py
@@ -52,7 +52,7 @@
 	    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()
+	           % a.typecode, `a.tostring()`
 
 
 main()