commit | 192197064b1014a70a1d2144f6f523fa752d20c5 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun May 18 17:10:40 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Sun May 18 17:10:40 2008 +0000 |
tree | 1a112d1fb6f3cff65c5b38e064761fcbb65a9f9d | |
parent | 9dba5d9764350c9d71be15619995899bcad1ffbd [diff] [blame] |
Better diagnostic.
diff --git a/Lib/test/test_weakset.py b/Lib/test/test_weakset.py index 22ac9af..ee30d92 100644 --- a/Lib/test/test_weakset.py +++ b/Lib/test/test_weakset.py
@@ -33,7 +33,8 @@ for method in dir(set): if method.startswith('_'): continue - self.assert_(method in weaksetmethods) + self.assert_(method in weaksetmethods, + "WeakSet missing method " + method) def test_new_or_init(self): self.assertRaises(TypeError, WeakSet, [], 2)