From: Benjamin Peterson Date: Fri, 25 Jun 2010 20:34:01 +0000 (+0000) Subject: mark implementation detail as such X-Git-Tag: v2.7~67 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4b26acbf03730f8b11c54186c0cc6bcb15ace669;p=thirdparty%2FPython%2Fcpython.git mark implementation detail as such --- diff --git a/Lib/test/test_enumerate.py b/Lib/test/test_enumerate.py index efea5fa45003..f54659ccf15a 100644 --- a/Lib/test/test_enumerate.py +++ b/Lib/test/test_enumerate.py @@ -103,6 +103,7 @@ class EnumerateTestCase(unittest.TestCase): self.assertRaises(TypeError, self.enum, 'abc', 'a') # wrong type self.assertRaises(TypeError, self.enum, 'abc', 2, 3) # too many arguments + @test_support.cpython_only def test_tuple_reuse(self): # Tests an implementation detail where tuple is reused # whenever nothing else holds a reference to it