[pypy-commit] pypy vmprof: API change

arigo noreply at buildbot.pypy.org
Fri Apr 3 19:18:30 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: vmprof
Changeset: r76705:cd020116336a
Date: 2015-04-03 19:18 +0200
http://bitbucket.org/pypy/pypy/changeset/cd020116336a/

Log:	API change

diff --git a/rpython/bin/rpython-vmprof b/rpython/bin/rpython-vmprof
--- a/rpython/bin/rpython-vmprof
+++ b/rpython/bin/rpython-vmprof
@@ -19,7 +19,7 @@
 
 import _vmprof, subprocess
 x = subprocess.Popen('gzip > vmprof.log.gz', shell=True, stdin=subprocess.PIPE)
-_vmprof.enable(x.stdin.fileno(), 1000)
+_vmprof.enable(x.stdin.fileno(), 0.001)
 try:
     main()
 finally:


More information about the pypy-commit mailing list