]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43207: InspectLoader.is_package is not an abstract method (GH-24517) (#26322)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 12 Jul 2021 15:11:59 +0000 (08:11 -0700)
committerGitHub <noreply@github.com>
Mon, 12 Jul 2021 15:11:59 +0000 (17:11 +0200)
Making the description of `InspectLoader.is_package` aligned with the current implementation.

Automerge-Triggered-By: GH:jaraco
(cherry picked from commit 8b9310d90281d4bd3643f4e0767b2d0390f0cb05)

Co-authored-by: Junnosuke Kuroda <Isa-rentacs@users.noreply.github.com>
Doc/library/importlib.rst

index 736c43d96558c266657f0cd2e37c1eb6d9d29d02..69e311298221c8332fbbbfe6af37bf4ee0e46fc9 100644 (file)
@@ -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.