diff options
author | Steve Holden <steve@holdenweb.com> | 2006-05-26 22:33:20 (GMT) |
---|---|---|
committer | Steve Holden <steve@holdenweb.com> | 2006-05-26 22:33:20 (GMT) |
commit | a4ebed8071a9642abb8660b2d7b272fbd8c1468d (patch) | |
tree | c425d831b636213a45c8e7052727f1eae2567b59 /Tools | |
parent | 7db3d38d4153c8cb822e133f81db073c32432991 (diff) | |
download | cpython-a4ebed8071a9642abb8660b2d7b272fbd8c1468d.zip cpython-a4ebed8071a9642abb8660b2d7b272fbd8c1468d.tar.gz cpython-a4ebed8071a9642abb8660b2d7b272fbd8c1468d.tar.bz2 |
Update help text and documentaition.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/pybench/README | 11 | ||||
-rwxr-xr-x | Tools/pybench/pybench.py | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/Tools/pybench/README b/Tools/pybench/README index 634e41b..7d7eb8c 100644 --- a/Tools/pybench/README +++ b/Tools/pybench/README @@ -46,6 +46,9 @@ Options and default settings: -w arg set warp factor to arg (20) -d hide noise in compares (0) --no-gc disable garbage collection (0) + --no-syscheck "disable" sys check interval (set to sys.maxint) (0) + -t arg tests containing substring () + -C arg number of calibration runs (20) -v generate verbose output -h show this help text --help show this help text @@ -366,6 +369,14 @@ symbols defined in that module for subclasses of pybench.Test and automatically add them to the benchmark suite. +Breaking Comparability +---------------------- + +If a change is made to any individual test that means it is no +longer strcitly comparable with previous runs, the '.version' class +variable should be updated. Therefafter, comparisons with previous +versions of the test will list as "n/a" to reflect the change. + Have fun, -- Marc-Andre Lemburg diff --git a/Tools/pybench/pybench.py b/Tools/pybench/pybench.py index 6167d12..e0110d0 100755 --- a/Tools/pybench/pybench.py +++ b/Tools/pybench/pybench.py @@ -382,7 +382,7 @@ class PyBenchCmdline(Application): SwitchOption('--no-syscheck', '"disable" sys check interval (set to sys.maxint)', 0), ArgumentOption('-t', 'tests containing substring', ''), - ArgumentOption('-C', 'number of calibration runs (default 20)', 20) + ArgumentOption('-C', 'number of calibration runs', 20) ] about = """\ |