/third_party/python/Lib/importlib/ |
D | _abc.py | 42 def module_repr(self, module): member in Loader
|
D | _bootstrap.py | 301 return loader.module_repr(module) 736 def module_repr(module): member in BuiltinImporter 816 def module_repr(m): member in FrozenImporter
|
D | _bootstrap_external.py | 1276 def module_repr(module): member in _NamespaceLoader
|
/third_party/python/Lib/test/ |
D | test_module.py | 13 def module_repr(cls, m): member in FullLoader 230 module_repr = repr(BareLoader) 232 repr(m), "<module 'foo' ({})>".format(module_repr))
|
/third_party/python/Lib/test/test_importlib/frozen/ |
D | test_loader.py | 67 repr_str = self.machinery.FrozenImporter.module_repr(module) 159 repr_str = self.machinery.FrozenImporter.module_repr(module)
|
/third_party/python/Objects/ |
D | moduleobject.c | 694 module_repr(PyModuleObject *m) in module_repr() function 923 (reprfunc)module_repr, /* tp_repr */
|
/third_party/python/Lib/test/test_importlib/ |
D | test_namespace_pkgs.py | 88 self.assertEqual(foo.__spec__.loader.module_repr(foo),
|
D | test_abc.py | 226 self.ins.module_repr(mod) 719 def module_repr(self, module): member in SourceOnlyLoader
|
D | test_spec.py | 422 def module_repr(self, module): member in ModuleReprTests.test_module___loader___module_repr.Loader 431 def module_repr(self, module): member in ModuleReprTests.test_module___loader___module_repr_bad.Loader
|
/third_party/python/Doc/reference/ |
D | import.rst | 676 Use of :meth:`loader.module_repr() <importlib.abc.Loader.module_repr>` 682 :meth:`~importlib.abc.Loader.module_repr` method, if defined, before 687 Calling :meth:`~importlib.abc.Loader.module_repr` now occurs after trying to 689 ``__file__``. Use of :meth:`~importlib.abc.Loader.module_repr` is slated to
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a7.rst | 126 over ``module_repr()``. 327 Deprecate all module_repr() methods found in importlib as their use is being
|
/third_party/python/Doc/whatsnew/ |
D | 3.10.rst | 1592 :meth:`~importlib.abc.Loader.module_repr` (which the import system 1673 falling back on :meth:`~importlib.abc.Loader.module_repr` for a module's 1674 ``__repr__()`` method. Removal of the use of ``module_repr()`` is scheduled 1678 * :meth:`importlib.abc.Loader.module_repr`, 1679 :meth:`importlib.machinery.FrozenLoader.module_repr`, and 1680 :meth:`importlib.machinery.BuiltinLoader.module_repr` are deprecated and
|
D | 3.4.rst | 2099 :meth:`importlib.abc.Loader.module_repr`,
|
/third_party/python/Lib/test/test_importlib/source/ |
D | test_file_loader.py | 55 def module_repr(self, _): pass member in SimpleTest.test_get_filename_API.Tester
|
/third_party/python/Doc/library/ |
D | importlib.rst | 477 .. method:: module_repr(module)
|
/third_party/python/Misc/ |
D | HISTORY | 5111 - Issue #17566: Make importlib.abc.Loader.module_repr() optional instead of an
|