summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_mmap.py
diff options
context:
space:
mode:
authorHai Shi <shihai1992@gmail.com>2020-08-03 16:41:24 (GMT)
committerGitHub <noreply@github.com>2020-08-03 16:41:24 (GMT)
commita7f5d93bb6906d0f999248b47295d3a59b130f4d (patch)
treea0dc5043ecc7a4250902f8d14c802382b1c94b8a /Lib/test/test_mmap.py
parent488512bf4953d856fcb049a05060a450af52fcdc (diff)
downloadcpython-a7f5d93bb6906d0f999248b47295d3a59b130f4d.zip
cpython-a7f5d93bb6906d0f999248b47295d3a59b130f4d.tar.gz
cpython-a7f5d93bb6906d0f999248b47295d3a59b130f4d.tar.bz2
bpo-40275: Use new test.support helper submodules in tests (GH-21449)
Diffstat (limited to 'Lib/test/test_mmap.py')
-rw-r--r--Lib/test/test_mmap.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py
index 5400f25..8f34c18 100644
--- a/Lib/test/test_mmap.py
+++ b/Lib/test/test_mmap.py
@@ -1,5 +1,6 @@
-from test.support import (TESTFN, import_module, unlink,
- requires, _2G, _4G, gc_collect, cpython_only)
+from test.support import (requires, _2G, _4G, gc_collect, cpython_only)
+from test.support.import_helper import import_module
+from test.support.os_helper import TESTFN, unlink
import unittest
import os
import re