diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-06-25 23:02:11 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-06-25 23:02:11 +0000 |
commit | e0e8be89845e64c18192e54fdd85b72b4950090a (patch) | |
tree | c663aa0ba6742d521943ce5171e53c44b05018bd | |
parent | bd28f7a14c29d5c652e68bad4eb6f5fed2e7df93 (diff) | |
download | cpython-e0e8be89845e64c18192e54fdd85b72b4950090a.tar.gz |
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
........
-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 e9c4462f7b..fc9afb7089 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 |