summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pep352.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_pep352.py')
-rw-r--r--Lib/test/test_pep352.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/Lib/test/test_pep352.py b/Lib/test/test_pep352.py
index d2429eb..c6d3a8d 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):