From 6ec2be9985d26f413f8d15240b12b1881f6a6e1a Mon Sep 17 00:00:00 2001 From: pedronis Date: Sun, 1 Jul 2007 14:18:02 +0200 Subject: [PATCH] [svn r44648] PyCollectorMixin is intented to override Collector behavior, if we want to use super it really needs to subclass from it to get mros to that effect. If the obscure semi-override was intentional (?) holler --HG-- branch : trunk --- py/test/collect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/test/collect.py b/py/test/collect.py index a6d33d0bd..c094f8db9 100644 --- a/py/test/collect.py +++ b/py/test/collect.py @@ -289,7 +289,7 @@ class Directory(FSCollector): name2items[name] = res return res -class PyCollectorMixin(object): +class PyCollectorMixin(Collector): def funcnamefilter(self, name): return name.startswith('test') def classnamefilter(self, name):