Author: Antonio Cuni <[email protected]>
Branch: x86-dump-labels
Changeset: r44116:8a13e5626c13
Date: 2011-05-12 15:06 +0200
http://bitbucket.org/pypy/pypy/changeset/8a13e5626c13/

Log:    Don't use '#', else oparser complains

diff --git a/pypy/jit/metainterp/logger.py b/pypy/jit/metainterp/logger.py
--- a/pypy/jit/metainterp/logger.py
+++ b/pypy/jit/metainterp/logger.py
@@ -119,7 +119,7 @@
                         '(' + args + ')' + fail_args)
         if ops_offset and None in ops_offset:
             offset = ops_offset[None]
-            debug_print("+%d: # --end of the loop--" % offset)
+            debug_print("+%d: --end of the loop--" % offset)
 
 
 def int_could_be_an_address(x):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to