Commit 057dfddc authored by Jesus Cea's avatar Jesus Cea

In Python3.0, "test.test_support" is renamed to "test.support".

parent 3571fbfe
......@@ -356,7 +356,10 @@ except ImportError:
try:
from bsddb3 import test_support
except ImportError:
from test import test_support
if sys.version_info[0] < 3 :
from test import test_support
else :
from test import support as test_support
try:
......
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