From d2c0ec78d20d5e4de34f87e273e6bfb5eb152987 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 7 Oct 1997 21:22:48 +0000 Subject: Use `...` around binary strings. --- Lib/test/test_array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ 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() -- cgit v0.12