From: Guido van Rossum Date: Wed, 22 Oct 2003 17:22:18 +0000 (+0000) Subject: Remove unneeded import. X-Git-Tag: v2.4a1~1387 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=38443c15137eb4c68535327fcfbc0e574fb51982;p=python Remove unneeded import. --- diff --git a/Lib/profile.py b/Lib/profile.py index f8d20251fa..5993442cea 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