[pypy-svn] r77059 - pypy/branch/fast-forward/pypy/interpreter

afa at codespeak.net afa at codespeak.net
Tue Sep 14 14:12:17 CEST 2010


Author: afa
Date: Tue Sep 14 14:12:15 2010
New Revision: 77059

Modified:
   pypy/branch/fast-forward/pypy/interpreter/typedef.py
Log:
Restore builtin_method.__doc__


Modified: pypy/branch/fast-forward/pypy/interpreter/typedef.py
==============================================================================
--- pypy/branch/fast-forward/pypy/interpreter/typedef.py	(original)
+++ pypy/branch/fast-forward/pypy/interpreter/typedef.py	Tue Sep 14 14:12:15 2010
@@ -843,6 +843,7 @@
     '__new__': interp2app(BuiltinFunction.descr_builtinfunction__new__.im_func),
     '__self__': GetSetProperty(always_none, cls=BuiltinFunction),
     '__repr__': interp2app(BuiltinFunction.descr_function_repr),
+    '__doc__': getset_func_doc,
     })
 del BuiltinFunction.typedef.rawdict['__get__']
 BuiltinFunction.typedef.acceptable_as_base_class = False



More information about the Pypy-commit mailing list