[issue44686] use pkgutil.resolve_name in unittest.mock

2022-01-21 Thread Yassir Karroum
Yassir Karroum added the comment: I think we can close this one -- nosy: +ukarroum ___ Python tracker ___ ___ Python-bugs-list

[issue44686] use pkgutil.resolve_name in unittest.mock

2021-07-21 Thread miss-islington
miss-islington added the comment: New changeset ab7fcc8fbdc11091370deeb000a787fb02f9b13d by Thomas Grainger in branch 'main': bpo-44686 replace unittest.mock._importer with pkgutil.resolve_name (GH-18544) https://github.com/python/cpython/commit/ab7fcc8fbdc11091370deeb000a787fb02f9b13d

[issue44686] use pkgutil.resolve_name in unittest.mock

2021-07-20 Thread Thomas Grainger
New submission from Thomas Grainger : per https://bugs.python.org/issue12915 pkgutil.resolve_name was added for use in mock and other stdlib modules: > pydoc has locate and resolve, packaging has util.resolve_name, unittest has > something else, etc. -- messages: 397905 nosy: