diff options
author | busywhitespace <busywhitespace@tuta.io> | 2023-02-10 23:29:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-10 23:29:24 (GMT) |
commit | 17143e2c30ae5e51945e04eeaec7ebb0e1f07fb5 (patch) | |
tree | 7e382abc82f06b904b3bb43ca641f2e07af5ee8f /Doc/library/importlib.rst | |
parent | 61f2be08661949e2f6dfc94143436297e60d47de (diff) | |
download | cpython-17143e2c30ae5e51945e04eeaec7ebb0e1f07fb5.zip cpython-17143e2c30ae5e51945e04eeaec7ebb0e1f07fb5.tar.gz cpython-17143e2c30ae5e51945e04eeaec7ebb0e1f07fb5.tar.bz2 |
gh-101390: Fix docs for `imporlib.util.LazyLoader.factory` to properly call it a class method (GH-101391)
Diffstat (limited to 'Doc/library/importlib.rst')
-rw-r--r-- | Doc/library/importlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 3fc1531..89efa64 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -1387,7 +1387,7 @@ an :term:`importer`. .. classmethod:: factory(loader) - A static method which returns a callable that creates a lazy loader. This + A class method which returns a callable that creates a lazy loader. This is meant to be used in situations where the loader is passed by class instead of by instance. :: |