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
022575e6
Commit
022575e6
authored
May 30, 2015
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #5633: Fixed timeit when the statement is a string and the setup is not.
parent
2a40a727
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
3 deletions
+13
-3
Lib/test/test_timeit.py
Lib/test/test_timeit.py
+7
-0
Lib/timeit.py
Lib/timeit.py
+4
-3
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_timeit.py
View file @
022575e6
...
...
@@ -124,6 +124,9 @@ class TestTimeit(unittest.TestCase):
def
test_timeit_callable_stmt
(
self
):
self
.
timeit
(
self
.
fake_callable_stmt
,
self
.
fake_setup
,
number
=
3
)
def
test_timeit_callable_setup
(
self
):
self
.
timeit
(
self
.
fake_stmt
,
self
.
fake_callable_setup
,
number
=
3
)
def
test_timeit_callable_stmt_and_setup
(
self
):
self
.
timeit
(
self
.
fake_callable_stmt
,
self
.
fake_callable_setup
,
number
=
3
)
...
...
@@ -173,6 +176,10 @@ class TestTimeit(unittest.TestCase):
self
.
repeat
(
self
.
fake_callable_stmt
,
self
.
fake_setup
,
repeat
=
3
,
number
=
5
)
def
test_repeat_callable_setup
(
self
):
self
.
repeat
(
self
.
fake_stmt
,
self
.
fake_callable_setup
,
repeat
=
3
,
number
=
5
)
def
test_repeat_callable_stmt_and_setup
(
self
):
self
.
repeat
(
self
.
fake_callable_stmt
,
self
.
fake_callable_setup
,
repeat
=
3
,
number
=
5
)
...
...
Lib/timeit.py
View file @
022575e6
...
...
@@ -65,7 +65,7 @@ default_timer = time.perf_counter
# in Timer.__init__() depend on setup being indented 4 spaces and stmt
# being indented 8 spaces.
template
=
"""
def inner(_it, _timer):
def inner(_it, _timer
{init}
):
{setup}
_t0 = _timer()
for _i in _it:
...
...
@@ -119,9 +119,10 @@ class Timer:
stmt
=
reindent
(
stmt
,
8
)
if
isinstance
(
setup
,
str
):
setup
=
reindent
(
setup
,
4
)
src
=
template
.
format
(
stmt
=
stmt
,
setup
=
setup
)
src
=
template
.
format
(
stmt
=
stmt
,
setup
=
setup
,
init
=
''
)
elif
callable
(
setup
):
src
=
template
.
format
(
stmt
=
stmt
,
setup
=
'_setup()'
)
src
=
template
.
format
(
stmt
=
stmt
,
setup
=
'_setup()'
,
init
=
', _setup=_setup'
)
ns
[
'_setup'
]
=
setup
else
:
raise
ValueError
(
"setup is neither a string nor callable"
)
...
...
Misc/NEWS
View file @
022575e6
...
...
@@ -60,6 +60,8 @@ Core and Builtins
Library
-------
- Issue #5633: Fixed timeit when the statement is a string and the setup is not.
- Issue #24326: Fixed audioop.ratecv() with non-default weightB argument.
Original patch by David Moore.
...
...
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