diff options
author | Brett Cannon <brett@python.org> | 2021-04-02 12:35:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-02 12:35:32 -0700 |
commit | f97dc800689ba98783dac8dc51f87f7c6f413ac6 (patch) | |
tree | e51ae8f2bf8b3f5434ab4d8b37cd0eef87b62c4e /Lib/test/test_importlib/test_reader.py | |
parent | ad442a674ca443feec43a88a2d3671784712e550 (diff) | |
download | cpython-git-f97dc800689ba98783dac8dc51f87f7c6f413ac6.tar.gz |
bpo-43672: raise ImportWarning when calling find_loader() (GH-25119)
Diffstat (limited to 'Lib/test/test_importlib/test_reader.py')
-rw-r--r-- | Lib/test/test_importlib/test_reader.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_importlib/test_reader.py b/Lib/test/test_importlib/test_reader.py index 905d4fcdec..b0bf49b8ba 100644 --- a/Lib/test/test_importlib/test_reader.py +++ b/Lib/test/test_importlib/test_reader.py @@ -60,7 +60,6 @@ class MultiplexedPathTest(unittest.TestCase): path.open() def test_join_path(self): - print('test_join_path') prefix = os.path.abspath(os.path.join(__file__, '..')) data01 = os.path.join(prefix, 'data01') path = MultiplexedPath(self.folder, data01) |