Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
BTrees
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
BTrees
Commits
3662137d
Commit
3662137d
authored
Nov 09, 2012
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix conditional imports horked during unwind.
parent
7c769218
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
BTrees/IFBTree.py
BTrees/IFBTree.py
+1
-1
BTrees/IIBTree.py
BTrees/IIBTree.py
+2
-2
BTrees/LFBTree.py
BTrees/LFBTree.py
+1
-1
BTrees/LLBTree.py
BTrees/LLBTree.py
+2
-2
BTrees/OLBTree.py
BTrees/OLBTree.py
+1
-1
No files found.
BTrees/IFBTree.py
View file @
3662137d
...
...
@@ -137,7 +137,7 @@ except ImportError:
weightedUnionPy
=
_setop
(
_weightedUnion
,
IFSetPy
)
try
:
from
_OIBTree
import
u
nion
from
_OIBTree
import
weightedU
nion
except
ImportError
:
weightedUnion
=
weightedUnionPy
...
...
BTrees/IIBTree.py
View file @
3662137d
...
...
@@ -137,13 +137,13 @@ except ImportError:
weightedUnionPy
=
_setop
(
_weightedUnion
,
IISetPy
)
try
:
from
_
OIBTree
import
u
nion
from
_
IIBTree
import
weightedU
nion
except
ImportError
:
weightedUnion
=
weightedUnionPy
weightedIntersectionPy
=
_setop
(
_weightedIntersection
,
IISetPy
)
try
:
from
_
O
IBTree
import
weightedIntersection
from
_
I
IBTree
import
weightedIntersection
except
ImportError
:
weightedIntersection
=
weightedIntersectionPy
...
...
BTrees/LFBTree.py
View file @
3662137d
...
...
@@ -137,7 +137,7 @@ except ImportError:
weightedUnionPy
=
_setop
(
_weightedUnion
,
LFSetPy
)
try
:
from
_OIBTree
import
u
nion
from
_OIBTree
import
weightedU
nion
except
ImportError
:
weightedUnion
=
weightedUnionPy
...
...
BTrees/LLBTree.py
View file @
3662137d
...
...
@@ -137,13 +137,13 @@ except ImportError:
weightedUnionPy
=
_setop
(
_weightedUnion
,
LLSetPy
)
try
:
from
_
OIBTree
import
u
nion
from
_
LLBTree
import
weightedU
nion
except
ImportError
:
weightedUnion
=
weightedUnionPy
weightedIntersectionPy
=
_setop
(
_weightedIntersection
,
LLSetPy
)
try
:
from
_
OI
BTree
import
weightedIntersection
from
_
LL
BTree
import
weightedIntersection
except
ImportError
:
weightedIntersection
=
weightedIntersectionPy
...
...
BTrees/OLBTree.py
View file @
3662137d
...
...
@@ -130,7 +130,7 @@ except ImportError:
weightedUnionPy
=
_setop
(
_weightedUnion
,
OLSetPy
)
try
:
from
_OLBTree
import
u
nion
from
_OLBTree
import
weightedU
nion
except
ImportError
:
weightedUnion
=
weightedUnionPy
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment