diff options
author | Hai Shi <shihai1992@gmail.com> | 2020-08-07 15:18:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-07 15:18:38 (GMT) |
commit | 598a951844122678de2596dbc1e0e09e2be65fd2 (patch) | |
tree | 23e7f7765fd015e838382e443f39269a2745fbc4 /Lib/test/test_source_encoding.py | |
parent | 46e19b61d31ba99f049258efa4ff1334856a3643 (diff) | |
download | cpython-598a951844122678de2596dbc1e0e09e2be65fd2.zip cpython-598a951844122678de2596dbc1e0e09e2be65fd2.tar.gz cpython-598a951844122678de2596dbc1e0e09e2be65fd2.tar.bz2 |
bpo-40275: Use new test.support helper submodules in tests (GH-21764)
Diffstat (limited to 'Lib/test/test_source_encoding.py')
-rw-r--r-- | Lib/test/test_source_encoding.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_source_encoding.py b/Lib/test/test_source_encoding.py index 5ca4346..b410c03 100644 --- a/Lib/test/test_source_encoding.py +++ b/Lib/test/test_source_encoding.py @@ -1,7 +1,9 @@ # -*- coding: koi8-r -*- import unittest -from test.support import TESTFN, unlink, unload, rmtree, script_helper, captured_stdout +from test.support import script_helper, captured_stdout +from test.support.os_helper import TESTFN, unlink, rmtree +from test.support.import_helper import unload import importlib import os import sys |