[py-svn] r44648 - py/trunk/py/test
pedronis at codespeak.net
pedronis at codespeak.net
Sun Jul 1 14:18:04 CEST 2007
Author: pedronis
Date: Sun Jul 1 14:18:02 2007
New Revision: 44648
Modified:
py/trunk/py/test/collect.py
Log:
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
Modified: py/trunk/py/test/collect.py
==============================================================================
--- py/trunk/py/test/collect.py (original)
+++ py/trunk/py/test/collect.py Sun Jul 1 14:18:02 2007
@@ -289,7 +289,7 @@
name2items[name] = res
return res
-class PyCollectorMixin(object):
+class PyCollectorMixin(Collector):
def funcnamefilter(self, name):
return name.startswith('test')
def classnamefilter(self, name):
More information about the py-svn
mailing list