Author: Armin Rigo <ar...@tunes.org>
Branch: reverse-debugger
Changeset: r94664:0242387b5ccf
Date: 2018-05-23 20:47 +0200
http://bitbucket.org/pypy/pypy/changeset/0242387b5ccf/

Log:    oops

diff --git a/pypy/interpreter/reverse_debugging.py 
b/pypy/interpreter/reverse_debugging.py
--- a/pypy/interpreter/reverse_debugging.py
+++ b/pypy/interpreter/reverse_debugging.py
@@ -707,7 +707,7 @@
             if kind == 'B':
                 add_breakpoint(name, i)
             elif kind == 'W':
-                code = interp_marshal.loads(space, space.newtext(name))
+                code = interp_marshal.loads(space, space.newbytes(name))
                 watch_progs.append((code, i, ''))
     dbstate.watch_progs = watch_progs[:]
 lambda_breakpoints = lambda: command_breakpoints
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to