[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:
parent
bdfb5ea88b
commit
6ec2be9985
|
@ -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):
|
||||||
|
|
Loading…
Reference in New Issue