diff options
author | Hai Shi <shihai1992@gmail.com> | 2020-06-30 13:46:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-30 13:46:06 (GMT) |
commit | 3ddc634cd5469550c0c2dc5a6051a70739995699 (patch) | |
tree | 5c4bba3b3ff821397ef129298a49f4b3f34c58a4 /Lib/test/test_poll.py | |
parent | 3fa4799c3f9d9de7cac30e5db3627e9e125b9ce5 (diff) | |
download | cpython-3ddc634cd5469550c0c2dc5a6051a70739995699.zip cpython-3ddc634cd5469550c0c2dc5a6051a70739995699.tar.gz cpython-3ddc634cd5469550c0c2dc5a6051a70739995699.tar.bz2 |
bpo-40275: Use new test.support helper submodules in tests (GH-21219)
Diffstat (limited to 'Lib/test/test_poll.py')
-rw-r--r-- | Lib/test/test_poll.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_poll.py b/Lib/test/test_poll.py index a14c69a..de62350 100644 --- a/Lib/test/test_poll.py +++ b/Lib/test/test_poll.py @@ -7,8 +7,10 @@ import select import threading import time import unittest -from test.support import TESTFN, run_unittest, cpython_only +from test.support import run_unittest, cpython_only from test.support import threading_helper +from test.support.os_helper import TESTFN + try: select.poll |