summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib/test_abc.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2022-10-05 18:42:26 (GMT)
committerGitHub <noreply@github.com>2022-10-05 18:42:26 (GMT)
commit5dc35991356306055ab2d85b886881ffd6577ae1 (patch)
tree93e10065cca0d56046fca3fdb7c7a68926b9000b /Lib/test/test_importlib/test_abc.py
parent815008a3a54a07c8523f9db35492b1750e104900 (diff)
downloadcpython-5dc35991356306055ab2d85b886881ffd6577ae1.zip
cpython-5dc35991356306055ab2d85b886881ffd6577ae1.tar.gz
cpython-5dc35991356306055ab2d85b886881ffd6577ae1.tar.bz2
gh-97850: Remove all known instances of module_repr() (#97876)
Remove all known instances of module_repr()
Diffstat (limited to 'Lib/test/test_importlib/test_abc.py')
-rw-r--r--Lib/test/test_importlib/test_abc.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_importlib/test_abc.py b/Lib/test/test_importlib/test_abc.py
index c214209..8641b6c 100644
--- a/Lib/test/test_importlib/test_abc.py
+++ b/Lib/test/test_importlib/test_abc.py
@@ -687,9 +687,6 @@ class SourceOnlyLoader:
def get_filename(self, fullname):
return self.path
- def module_repr(self, module):
- return '<module>'
-
SPLIT_SOL = make_abc_subclasses(SourceOnlyLoader, 'SourceLoader')