diff options
author | Guido van Rossum <guido@python.org> | 1997-10-07 21:22:48 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-10-07 21:22:48 (GMT) |
commit | d2c0ec78d20d5e4de34f87e273e6bfb5eb152987 (patch) | |
tree | 3eae13c0f49760cb81c5f9320eab675f75ec99d8 /Lib | |
parent | 0225a38907edb7f924f7b04ce2130fde4f679e81 (diff) | |
download | cpython-d2c0ec78d20d5e4de34f87e273e6bfb5eb152987.zip cpython-d2c0ec78d20d5e4de34f87e273e6bfb5eb152987.tar.gz cpython-d2c0ec78d20d5e4de34f87e273e6bfb5eb152987.tar.bz2 |
Use `...` around binary strings.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/test/test_array.py | 2 |
1 files changed, 1 insertions, 1 deletions
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() |