Per the language summit, the optional fastpath imports should use from-import-star.
This commit is contained in:
parent
92af5d9fec
commit
9dbc6706b0
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue