summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-10-09 15:16:03 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-10-09 15:16:03 (GMT)
commitb29614e047110f4d9af993a6cdec4e3fb7ef9738 (patch)
treea15a5ac7b508c5033f640123f498a322f44b04ce /Lib/test/test_sys.py
parenta5119351519926971240f61d0c23a5fc5d00743e (diff)
downloadcpython-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/test/test_sys.py')
-rw-r--r--Lib/test/test_sys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index 6e0c6ee..e5ec85c 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -897,7 +897,7 @@ class SizeofTest(unittest.TestCase):
except TypeError:
tb = sys.exc_info()[2]
# traceback
- if tb != None:
+ if tb is not None:
check(tb, size('2P2i'))
# symtable entry
# XXX