mark implementation detail as such
diff --git a/Lib/test/test_enumerate.py b/Lib/test/test_enumerate.py
index d3b9e81..6b9ff79 100644
--- a/Lib/test/test_enumerate.py
+++ b/Lib/test/test_enumerate.py
@@ -152,6 +152,7 @@
         x = xrange(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