summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-06-25 20:34:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-06-25 20:34:01 (GMT)
commit4b26acbf03730f8b11c54186c0cc6bcb15ace669 (patch)
treea66e68ee3c60adffbc45b5b05f3fb125482d891a /Lib
parent32a16cac7072288121a580748303a0896871271c (diff)
downloadcpython-4b26acbf03730f8b11c54186c0cc6bcb15ace669.zip
cpython-4b26acbf03730f8b11c54186c0cc6bcb15ace669.tar.gz
cpython-4b26acbf03730f8b11c54186c0cc6bcb15ace669.tar.bz2
mark implementation detail as such
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_enumerate.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_enumerate.py b/Lib/test/test_enumerate.py
index efea5fa..f54659c 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