commit | f7ba40b505989495c3585ed782070bdae56330ad | [log] [tgz] |
---|---|---|
author | Hai Shi <shihai1992@gmail.com> | Thu Jun 25 18:38:51 2020 +0800 |
committer | GitHub <noreply@github.com> | Thu Jun 25 12:38:51 2020 +0200 |
tree | b1b913a2100ba07c817e2c5d92b1b1537ab0f300 | |
parent | 5f190d2cc60cd82a604cbffb58b6ca8f40350a7a [diff] [blame] |
bpo-40275: Use new test.support helper submodules in tests (GH-20849)
diff --git a/Lib/test/test_ioctl.py b/Lib/test/test_ioctl.py index a287358..7b7067e 100644 --- a/Lib/test/test_ioctl.py +++ b/Lib/test/test_ioctl.py
@@ -1,6 +1,7 @@ import array import unittest -from test.support import import_module, get_attribute +from test.support import get_attribute +from test.support.import_helper import import_module import os, struct fcntl = import_module('fcntl') termios = import_module('termios')