**Bug report** * `module_repr()` was [deprecated](https://docs.python.org/3.11/library/importlib.html?highlight=namespaceloader#importlib.abc.Loader.module_repr) since Python 3.4 and is slated for removal in [Python 3.12](https://github.com/python/cpython/blob/main/Lib/importlib/_bootstrap_external.py#L1354) as per the warnings, so let's remove them. See also #86302 * Similarly, `load_module()` has also been [deprecated](https://docs.python.org/3.11/library/importlib.html?highlight=namespaceloader#importlib.abc.Loader.load_module) since Python 3.4, so let's try removing it too.
Bug report
module_repr()was deprecated since Python 3.4 and is slated for removal in Python 3.12 as per the warnings, so let's remove them. See also [importlib] deprecate module_repr() methods #86302load_module()has also been deprecated since Python 3.4, so let's try removing it too.