From fee7b93c60310413db31973c13e5abb4c7620ef4 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 16 Jan 2005 00:21:28 +0000 Subject: [PATCH] Use decorators. --- Lib/test/test_builtin.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py index 51ef7c64191..5aa91973278 100644 --- a/Lib/test/test_builtin.py +++ b/Lib/test/test_builtin.py @@ -1274,17 +1274,18 @@ class BuiltinTest(unittest.TestCase): self.assertRaises(ValueError, unichr, sys.maxunicode+1) self.assertRaises(TypeError, unichr) + # We don't want self in vars(), so these are static methods + + @staticmethod def get_vars_f0(): return vars() - # we don't want self in vars(), so use staticmethod - get_vars_f0 = staticmethod(get_vars_f0) + @staticmethod def get_vars_f2(): BuiltinTest.get_vars_f0() a = 1 b = 2 return vars() - get_vars_f2 = staticmethod(get_vars_f2) def test_vars(self): self.assertEqual(set(vars()), set(dir()))