Author: Richard Plangger <planri...@gmail.com> Branch: vmprof-0.4.8 Changeset: r91557:876d67108576 Date: 2017-06-07 06:58 -0400 http://bitbucket.org/pypy/pypy/changeset/876d67108576/
Log: missing vmprof_ prefix diff --git a/pypy/module/_vmprof/interp_vmprof.py b/pypy/module/_vmprof/interp_vmprof.py --- a/pypy/module/_vmprof/interp_vmprof.py +++ b/pypy/module/_vmprof/interp_vmprof.py @@ -98,8 +98,8 @@ return space.newtext(path) def stop_sampling(space): - return space.newint(rvmprof.stop_sampling(space)) + return space.newint(rvmprof.vmprof_stop_sampling(space)) def start_sampling(space): - rvmprof.start_sampling(space) + rvmprof.vmprof_start_sampling(space) return space.w_None _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit