[pypy-commit] pypy vmprof-0.4.8: missing vmprof_ prefix

plan_rich pypy.commits at gmail.com
Wed Jun 7 06:59:53 EDT 2017


Author: Richard Plangger <planrichi at 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


More information about the pypy-commit mailing list