mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
Per the language summit, the optional fastpath imports should use from-import-star.
This commit is contained in:
parent
aa118103d7
commit
3476d1279f
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue