summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-10-09 15:16:13 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-10-09 15:16:13 (GMT)
commit29e02a2be8d5e3e0e9967c5806b15965201bb7aa (patch)
treec44ab2fe883c85cb8a87222ef465e5c253c723e1 /Lib/test/test_sys.py
parent2bc53a092a78b6e49c1e3f497eb7512810e83c0c (diff)
parentb29614e047110f4d9af993a6cdec4e3fb7ef9738 (diff)
downloadcpython-29e02a2be8d5e3e0e9967c5806b15965201bb7aa.zip
cpython-29e02a2be8d5e3e0e9967c5806b15965201bb7aa.tar.gz
cpython-29e02a2be8d5e3e0e9967c5806b15965201bb7aa.tar.bz2
merge 3.3
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 349b1ac..a1074c3 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