diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-06-25 20:37:22 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-06-25 20:37:22 (GMT) |
commit | 6e4c68ed7ed10e173d4d78679b9c13cdc1a7612e (patch) | |
tree | 40ffda64c41f4addc956d6626c5907ec634bb063 | |
parent | fdb0accc314f0e6834228379546b5427bb460bf6 (diff) | |
download | cpython-6e4c68ed7ed10e173d4d78679b9c13cdc1a7612e.zip cpython-6e4c68ed7ed10e173d4d78679b9c13cdc1a7612e.tar.gz cpython-6e4c68ed7ed10e173d4d78679b9c13cdc1a7612e.tar.bz2 |
Merged revisions 82225 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r82225 | benjamin.peterson | 2010-06-25 15:34:01 -0500 (Fri, 25 Jun 2010) | 1 line
mark implementation detail as such
........
-rw-r--r-- | Lib/test/test_enumerate.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_enumerate.py b/Lib/test/test_enumerate.py index 7fc1fdc..e9c4462 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 |