diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-06-25 23:02:11 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-06-25 23:02:11 (GMT) |
commit | c7a7d406c8d3d159fdde7942eb8102c1b97c6291 (patch) | |
tree | 889c30d31abd47021fd8fd15e388f45e276da165 /Lib/test | |
parent | f16eec2cac794e297761c616e30f3a0c397f1228 (diff) | |
download | cpython-c7a7d406c8d3d159fdde7942eb8102c1b97c6291.zip cpython-c7a7d406c8d3d159fdde7942eb8102c1b97c6291.tar.gz cpython-c7a7d406c8d3d159fdde7942eb8102c1b97c6291.tar.bz2 |
Merged revisions 82229 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r82229 | benjamin.peterson | 2010-06-25 17:58:47 -0500 (Fri, 25 Jun 2010) | 1 line
mark implementation detail as such
........
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_enumerate.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_enumerate.py b/Lib/test/test_enumerate.py index e9c4462..fc9afb7 100644 --- a/Lib/test/test_enumerate.py +++ b/Lib/test/test_enumerate.py @@ -146,6 +146,7 @@ class TestReversed(unittest.TestCase): x = range(1) self.assertEqual(type(reversed(x)), type(iter(x))) + @test_support.cpython_only def test_len(self): # This is an implementation detail, not an interface requirement from test.test_iterlen import len |