diff options
-rw-r--r-- | Lib/test/test_descr.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 67e58ca157..bc5edef857 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -1144,8 +1144,12 @@ order (MRO) for bases """ class X(object): __slots__ = "a" - with self.assertRaises(AttributeError): + try: del X().a + except AttributeError: + pass + else: + self.fail("didn't raise AttributeError") def test_slots_special(self): # Testing __dict__ and __weakref__ in __slots__... |