From 015263339fa7adc9f14316d878a662f1d252adf6 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 17 Sep 2009 11:49:20 +0000 Subject: [PATCH] Merged revisions 74873 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r74873 | georg.brandl | 2009-09-17 13:48:31 +0200 (Do, 17 Sep 2009) | 1 line #6844 followup: the warning when setting Exception.message was removed, do not test for it. ........ --- Lib/test/test_pep352.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Lib/test/test_pep352.py b/Lib/test/test_pep352.py index e33552809f4..313c60780ed 100644 --- a/Lib/test/test_pep352.py +++ b/Lib/test/test_pep352.py @@ -143,13 +143,6 @@ class ExceptionClassTests(unittest.TestCase): else: self.fail("BaseException.message not deprecated") - exc = BaseException() - try: - exc.message = '' - except DeprecationWarning: - pass - else: - self.fail("BaseException.message assignment not deprecated") class UsageTests(unittest.TestCase):