diff options
author | Raymond Hettinger <python@rcn.com> | 2009-03-31 17:51:51 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-03-31 17:51:51 (GMT) |
commit | 9dbc6706b00674b418c385a9e04b127f6f365385 (patch) | |
tree | 1ccce2ff06e1bbf5de26bf9a146f18a6beb50183 /Lib/bisect.py | |
parent | 92af5d9fec99d5a0caef391eabf55e425ec7e615 (diff) | |
download | cpython-9dbc6706b00674b418c385a9e04b127f6f365385.zip cpython-9dbc6706b00674b418c385a9e04b127f6f365385.tar.gz cpython-9dbc6706b00674b418c385a9e04b127f6f365385.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 |