Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
a4ebed80
Commit
a4ebed80
authored
May 26, 2006
by
Steve Holden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update help text and documentaition.
parent
7db3d38d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
Tools/pybench/README
Tools/pybench/README
+11
-0
Tools/pybench/pybench.py
Tools/pybench/pybench.py
+1
-1
No files found.
Tools/pybench/README
View file @
a4ebed80
...
...
@@ -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
...
...
Tools/pybench/pybench.py
View file @
a4ebed80
...
...
@@ -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
=
"""
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment