From f7ba40b505989495c3585ed782070bdae56330ad Mon Sep 17 00:00:00 2001 From: Hai Shi Date: Thu, 25 Jun 2020 18:38:51 +0800 Subject: bpo-40275: Use new test.support helper submodules in tests (GH-20849) --- Lib/test/test_ioctl.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Lib/test/test_ioctl.py') diff --git a/Lib/test/test_ioctl.py b/Lib/test/test_ioctl.py index a2873582cf..7b7067eb7b 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') -- cgit v1.2.1