summaryrefslogtreecommitdiff
path: root/Lib/test/test_long.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2016-09-03 01:55:39 -0700
committerRaymond Hettinger <python@rcn.com>2016-09-03 01:55:39 -0700
commit3b09cd64e0a7991bcb6d3f83a0a23be2fc81213f (patch)
treec6111132a4ec6fe8f29abd76e882c58442a3d57c /Lib/test/test_long.py
parent25d94bbf05f37151e7e6e3a2e1cd5af4a3e5f68c (diff)
parentf0f1c239e4addd15180d605306a969a627cb19d5 (diff)
downloadcpython-git-3b09cd64e0a7991bcb6d3f83a0a23be2fc81213f.tar.gz
Merge
Diffstat (limited to 'Lib/test/test_long.py')
-rw-r--r--Lib/test/test_long.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py
index 4d293f24e0..4cc4b05c7f 100644
--- a/Lib/test/test_long.py
+++ b/Lib/test/test_long.py
@@ -1015,7 +1015,7 @@ class LongTest(unittest.TestCase):
self.assertIs(type(got), int)
# bad second argument
- bad_exponents = ('brian', 2.0, 0j, None)
+ bad_exponents = ('brian', 2.0, 0j)
for e in bad_exponents:
self.assertRaises(TypeError, round, 3, e)