[pypy-svn] r62434 - pypy/trunk/pypy
hpk at codespeak.net
hpk at codespeak.net
Tue Mar 3 00:28:17 CET 2009
Author: hpk
Date: Tue Mar 3 00:28:15 2009
New Revision: 62434
Modified:
pypy/trunk/pypy/conftest.py
Log:
avoid another deprecation warning
Modified: pypy/trunk/pypy/conftest.py
==============================================================================
--- pypy/trunk/pypy/conftest.py (original)
+++ pypy/trunk/pypy/conftest.py Tue Mar 3 00:28:15 2009
@@ -233,8 +233,7 @@
# if hasattr(mod, 'objspacename'):
# mod.space = getttestobjspace(mod.objspacename)
- def join(self, name):
- obj = getattr(self.obj, name)
+ def makeitem(self, name, obj):
if isclass(obj):
if name.startswith('AppTest'):
return AppClassCollector(name, parent=self)
More information about the Pypy-commit
mailing list