Author: Armin Rigo <ar...@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:
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to