diff options
author | Raymond Hettinger <python@rcn.com> | 2009-03-31 17:47:06 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-03-31 17:47:06 (GMT) |
commit | 3476d1279f469125c62bcea8a84ab65c1e271152 (patch) | |
tree | 6463ff214999519f7f5169b4496e48059c0c51f7 /Lib/bisect.py | |
parent | aa118103d747978d3905a29f889109b1631ffce9 (diff) | |
download | cpython-3476d1279f469125c62bcea8a84ab65c1e271152.zip cpython-3476d1279f469125c62bcea8a84ab65c1e271152.tar.gz cpython-3476d1279f469125c62bcea8a84ab65c1e271152.tar.bz2 |
Per the language summit, the optional fastpath imports should use from-import-star.
Diffstat (limited to 'Lib/bisect.py')
-rw-r--r-- | Lib/bisect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bisect.py b/Lib/bisect.py index fe84255..4a4d052 100644 --- a/Lib/bisect.py +++ b/Lib/bisect.py @@ -87,6 +87,6 @@ def bisect_left(a, x, lo=0, hi=None): # Overwrite above definitions with a fast C implementation try: - from _bisect import bisect_right, bisect_left, insort_left, insort_right, insort, bisect + from _bisect import * except ImportError: pass |