diff options
author | Hai Shi <shihai1992@gmail.com> | 2020-07-06 09:12:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-06 09:12:49 (GMT) |
commit | 883bc638335a57a6e6a6344c2fc132c4f9a0ec42 (patch) | |
tree | 1dd74a4aeeb80d8b85ff18de700763199a7bc1bc /Lib/test/test_fileio.py | |
parent | 9ce8132e1f2339cfe116dfd4795574182c2245b4 (diff) | |
download | cpython-883bc638335a57a6e6a6344c2fc132c4f9a0ec42.zip cpython-883bc638335a57a6e6a6344c2fc132c4f9a0ec42.tar.gz cpython-883bc638335a57a6e6a6344c2fc132c4f9a0ec42.tar.bz2 |
bpo-40275: Use new test.support helper submodules in tests (GH-21314)
Diffstat (limited to 'Lib/test/test_fileio.py')
-rw-r--r-- | Lib/test/test_fileio.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_fileio.py b/Lib/test/test_fileio.py index 26e4500..ff611a9 100644 --- a/Lib/test/test_fileio.py +++ b/Lib/test/test_fileio.py @@ -9,8 +9,9 @@ from array import array from weakref import proxy from functools import wraps -from test.support import (TESTFN, TESTFN_UNICODE, check_warnings, run_unittest, - make_bad_fd, cpython_only, swap_attr) +from test.support import (run_unittest, cpython_only, swap_attr) +from test.support.os_helper import (TESTFN, TESTFN_UNICODE, make_bad_fd) +from test.support.warnings_helper import check_warnings from collections import UserList import _io # C implementation of io |