[pypy-svn] r79023 - pypy/branch/mapdict-without-jit/pypy/objspace/std

cfbolz at codespeak.net cfbolz at codespeak.net
Fri Nov 12 00:21:48 CET 2010


Author: cfbolz
Date: Fri Nov 12 00:21:46 2010
New Revision: 79023

Modified:
   pypy/branch/mapdict-without-jit/pypy/objspace/std/callmethod.py
Log:
grumble


Modified: pypy/branch/mapdict-without-jit/pypy/objspace/std/callmethod.py
==============================================================================
--- pypy/branch/mapdict-without-jit/pypy/objspace/std/callmethod.py	(original)
+++ pypy/branch/mapdict-without-jit/pypy/objspace/std/callmethod.py	Fri Nov 12 00:21:46 2010
@@ -61,7 +61,7 @@
                     f.pushvalue(w_descr)
                     f.pushvalue(w_obj)
                     if (space.config.objspace.std.withmapdict and
-                            not jit.we_are_jitted():
+                            not jit.we_are_jitted()):
                         # let mapdict cache stuff
                         LOOKUP_METHOD_mapdict_fill_cache_method(
                             f.getcode(), nameindex, w_obj, w_type, w_descr)



More information about the Pypy-commit mailing list