diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-10-09 15:16:03 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-10-09 15:16:03 (GMT) |
commit | b29614e047110f4d9af993a6cdec4e3fb7ef9738 (patch) | |
tree | a15a5ac7b508c5033f640123f498a322f44b04ce /Lib/unittest/case.py | |
parent | a5119351519926971240f61d0c23a5fc5d00743e (diff) | |
download | cpython-b29614e047110f4d9af993a6cdec4e3fb7ef9738.zip cpython-b29614e047110f4d9af993a6cdec4e3fb7ef9738.tar.gz cpython-b29614e047110f4d9af993a6cdec4e3fb7ef9738.tar.bz2 |
compare singletons by identity not equality (closes #16712)
Patch from Serhiy Storchaka.
Diffstat (limited to 'Lib/unittest/case.py')
-rw-r--r-- | Lib/unittest/case.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index 28f0a2d..f334865 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -736,7 +736,7 @@ class TestCase(object): msg: Optional message to use on failure instead of a list of differences. """ - if seq_type != None: + if seq_type is not None: seq_type_name = seq_type.__name__ if not isinstance(seq1, seq_type): raise self.failureException('First sequence is not a %s: %s' |