[pypy-svn] r25259 - pypy/dist/pypy/rpython

arigo at codespeak.net arigo at codespeak.net
Mon Apr 3 17:08:03 CEST 2006


Author: arigo
Date: Mon Apr  3 17:08:01 2006
New Revision: 25259

Modified:
   pypy/dist/pypy/rpython/llinterp.py
Log:
Saner warning message.


Modified: pypy/dist/pypy/rpython/llinterp.py
==============================================================================
--- pypy/dist/pypy/rpython/llinterp.py	(original)
+++ pypy/dist/pypy/rpython/llinterp.py	Mon Apr  3 17:08:01 2006
@@ -406,7 +406,7 @@
             if hasattr(obj, 'graph'):
                 assert obj.graph in graphs 
         else:
-            print "this should ideally not happen", f, graphs, args
+            log.warn("op_indirect_call with graphs=None:", f)
         return self.op_direct_call(f, *args)
 
     def op_malloc(self, obj):



More information about the Pypy-commit mailing list