From: Guido van Rossum Date: Tue, 7 Oct 1997 21:22:48 +0000 (+0000) Subject: Use `...` around binary strings. X-Git-Tag: v1.5a4~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2c0ec78d20d5e4de34f87e273e6bfb5eb152987;p=python Use `...` around binary strings. --- diff --git a/Lib/test/test_array.py b/Lib/test/test_array.py index 832f192b0a..e95fac4891 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()