Author: Armin Rigo <ar...@tunes.org>
Branch: reverse-debugger
Changeset: r85564:f14a0ab01aa2
Date: 2016-07-05 17:04 +0200
http://bitbucket.org/pypy/pypy/changeset/f14a0ab01aa2/

Log:    minor fixes

diff --git a/rpython/translator/revdb/interact.py 
b/rpython/translator/revdb/interact.py
--- a/rpython/translator/revdb/interact.py
+++ b/rpython/translator/revdb/interact.py
@@ -162,7 +162,7 @@
                 kind, name = self._bp_kind(num)
                 print '\t%s %d: %s' % (kind, num, name)
         else:
-            print 'no breakpoints.'
+            print 'no breakpoints/watchpoints.'
     cmd_info_watchpoints = cmd_info_breakpoints
 
     def move_forward(self, steps):
diff --git a/rpython/translator/revdb/process.py 
b/rpython/translator/revdb/process.py
--- a/rpython/translator/revdb/process.py
+++ b/rpython/translator/revdb/process.py
@@ -203,6 +203,7 @@
                 if nid == new_nid:
                     pgroup.all_printed_objects_lst.append(uid)
                 sys.stdout.write('$%d = ' % nid)
+                sys.stdout.flush()
             else:
                 print >> sys.stderr, "unexpected %r" % (msg,)
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to