[pypy-svn] r55695 - pypy/dist/pypy/interpreter

fijal at codespeak.net fijal at codespeak.net
Mon Jun 9 18:58:00 CEST 2008


Author: fijal
Date: Mon Jun  9 18:57:57 2008
New Revision: 55695

Modified:
   pypy/dist/pypy/interpreter/executioncontext.py
Log:
Small decluttering - don't get result which we never use


Modified: pypy/dist/pypy/interpreter/executioncontext.py
==============================================================================
--- pypy/dist/pypy/interpreter/executioncontext.py	(original)
+++ pypy/dist/pypy/interpreter/executioncontext.py	Mon Jun  9 18:57:57 2008
@@ -6,9 +6,9 @@
     return Stack()
 
 def app_profile_call(space, w_callable, frame, event, w_arg):
-    w_result = space.call_function(w_callable,
-                                   space.wrap(frame),
-                                   space.wrap(event), w_arg)
+    space.call_function(w_callable,
+                        space.wrap(frame),
+                        space.wrap(event), w_arg)
 
 class ExecutionContext:
     """An ExecutionContext holds the state of an execution thread



More information about the Pypy-commit mailing list