[pypy-svn] r28490 - pypy/dist/pypy/translator/c

rxe at codespeak.net rxe at codespeak.net
Thu Jun 8 00:38:35 CEST 2006


Author: rxe
Date: Thu Jun  8 00:38:32 2006
New Revision: 28490

Modified:
   pypy/dist/pypy/translator/c/pyobj.py
Log:
Tyop



Modified: pypy/dist/pypy/translator/c/pyobj.py
==============================================================================
--- pypy/dist/pypy/translator/c/pyobj.py	(original)
+++ pypy/dist/pypy/translator/c/pyobj.py	Thu Jun  8 00:38:32 2006
@@ -570,7 +570,7 @@
                 if isinstance(value, FunctionType):
                     func = value
                     fname = '%s.%s' % (cls.__name__, func.__name__)
-                    if not should_expose_method(func):
+                    if not should_expose(func):
                         log.REMARK('method %s hidden from wrapper' % fname)
                         continue
                     if func.__name__ == '__init__':



More information about the Pypy-commit mailing list