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
........
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 @@
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