Skip to content

Commit

Permalink
Avoid direct imports from C extensions.
Browse files Browse the repository at this point in the history
A step toward PyPy support.
  • Loading branch information
tseaver committed May 10, 2013
1 parent f37f1c7 commit da0f330
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ZODB/fsIndex.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# integers.
import struct

from BTrees._fsBTree import fsBucket
from BTrees.fsBTree import fsBucket
from BTrees.OOBTree import OOBTree
import six

Expand Down
2 changes: 1 addition & 1 deletion src/ZODB/tests/testCache.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
objects in memory under the assumption that they may be used again.
"""

from persistent.cPickleCache import PickleCache
from persistent import Persistent
from persistent import PickleCache
from persistent.mapping import PersistentMapping
from ZODB.tests.MinPO import MinPO
from ZODB.utils import p64
Expand Down

0 comments on commit da0f330

Please sign in to comment.