From: Tim Peters Date: Tue, 9 Oct 2001 21:01:31 +0000 (+0000) Subject: Repair key stutter + auto-complete ugliness. X-Git-Tag: v2.2.1c1~1364 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e13cc92e6c2863a6724a93db0bcecdec7842c022;p=python Repair key stutter + auto-complete ugliness. --- diff --git a/Lib/profile.py b/Lib/profile.py index db4079093e..30f4dd4f0d 100755 --- a/Lib/profile.py +++ b/Lib/profile.py @@ -470,11 +470,11 @@ class Profile: saved_bias = self.bias self.bias = 0 try: - return self._callibrate_inner(m, verbose) + return self._calibrate_inner(m, verbose) finally: self.bias = saved_bias - def _callibrate_inner(self, m, verbose): + def _calibrate_inner(self, m, verbose): get_time = self.get_time # Set up a test case to be run with and without profiling. Include