merge error: test.test_support is now test.support

This commit is contained in:
Amaury Forgeot d'Arc 2008-06-19 22:03:50 +00:00
parent 9196dc66ae
commit 620626b160
1 changed files with 1 additions and 1 deletions

View File

@ -1759,7 +1759,7 @@ def test_main(run=None):
try:
lock = multiprocessing.RLock()
except OSError:
from test.test_support import TestSkipped
from test.support import TestSkipped
raise TestSkipped("OSError raises on RLock creation, see issue 3111!")
if run is None: