Commit d4afa48c authored by Julien Muchembled's avatar Julien Muchembled

New ZODB uses zodbpickle instead of cPickle

parent 7b8d5045
......@@ -26,7 +26,11 @@
#
##############################################################################
from cPickle import PicklingError
try:
from ZODB._compat import cPickle
PicklingError = cPickle.PicklingError
except ImportError: # BBB: ZODB < 4
from cPickle import PicklingError
from Acquisition import aq_base
from Products.ERP5Type.Accessor.Constant import PropertyGetter as \
PropertyConstantGetter
......
......@@ -26,7 +26,10 @@
#
##############################################################################
import cPickle
try:
from ZODB._compat import cPickle
except ImportError: # BBB: ZODB < 4
import cPickle
import unittest
import sys
......
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