[Python-checkins] r82229 - python/trunk/Lib/test/test_enumerate.py

benjamin.peterson python-checkins at python.org
Sat Jun 26 00:58:47 CEST 2010


Author: benjamin.peterson
Date: Sat Jun 26 00:58:47 2010
New Revision: 82229

Log:
mark implementation detail as such

Modified:
   python/trunk/Lib/test/test_enumerate.py

Modified: python/trunk/Lib/test/test_enumerate.py
==============================================================================
--- python/trunk/Lib/test/test_enumerate.py	(original)
+++ python/trunk/Lib/test/test_enumerate.py	Sat Jun 26 00:58:47 2010
@@ -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


More information about the Python-checkins mailing list