]> granicus.if.org Git - python/commitdiff
Use `...` around binary strings.
authorGuido van Rossum <guido@python.org>
Tue, 7 Oct 1997 21:22:48 +0000 (21:22 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 7 Oct 1997 21:22:48 +0000 (21:22 +0000)
Lib/test/test_array.py

index 832f192b0a5ac48ad1258545ad35cf72723274ed..e95fac4891e1af605e2536b559b5359039fb5913 100755 (executable)
@@ -52,7 +52,7 @@ def testtype(type, example):
            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()