summaryrefslogtreecommitdiff
path: root/Lib/bisect.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/bisect.py')
-rw-r--r--Lib/bisect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bisect.py b/Lib/bisect.py
index fe84255590..4a4d05255e 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