diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-07-30 01:05:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 01:05:05 (GMT) |
commit | aaa83cdfab6817446285e631232f64b394ac6791 (patch) | |
tree | d41195f1412a533b1c7333b99adcc77f171329a1 /Lib/test/test_importlib/test_path.py | |
parent | 851cca8c22795a2f143ad5ebc10adab3c7784ad0 (diff) | |
download | cpython-aaa83cdfab6817446285e631232f64b394ac6791.zip cpython-aaa83cdfab6817446285e631232f64b394ac6791.tar.gz cpython-aaa83cdfab6817446285e631232f64b394ac6791.tar.bz2 |
bpo-44771: Apply changes from importlib_resources 5.2.1 (GH-27436)
* bpo-44771: Apply changes from importlib_resources@3b24bd6307
* Add blurb
* Exclude namespacedata01 from eol conversion.
Diffstat (limited to 'Lib/test/test_importlib/test_path.py')
-rw-r--r-- | Lib/test/test_importlib/test_path.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_importlib/test_path.py b/Lib/test/test_importlib/test_path.py index d6ed09a..4436d7f 100644 --- a/Lib/test/test_importlib/test_path.py +++ b/Lib/test/test_importlib/test_path.py @@ -3,10 +3,10 @@ import unittest from importlib import resources from . import data01 -from . import util +from .resources import util -class CommonTests(util.CommonResourceTests, unittest.TestCase): +class CommonTests(util.CommonTests, unittest.TestCase): def execute(self, package, path): with resources.path(package, path): pass |