commit | d2c0ec78d20d5e4de34f87e273e6bfb5eb152987 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Oct 07 21:22:48 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Oct 07 21:22:48 1997 +0000 |
tree | 3eae13c0f49760cb81c5f9320eab675f75ec99d8 | |
parent | 0225a38907edb7f924f7b04ce2130fde4f679e81 [diff] [blame] |
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()