aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_importlib/test_resource.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2018-01-15 15:07:11 -0800
committerGitHub <noreply@github.com>2018-01-15 15:07:11 -0800
commit5ec0feeeecc1617987ec6cdc6d62b916e718a5cf (patch)
tree158c8a278acd9a7d2de71553c22199aa9b5b6ec6 /Lib/test/test_importlib/test_resource.py
parent21102f0dc20cc347677191817c1b66e20ef7bf21 (diff)
downloadcpython-5ec0feeeecc1617987ec6cdc6d62b916e718a5cf.tar.gz
cpython-5ec0feeeecc1617987ec6cdc6d62b916e718a5cf.zip
Implement the get_resource_reader() API for file system imports (#5168)
Diffstat (limited to 'Lib/test/test_importlib/test_resource.py')
-rw-r--r--Lib/test/test_importlib/test_resource.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_importlib/test_resource.py b/Lib/test/test_importlib/test_resource.py
index c35f7897485..c38ad0358a0 100644
--- a/Lib/test/test_importlib/test_resource.py
+++ b/Lib/test/test_importlib/test_resource.py
@@ -1,10 +1,10 @@
import sys
import unittest
-from importlib import resources
from . import data01
from . import zipdata02
from . import util
+from importlib import resources
class ResourceTests: