summaryrefslogtreecommitdiff
path: root/Lib/timeit.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2011-10-28 14:45:05 +0200
committerFlorent Xicluna <florent.xicluna@gmail.com>2011-10-28 14:45:05 +0200
commitdb775c897124887001bbe4963f159df1ce3cec33 (patch)
treecbd2c4495dc44e3a10037857210fae7d7f3ee035 /Lib/timeit.py
parent0bdf20a0985c41ee18479cf37f29d99928f9e30b (diff)
downloadcpython-db775c897124887001bbe4963f159df1ce3cec33.tar.gz
Closes #13258: Use callable() built-in in the standard library.
Diffstat (limited to 'Lib/timeit.py')
-rw-r--r--Lib/timeit.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/timeit.py b/Lib/timeit.py
index 461c891070..1ae59e0ccc 100644
--- a/Lib/timeit.py
+++ b/Lib/timeit.py
@@ -127,7 +127,7 @@ class Timer:
if isinstance(setup, str):
setup = reindent(setup, 4)
src = template % {'stmt': stmt, 'setup': setup}
- elif hasattr(setup, '__call__'):
+ elif callable(setup):
src = template % {'stmt': stmt, 'setup': '_setup()'}
ns['_setup'] = setup
else:
@@ -136,13 +136,13 @@ class Timer:
code = compile(src, dummy_src_name, "exec")
exec(code, globals(), ns)
self.inner = ns["inner"]
- elif hasattr(stmt, '__call__'):
+ elif callable(stmt):
self.src = None
if isinstance(setup, str):
_setup = setup
def setup():
exec(_setup, globals(), ns)
- elif not hasattr(setup, '__call__'):
+ elif not callable(setup):
raise ValueError("setup is neither a string nor callable")
self.inner = _template_func(setup, stmt)
else: