mirror of
https://github.com/python/cpython.git
synced 2026-01-04 06:22:20 +00:00
In Python3.0, "test.test_support" is renamed to "test.support".
This commit is contained in:
parent
cd3158db2f
commit
f82b856b2a
1 changed files with 4 additions and 1 deletions
|
|
@ -356,7 +356,10 @@ def do_proxy_db_py3k(flag) :
|
|||
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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue