diff options
author | Hai Shi <shihai1992@gmail.com> | 2020-08-03 16:49:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-03 16:49:18 (GMT) |
commit | 4660597b51b3d14ce6269d0ed865ab7e22c6ae1f (patch) | |
tree | 00ab23106abb1d0023e261685dc4f2077002aabd /Lib/test/test_queue.py | |
parent | bb0424b122e3d222a558bd4177ce37befd3e0347 (diff) | |
download | cpython-4660597b51b3d14ce6269d0ed865ab7e22c6ae1f.zip cpython-4660597b51b3d14ce6269d0ed865ab7e22c6ae1f.tar.gz cpython-4660597b51b3d14ce6269d0ed865ab7e22c6ae1f.tar.bz2 |
bpo-40275: Use new test.support helper submodules in tests (GH-21448)
Diffstat (limited to 'Lib/test/test_queue.py')
-rw-r--r-- | Lib/test/test_queue.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Lib/test/test_queue.py b/Lib/test/test_queue.py index 7b23699..508b739 100644 --- a/Lib/test/test_queue.py +++ b/Lib/test/test_queue.py @@ -6,11 +6,12 @@ import threading import time import unittest import weakref -from test import support +from test.support import import_helper from test.support import threading_helper -py_queue = support.import_fresh_module('queue', blocked=['_queue']) -c_queue = support.import_fresh_module('queue', fresh=['_queue']) + +py_queue = import_helper.import_fresh_module('queue', blocked=['_queue']) +c_queue = import_helper.import_fresh_module('queue', fresh=['_queue']) need_c_queue = unittest.skipUnless(c_queue, "No _queue module found") QUEUE_SIZE = 5 |