diff options
author | Guido van Rossum <guido@python.org> | 1997-11-26 15:44:34 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-11-26 15:44:34 (GMT) |
commit | 0b23348aa944dcb97c84b34d399c857f039e5773 (patch) | |
tree | 88178b09c8a16b93ab1ab174df968a61d36e7293 /Lib/dos-8x3/test_arr.py | |
parent | 330c660f66243094e082500bc1d760b2b86024cb (diff) | |
download | cpython-0b23348aa944dcb97c84b34d399c857f039e5773.zip cpython-0b23348aa944dcb97c84b34d399c857f039e5773.tar.gz cpython-0b23348aa944dcb97c84b34d399c857f039e5773.tar.bz2 |
The usual
Diffstat (limited to 'Lib/dos-8x3/test_arr.py')
-rw-r--r-- | Lib/dos-8x3/test_arr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dos-8x3/test_arr.py b/Lib/dos-8x3/test_arr.py index 832f192..e95fac4 100644 --- a/Lib/dos-8x3/test_arr.py +++ b/Lib/dos-8x3/test_arr.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() |