Commit da0f3308 authored by Tres Seaver's avatar Tres Seaver

Avoid direct imports from C extensions.

A step toward PyPy support.
parent f37f1c70
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
# integers. # integers.
import struct import struct
from BTrees._fsBTree import fsBucket from BTrees.fsBTree import fsBucket
from BTrees.OOBTree import OOBTree from BTrees.OOBTree import OOBTree
import six import six
......
...@@ -18,8 +18,8 @@ purposes. It acts like a memo for unpickling. It also keeps recent ...@@ -18,8 +18,8 @@ purposes. It acts like a memo for unpickling. It also keeps recent
objects in memory under the assumption that they may be used again. objects in memory under the assumption that they may be used again.
""" """
from persistent.cPickleCache import PickleCache
from persistent import Persistent from persistent import Persistent
from persistent import PickleCache
from persistent.mapping import PersistentMapping from persistent.mapping import PersistentMapping
from ZODB.tests.MinPO import MinPO from ZODB.tests.MinPO import MinPO
from ZODB.utils import p64 from ZODB.utils import p64
......
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