diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-04-01 19:01:39 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-04-01 19:01:39 (GMT) |
commit | 05c09d08f9b52e7abceb5bb32295c9d3ec3612ef (patch) | |
tree | c8f3cf4ba47879b226824a925d50db3101a6233b /Lib/test/test_long.py | |
parent | 28bb572ab4e72abfd918343f1d6114630daa4564 (diff) | |
download | cpython-05c09d08f9b52e7abceb5bb32295c9d3ec3612ef.zip cpython-05c09d08f9b52e7abceb5bb32295c9d3ec3612ef.tar.gz cpython-05c09d08f9b52e7abceb5bb32295c9d3ec3612ef.tar.bz2 |
Format strings (tuples,) appropriately
Diffstat (limited to 'Lib/test/test_long.py')
-rw-r--r-- | Lib/test/test_long.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py index 573ef75..5e98225 100644 --- a/Lib/test/test_long.py +++ b/Lib/test/test_long.py @@ -326,7 +326,7 @@ def test_auto_overflow(): pass else: raise TestFailed("pow%r should have raised " - "TypeError" % ((longx, longy, long(z)))) + "TypeError" % ((longx, longy, long(z)),)) # ---------------------------------------- tests of long->float overflow |