[pypy-svn] r68847 - pypy/trunk/pypy/objspace

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Oct 29 16:01:28 CET 2009


Author: cfbolz
Date: Thu Oct 29 16:01:27 2009
New Revision: 68847

Modified:
   pypy/trunk/pypy/objspace/descroperation.py
Log:
Restore accidentally killed comment. Thanks Armin


Modified: pypy/trunk/pypy/objspace/descroperation.py
==============================================================================
--- pypy/trunk/pypy/objspace/descroperation.py	(original)
+++ pypy/trunk/pypy/objspace/descroperation.py	Thu Oct 29 16:01:27 2009
@@ -91,6 +91,8 @@
         descr = space.interpclass_w(w_descr)
         # a special case for performance and to avoid infinite recursion
         if isinstance(descr, Function):
+            # the fastcall paths are purely for performance, but the resulting
+            # increase of speed is huge
             return descr.funccall(w_obj, *args_w)
         else:
             args = Arguments(space, list(args_w))



More information about the Pypy-commit mailing list