[pypy-commit] pypy default: (rguillebert, arigo) Add "--jit off" to the help.

arigo noreply at buildbot.pypy.org
Sun Jul 3 09:40:39 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r45305:1711d58f10f4
Date: 2011-07-02 19:46 +0200
http://bitbucket.org/pypy/pypy/changeset/1711d58f10f4/

Log:	(rguillebert, arigo) Add "--jit off" to the help.

diff --git a/pypy/translator/goal/app_main.py b/pypy/translator/goal/app_main.py
--- a/pypy/translator/goal/app_main.py
+++ b/pypy/translator/goal/app_main.py
@@ -143,6 +143,7 @@
     for key, value in items:
         print '  --jit %s=N %slow-level JIT parameter (default %s)' % (
             key, ' '*(18-len(key)), value)
+    print '  --jit off                  turn off the JIT'
 
 def print_version(*args):
     print "Python", sys.version


More information about the pypy-commit mailing list