Author: Anton Gulenko <anton.gule...@googlemail.com> Branch: storage Changeset: r873:d033d87d9e19 Date: 2014-07-07 17:33 +0200 http://bitbucket.org/pypy/lang-smalltalk/changeset/d033d87d9e19/
Log: Removed forgotten pdb breakpoints. diff --git a/spyvm/primitives.py b/spyvm/primitives.py --- a/spyvm/primitives.py +++ b/spyvm/primitives.py @@ -1385,13 +1385,11 @@ @expose_primitive(RESUME, unwrap_spec=[object], no_result=True, clean_stack=False) def func(interp, s_frame, w_rcvr): - import pdb; pdb.set_trace() assert_class(interp, w_rcvr, interp.space.w_Process) wrapper.ProcessWrapper(interp.space, w_rcvr).resume(s_frame) @expose_primitive(SUSPEND, unwrap_spec=[object], no_result=True, clean_stack=False) def func(interp, s_frame, w_rcvr): - import pdb; pdb.set_trace() assert_class(interp, w_rcvr, interp.space.w_Process) wrapper.ProcessWrapper(interp.space, w_rcvr).suspend(s_frame) _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit