diff options
-rw-r--r-- | Lib/test/test_pep352.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Lib/test/test_pep352.py b/Lib/test/test_pep352.py index d2429ebcfb..c6d3a8dcc1 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): |