Per the language summit, the optional fastpath imports should use from-import-star.

This commit is contained in:
Raymond Hettinger 2009-03-31 17:51:51 +00:00
parent 92af5d9fec
commit 9dbc6706b0
1 changed files with 1 additions and 1 deletions

View File

@ -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