summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib/test_abc.py
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2022-10-07 00:57:10 (GMT)
committerGitHub <noreply@github.com>2022-10-07 00:57:10 (GMT)
commit27025e158c70331d0a8fb42fe234a2a6770850d1 (patch)
tree7a65a7e92f1db72ce3d942f32af13dfe40ed2462 /Lib/test/test_importlib/test_abc.py
parent4875433682ffec2694647ac43f1b21f5ad73fd25 (diff)
downloadcpython-27025e158c70331d0a8fb42fe234a2a6770850d1.zip
cpython-27025e158c70331d0a8fb42fe234a2a6770850d1.tar.gz
cpython-27025e158c70331d0a8fb42fe234a2a6770850d1.tar.bz2
gh-97850: Remove deprecated functions from `importlib.utils` (#97898)
* gh-97850: Remove deprecated functions from `importlib.utils` * Rebase and remove `set_package` from diff
Diffstat (limited to 'Lib/test/test_importlib/test_abc.py')
-rw-r--r--Lib/test/test_importlib/test_abc.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/Lib/test/test_importlib/test_abc.py b/Lib/test/test_importlib/test_abc.py
index 8641b6c..3c9149c 100644
--- a/Lib/test/test_importlib/test_abc.py
+++ b/Lib/test/test_importlib/test_abc.py
@@ -771,13 +771,7 @@ class SourceLoaderTestHarness:
class SourceOnlyLoaderTests(SourceLoaderTestHarness):
-
- """Test importlib.abc.SourceLoader for source-only loading.
-
- Reload testing is subsumed by the tests for
- importlib.util.module_for_loader.
-
- """
+ """Test importlib.abc.SourceLoader for source-only loading."""
def test_get_source(self):
# Verify the source code is returned as a string.