summaryrefslogtreecommitdiffstats
path: root/Lib/profile.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/profile.py')
-rwxr-xr-xLib/profile.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/profile.py b/Lib/profile.py
index 7c4b5a6..f8d2025 100755
--- a/Lib/profile.py
+++ b/Lib/profile.py
@@ -184,9 +184,8 @@ class Profile:
# the timer() result contains two values in all
# cases.
import operator
- def get_time_timer(timer=timer,
- reduce=reduce, reducer=operator.add):
- return reduce(reducer, timer(), 0)
+ def get_time_timer(timer=timer, sum=sum):
+ return sum(timer())
self.get_time = get_time_timer
self.t = self.get_time()
self.simulate_call('profiler')