diff options
author | Raymond Hettinger <python@rcn.com> | 2003-04-06 09:01:11 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-04-06 09:01:11 (GMT) |
commit | ff41c48a77b7d1411ce97190c8b8405bdaa261e1 (patch) | |
tree | 94763135f421e0c32c6356e083c4d3521e43cd67 /Lib/test/reperf.py | |
parent | 50c61d5a6c2c551b31270d78b9e53ccef3fdf7a8 (diff) | |
download | cpython-ff41c48a77b7d1411ce97190c8b8405bdaa261e1.zip cpython-ff41c48a77b7d1411ce97190c8b8405bdaa261e1.tar.gz cpython-ff41c48a77b7d1411ce97190c8b8405bdaa261e1.tar.bz2 |
SF patch #701494: more apply removals
Diffstat (limited to 'Lib/test/reperf.py')
-rw-r--r-- | Lib/test/reperf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/reperf.py b/Lib/test/reperf.py index 6ad9a08..68ac40f 100644 --- a/Lib/test/reperf.py +++ b/Lib/test/reperf.py @@ -12,7 +12,7 @@ def timefunc(n, func, *args, **kw): t0 = time.clock() try: for i in range(n): - result = apply(func, args, kw) + result = func(*args, **kw) return result finally: t1 = time.clock() |