diff options
author | Guido van Rossum <guido@python.org> | 2003-10-22 17:22:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-10-22 17:22:18 (GMT) |
commit | 38443c15137eb4c68535327fcfbc0e574fb51982 (patch) | |
tree | 5a940d7d6b521f997a955b7745b6d912aa886594 /Lib/profile.py | |
parent | 97aa32b467e6955d8b71648579b184e4a3172ca5 (diff) | |
download | cpython-38443c15137eb4c68535327fcfbc0e574fb51982.zip cpython-38443c15137eb4c68535327fcfbc0e574fb51982.tar.gz cpython-38443c15137eb4c68535327fcfbc0e574fb51982.tar.bz2 |
Remove unneeded import.
Diffstat (limited to 'Lib/profile.py')
-rwxr-xr-x | Lib/profile.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/profile.py b/Lib/profile.py index f8d2025..5993442 100755 --- a/Lib/profile.py +++ b/Lib/profile.py @@ -183,7 +183,6 @@ class Profile: # list (for performance). Note that we can't assume # the timer() result contains two values in all # cases. - import operator def get_time_timer(timer=timer, sum=sum): return sum(timer()) self.get_time = get_time_timer |