[pypy-svn] r9310 - pypy/branch/dist-interpapp/pypy/objspace/std
arigo at codespeak.net
arigo at codespeak.net
Fri Feb 18 17:40:27 CET 2005
Author: arigo
Date: Fri Feb 18 17:40:26 2005
New Revision: 9310
Modified:
pypy/branch/dist-interpapp/pypy/objspace/std/typeobject.py
Log:
Work around a bug in inspect.getsource() introduced by Python 2.4
:-(
Modified: pypy/branch/dist-interpapp/pypy/objspace/std/typeobject.py
==============================================================================
--- pypy/branch/dist-interpapp/pypy/objspace/std/typeobject.py (original)
+++ pypy/branch/dist-interpapp/pypy/objspace/std/typeobject.py Fri Feb 18 17:40:26 2005
@@ -243,7 +243,8 @@
# ____________________________________________________________
-def app_abstract_mro(klass): # abstract/classic mro
+def app_abstract_mro(klass):
+ # abstract/classic mro
mro = []
def fill_mro(klass):
if klass not in mro:
More information about the Pypy-commit
mailing list