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

mwh at codespeak.net mwh at codespeak.net
Mon May 22 01:53:04 CEST 2006


Author: mwh
Date: Mon May 22 01:53:03 2006
New Revision: 27567

Modified:
   pypy/dist/pypy/rpython/llinterp.py
Log:
add a print to the implementation of op_debug_pdb()


Modified: pypy/dist/pypy/rpython/llinterp.py
==============================================================================
--- pypy/dist/pypy/rpython/llinterp.py	(original)
+++ pypy/dist/pypy/rpython/llinterp.py	Mon May 22 01:53:03 2006
@@ -415,6 +415,7 @@
         print
 
     def op_debug_pdb(self, *ll_args):
+        print "entering pbb...", ll_args
         import pdb
         pdb.set_trace()
 



More information about the Pypy-commit mailing list