[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
This commit is contained in:
pedronis 2007-07-01 14:18:02 +02:00
parent bdfb5ea88b
commit 6ec2be9985
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ class Directory(FSCollector):
name2items[name] = res name2items[name] = res
return res return res
class PyCollectorMixin(object): class PyCollectorMixin(Collector):
def funcnamefilter(self, name): def funcnamefilter(self, name):
return name.startswith('test') return name.startswith('test')
def classnamefilter(self, name): def classnamefilter(self, name):