From: Benjamin Peterson Date: Fri, 25 Jun 2010 21:19:04 +0000 (+0000) Subject: this must be a typo X-Git-Tag: v2.7~66 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0badae4748e28bbb7b1169b2045024f1f43bf051;p=thirdparty%2FPython%2Fcpython.git this must be a typo --- diff --git a/Lib/test/test_enumerate.py b/Lib/test/test_enumerate.py index f54659ccf15a..d3b9e818cbdf 100644 --- a/Lib/test/test_enumerate.py +++ b/Lib/test/test_enumerate.py @@ -142,7 +142,7 @@ class TestReversed(unittest.TestCase): # don't allow keyword arguments self.assertRaises(TypeError, reversed, [], a=1) - def test_class_class(self): + def test_classic_class(self): class A: def __reversed__(self): return [2, 1]