diff options
author | Walter Dörwald <walter@livinglogic.de> | 2004-02-12 17:35:32 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2004-02-12 17:35:32 (GMT) |
commit | 70a6b49821a3226f55e9716f32d802d06640cb89 (patch) | |
tree | 3c8ca10c1fa09e025bd266cf855a00d7d96c55aa /Lib/test/test_contains.py | |
parent | ecfeb7f095dfd9c1c8929bf3df858ee35e0d9e9e (diff) | |
download | cpython-70a6b49821a3226f55e9716f32d802d06640cb89.zip cpython-70a6b49821a3226f55e9716f32d802d06640cb89.tar.gz cpython-70a6b49821a3226f55e9716f32d802d06640cb89.tar.bz2 |
Replace backticks with repr() or "%r"
From SF patch #852334.
Diffstat (limited to 'Lib/test/test_contains.py')
-rw-r--r-- | Lib/test/test_contains.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/test/test_contains.py b/Lib/test/test_contains.py index 04eedf1..e6f5cf7 100644 --- a/Lib/test/test_contains.py +++ b/Lib/test/test_contains.py @@ -88,15 +88,15 @@ if have_unicode: # A collection of tests on builtin sequence types a = range(10) for i in a: - check(i in a, "%s not in %s" % (`i`, `a`)) -check(16 not in a, "16 not in %s" % `a`) -check(a not in a, "%s not in %s" % (`a`, `a`)) + check(i in a, "%r not in %r" % (i, a)) +check(16 not in a, "16 not in %r" % (a,)) +check(a not in a, "%s not in %r" % (a, a)) a = tuple(a) for i in a: - check(i in a, "%s not in %s" % (`i`, `a`)) -check(16 not in a, "16 not in %s" % `a`) -check(a not in a, "%s not in %s" % (`a`, `a`)) + check(i in a, "%r not in %r" % (i, a)) +check(16 not in a, "16 not in %r" % (a,)) +check(a not in a, "%r not in %r" % (a, a)) class Deviant1: """Behaves strangely when compared |