mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
parent
ecfeb7f095
commit
70a6b49821
246 changed files with 926 additions and 962 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue