diff options
author | Guido van Rossum <guido@python.org> | 1998-03-26 20:56:10 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-03-26 20:56:10 (GMT) |
commit | 8ca842066c947179892d50bf17b57943e7e5cd6b (patch) | |
tree | 36f095712bb110abdb9d129e8a59a09e4ce8d087 /Lib/bisect.py | |
parent | fa6e254b34b7a0f85cb34a9fd99b5a6400714940 (diff) | |
download | cpython-8ca842066c947179892d50bf17b57943e7e5cd6b.zip cpython-8ca842066c947179892d50bf17b57943e7e5cd6b.tar.gz cpython-8ca842066c947179892d50bf17b57943e7e5cd6b.tar.bz2 |
A few lines were indented using spaces instead of tabs -- fix them.
Diffstat (limited to 'Lib/bisect.py')
-rw-r--r-- | Lib/bisect.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/bisect.py b/Lib/bisect.py index 4d92bc8..5fbc4ef 100644 --- a/Lib/bisect.py +++ b/Lib/bisect.py @@ -6,7 +6,7 @@ def insort(a, x, lo=0, hi=None): if hi is None: hi = len(a) - while lo < hi: + while lo < hi: mid = (lo+hi)/2 if x < a[mid]: hi = mid else: lo = mid+1 @@ -18,7 +18,7 @@ def insort(a, x, lo=0, hi=None): def bisect(a, x, lo=0, hi=None): if hi is None: hi = len(a) - while lo < hi: + while lo < hi: mid = (lo+hi)/2 if x < a[mid]: hi = mid else: lo = mid+1 |