From eb57d622cd1142cd189b02748725c44c6418f31a Mon Sep 17 00:00:00 2001 From: Junnosuke Kuroda Date: Fri, 12 Feb 2021 23:44:28 +0900 Subject: [PATCH] bpo-43207: InspectLoader.is_package is not an abstract method --- Doc/library/importlib.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index fee5df84dffcb2..198fc8355ebdd4 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -612,7 +612,7 @@ ABC hierarchy:: .. method:: is_package(fullname) - An abstract method to return a true value if the module is a package, a + An optional method to return a true value if the module is a package, a false value otherwise. :exc:`ImportError` is raised if the :term:`loader` cannot find the module.