Commit 3662137d authored by Tres Seaver's avatar Tres Seaver

Fix conditional imports horked during unwind.

parent 7c769218
...@@ -137,7 +137,7 @@ except ImportError: ...@@ -137,7 +137,7 @@ except ImportError:
weightedUnionPy = _setop(_weightedUnion, IFSetPy) weightedUnionPy = _setop(_weightedUnion, IFSetPy)
try: try:
from _OIBTree import union from _OIBTree import weightedUnion
except ImportError: except ImportError:
weightedUnion = weightedUnionPy weightedUnion = weightedUnionPy
......
...@@ -137,13 +137,13 @@ except ImportError: ...@@ -137,13 +137,13 @@ except ImportError:
weightedUnionPy = _setop(_weightedUnion, IISetPy) weightedUnionPy = _setop(_weightedUnion, IISetPy)
try: try:
from _OIBTree import union from _IIBTree import weightedUnion
except ImportError: except ImportError:
weightedUnion = weightedUnionPy weightedUnion = weightedUnionPy
weightedIntersectionPy = _setop(_weightedIntersection, IISetPy) weightedIntersectionPy = _setop(_weightedIntersection, IISetPy)
try: try:
from _OIBTree import weightedIntersection from _IIBTree import weightedIntersection
except ImportError: except ImportError:
weightedIntersection = weightedIntersectionPy weightedIntersection = weightedIntersectionPy
......
...@@ -137,7 +137,7 @@ except ImportError: ...@@ -137,7 +137,7 @@ except ImportError:
weightedUnionPy = _setop(_weightedUnion, LFSetPy) weightedUnionPy = _setop(_weightedUnion, LFSetPy)
try: try:
from _OIBTree import union from _OIBTree import weightedUnion
except ImportError: except ImportError:
weightedUnion = weightedUnionPy weightedUnion = weightedUnionPy
......
...@@ -137,13 +137,13 @@ except ImportError: ...@@ -137,13 +137,13 @@ except ImportError:
weightedUnionPy = _setop(_weightedUnion, LLSetPy) weightedUnionPy = _setop(_weightedUnion, LLSetPy)
try: try:
from _OIBTree import union from _LLBTree import weightedUnion
except ImportError: except ImportError:
weightedUnion = weightedUnionPy weightedUnion = weightedUnionPy
weightedIntersectionPy = _setop(_weightedIntersection, LLSetPy) weightedIntersectionPy = _setop(_weightedIntersection, LLSetPy)
try: try:
from _OIBTree import weightedIntersection from _LLBTree import weightedIntersection
except ImportError: except ImportError:
weightedIntersection = weightedIntersectionPy weightedIntersection = weightedIntersectionPy
......
...@@ -130,7 +130,7 @@ except ImportError: ...@@ -130,7 +130,7 @@ except ImportError:
weightedUnionPy = _setop(_weightedUnion, OLSetPy) weightedUnionPy = _setop(_weightedUnion, OLSetPy)
try: try:
from _OLBTree import union from _OLBTree import weightedUnion
except ImportError: except ImportError:
weightedUnion = weightedUnionPy weightedUnion = weightedUnionPy
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment