Author: Armin Rigo <[email protected]>
Branch:
Changeset: r65790:c70b14d46ab9
Date: 2013-07-29 16:35 +0200
http://bitbucket.org/pypy/pypy/changeset/c70b14d46ab9/
Log: Better docstring
diff --git a/rpython/translator/goal/targetjitstandalone.py
b/rpython/translator/goal/targetjitstandalone.py
--- a/rpython/translator/goal/targetjitstandalone.py
+++ b/rpython/translator/goal/targetjitstandalone.py
@@ -28,7 +28,9 @@
def entry_point(argv):
if len(argv) < 3:
- print "Usage: jitstandalone <number> <another number>"
+ print "Usage: jitstandalone <count1> <count2>"
+ print "runs a total of '2 * count1 * count2' iterations"
+ return 0
count1 = int(argv[1])
count2 = int(argv[2])
s = 0
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit