In Python3.0, "test.test_support" is renamed to "test.support".
This commit is contained in:
parent
3571fbfed7
commit
057dfddc88
|
@ -356,7 +356,10 @@ except ImportError:
|
|||
try:
|
||||
from bsddb3 import test_support
|
||||
except ImportError:
|
||||
if sys.version_info[0] < 3 :
|
||||
from test import test_support
|
||||
else :
|
||||
from test import support as test_support
|
||||
|
||||
|
||||
try:
|
||||
|
|
Loading…
Reference in New Issue