Per the language summit, the optional fastpath imports should use from-import-star.
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 @@
 
 # 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