commit | 02c0bbbe6d36b848f5992db9319a15775f99f3dc | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun May 18 21:04:46 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Sun May 18 21:04:46 2008 +0000 |
tree | aad6451a767755f425b6f8568407f94c0c32e9f6 | |
parent | 192197064b1014a70a1d2144f6f523fa752d20c5 [diff] |
Ignore test_c_api when checking for set methods. Thanks Brett!
diff --git a/Lib/test/test_weakset.py b/Lib/test/test_weakset.py index ee30d92..7f5b8eb 100644 --- a/Lib/test/test_weakset.py +++ b/Lib/test/test_weakset.py
@@ -31,7 +31,7 @@ def test_methods(self): weaksetmethods = dir(WeakSet) for method in dir(set): - if method.startswith('_'): + if method == 'test_c_api' or method.startswith('_'): continue self.assert_(method in weaksetmethods, "WeakSet missing method " + method)