bpo-40275: Use new test.support helper submodules in tests (GH-21169)

This commit is contained in:
Hai Shi 2020-06-30 21:46:31 +08:00 committed by GitHub
parent 3ddc634cd5
commit 0c4f0f3b29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 348 additions and 319 deletions

View file

@ -9,7 +9,11 @@ from test import support
import unittest
from test.support import (
_4G, TESTFN, import_module, bigmemtest, run_unittest, unlink
_4G, bigmemtest, run_unittest
)
from test.support.import_helper import import_module
from test.support.os_helper import (
TESTFN, unlink
)
lzma = import_module("lzma")