diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-09 21:01:31 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-09 21:01:31 (GMT) |
commit | e13cc92e6c2863a6724a93db0bcecdec7842c022 (patch) | |
tree | 1ef7e4324b1ebbf4227c04b4eaffe04e09a390d5 | |
parent | 8cd015c701196cb239e83b9c0058d65ebce976bb (diff) | |
download | cpython-e13cc92e6c2863a6724a93db0bcecdec7842c022.zip cpython-e13cc92e6c2863a6724a93db0bcecdec7842c022.tar.gz cpython-e13cc92e6c2863a6724a93db0bcecdec7842c022.tar.bz2 |
Repair key stutter + auto-complete ugliness.
-rwxr-xr-x | Lib/profile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/profile.py b/Lib/profile.py index db40790..30f4dd4 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 |