diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-03-30 18:56:19 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-03-30 18:56:19 (GMT) |
commit | 503ab33e54f5edb3c8b925c0d7b22c892084c5db (patch) | |
tree | c2384275002fd30736f559d6d5f0a091663a6401 /Lib/test/test_index.py | |
parent | 25cd7eb9a14cb646e58e315ebfafe867862a705b (diff) | |
download | cpython-503ab33e54f5edb3c8b925c0d7b22c892084c5db.zip cpython-503ab33e54f5edb3c8b925c0d7b22c892084c5db.tar.gz cpython-503ab33e54f5edb3c8b925c0d7b22c892084c5db.tar.bz2 |
Merged revisions 79502 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79502 | antoine.pitrou | 2010-03-30 20:49:45 +0200 (mar., 30 mars 2010) | 4 lines
Issue #8248: Add some tests for the bool type. Patch by Gregory Nofi.
........
Diffstat (limited to 'Lib/test/test_index.py')
-rw-r--r-- | Lib/test/test_index.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_index.py b/Lib/test/test_index.py index 79802e2..7a94af1 100644 --- a/Lib/test/test_index.py +++ b/Lib/test/test_index.py @@ -39,6 +39,8 @@ class BaseTestCase(unittest.TestCase): self.assertEqual(-7 .__index__(), -7) self.assertEqual(self.o.__index__(), 4) self.assertEqual(self.n.__index__(), 5) + self.assertEqual(True.__index__(), 1) + self.assertEqual(False.__index__(), 0) def test_subclasses(self): r = list(range(10)) |