mirror of
https://github.com/python/cpython.git
synced 2025-08-09 11:29:45 +00:00
[3.12] gh-112414: Fix AttributeError
when calling repr()
on a namespace package imported with a custom loader (GH-112425) (#112440)
gh-112414: Fix `AttributeError` when calling `repr()` on a namespace package imported with a custom loader (GH-112425)
(cherry picked from commit 0622839cfe
)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
parent
42df73652d
commit
f9861e69c9
4 changed files with 16 additions and 3 deletions
|
@ -824,10 +824,16 @@ def _module_repr_from_spec(spec):
|
|||
"""Return the repr to use for the module."""
|
||||
name = '?' if spec.name is None else spec.name
|
||||
if spec.origin is None:
|
||||
if spec.loader is None:
|
||||
loader = spec.loader
|
||||
if loader is None:
|
||||
return f'<module {name!r}>'
|
||||
elif (
|
||||
_bootstrap_external is not None
|
||||
and isinstance(loader, _bootstrap_external.NamespaceLoader)
|
||||
):
|
||||
return f'<module {name!r} (namespace) from {list(loader._path)}>'
|
||||
else:
|
||||
return f'<module {name!r} (namespace) from {list(spec.loader._path)}>'
|
||||
return f'<module {name!r} ({loader!r})>'
|
||||
else:
|
||||
if spec.has_location:
|
||||
return f'<module {name!r} from {spec.origin!r}>'
|
||||
|
|
|
@ -26,6 +26,10 @@ class SpecLoaderAttributeTests:
|
|||
with util.uncache('blah'), util.import_state(meta_path=[loader]):
|
||||
module = self.__import__('blah')
|
||||
self.assertEqual(loader, module.__loader__)
|
||||
expected_repr_pattern = (
|
||||
r"<module 'blah' \(<test\.test_importlib\..*SpecLoaderMock object at .+>\)>"
|
||||
)
|
||||
self.assertRegex(repr(module), expected_repr_pattern)
|
||||
|
||||
|
||||
(Frozen_SpecTests,
|
||||
|
|
|
@ -81,7 +81,7 @@ class SingleNamespacePackage(NamespacePackageTest):
|
|||
|
||||
def test_simple_repr(self):
|
||||
import foo.one
|
||||
assert repr(foo).startswith("<module 'foo' (namespace) from [")
|
||||
self.assertTrue(repr(foo).startswith("<module 'foo' (namespace) from ["))
|
||||
|
||||
|
||||
class DynamicPathNamespacePackage(NamespacePackageTest):
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
Fix regression in Python 3.12 where calling :func:`repr` on a module that
|
||||
had been imported using a custom :term:`loader` could fail with
|
||||
:exc:`AttributeError`. Patch by Alex Waygood.
|
Loading…
Add table
Add a link
Reference in a new issue