diff options
author | Armin Ronacher <armin.ronacher@active-4.com> | 2012-10-07 08:29:32 (GMT) |
---|---|---|
committer | Armin Ronacher <armin.ronacher@active-4.com> | 2012-10-07 08:29:32 (GMT) |
commit | 74b38b190faae988b4951cf46d83f853589aa530 (patch) | |
tree | 3259a32fff2a205c6d3d74d9a04c165eb5908686 /Lib/test/test_enumerate.py | |
parent | 96e936712f2d926fb566c8680958a07fc6b84c71 (diff) | |
download | cpython-74b38b190faae988b4951cf46d83f853589aa530.zip cpython-74b38b190faae988b4951cf46d83f853589aa530.tar.gz cpython-74b38b190faae988b4951cf46d83f853589aa530.tar.bz2 |
Issue #16148: Small improvements and cleanup. Added version information
to docs.
Diffstat (limited to 'Lib/test/test_enumerate.py')
-rw-r--r-- | Lib/test/test_enumerate.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_enumerate.py b/Lib/test/test_enumerate.py index c0560fe..a2d18d0 100644 --- a/Lib/test/test_enumerate.py +++ b/Lib/test/test_enumerate.py @@ -170,7 +170,6 @@ class TestReversed(unittest.TestCase, PickleTest): self.assertEqual(type(reversed(x)), type(iter(x))) def test_len(self): - # This is an implementation detail, not an interface requirement for s in ('hello', tuple('hello'), list('hello'), range(5)): self.assertEqual(operator.length_hint(reversed(s)), len(s)) r = reversed(s) |