[Python-checkins] r70844 - python/trunk/Lib/bisect.py

raymond.hettinger python-checkins at python.org
Tue Mar 31 19:47:06 CEST 2009


Author: raymond.hettinger
Date: Tue Mar 31 19:47:06 2009
New Revision: 70844

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

Modified:
   python/trunk/Lib/bisect.py

Modified: python/trunk/Lib/bisect.py
==============================================================================
--- python/trunk/Lib/bisect.py	(original)
+++ python/trunk/Lib/bisect.py	Tue Mar 31 19:47:06 2009
@@ -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


More information about the Python-checkins mailing list