diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-12-30 23:15:14 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-12-30 23:15:14 +0000 |
commit | bcf6ca13454cc90c65092fb11063bbaf1c09a268 (patch) | |
tree | 9f705b725bb78fe6b4868a98bcb37323a3efa5d5 | |
parent | 788864f4838dc2d79a2403755656e00fc698a5a2 (diff) | |
download | cpython-git-bcf6ca13454cc90c65092fb11063bbaf1c09a268.tar.gz |
rewrite for inferior assertRaises
-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__... |