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
c9d77b24
Commit
c9d77b24
authored
May 01, 2012
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add an option to timeit to use time.process_time() and mark -t and -c as deprecated.
parent
1503eed6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
Lib/timeit.py
Lib/timeit.py
+9
-5
No files found.
Lib/timeit.py
View file @
c9d77b24
...
...
@@ -9,14 +9,15 @@ the Python Cookbook, published by O'Reilly.
Library usage: see the Timer class.
Command line usage:
python timeit.py [-n N] [-r N] [-s S] [-t] [-c] [-h] [--] [statement]
python timeit.py [-n N] [-r N] [-s S] [-t] [-c] [-
p] [-
h] [--] [statement]
Options:
-n/--number N: how many times to execute 'statement' (default: see below)
-r/--repeat N: how many times to repeat the timer (default 3)
-s/--setup S: statement to be executed once initially (default 'pass')
-t/--time: use time.time()
-c/--clock: use time.clock()
-p/--process: use time.process_time() (default is time.perf_counter())
-t/--time: use time.time() (deprecated)
-c/--clock: use time.clock() (deprecated)
-v/--verbose: print raw timing results; repeat for more digits precision
-h/--help: print this usage message and exit
--: separate options from statement, use when statement starts with -
...
...
@@ -249,9 +250,10 @@ def main(args=None, *, _wrap_timer=None):
args
=
sys
.
argv
[
1
:]
import
getopt
try
:
opts
,
args
=
getopt
.
getopt
(
args
,
"n:s:r:tcvh"
,
opts
,
args
=
getopt
.
getopt
(
args
,
"n:s:r:tc
p
vh"
,
[
"number="
,
"setup="
,
"repeat="
,
"time"
,
"clock"
,
"verbose"
,
"help"
])
"time"
,
"clock"
,
"process"
,
"verbose"
,
"help"
])
except
getopt
.
error
as
err
:
print
(
err
)
print
(
"use -h/--help for command line help"
)
...
...
@@ -276,6 +278,8 @@ def main(args=None, *, _wrap_timer=None):
timer
=
time
.
time
if
o
in
(
"-c"
,
"--clock"
):
timer
=
time
.
clock
if
o
in
(
"-p"
,
"--process"
):
timer
=
time
.
process_time
if
o
in
(
"-v"
,
"--verbose"
):
if
verbose
:
precision
+=
1
...
...
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