summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-01-25 19:44:16 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-01-25 19:44:16 (GMT)
commit97d3aa50b78ea62728d5767b426c9c6e2fae11cb (patch)
tree8178ac7ce829ceff551ca199d95384d88e4a314f /Doc
parent3fe61d5282d647a8ed763c805dce1c51429c6588 (diff)
downloadcpython-97d3aa50b78ea62728d5767b426c9c6e2fae11cb.zip
cpython-97d3aa50b78ea62728d5767b426c9c6e2fae11cb.tar.gz
cpython-97d3aa50b78ea62728d5767b426c9c6e2fae11cb.tar.bz2
use the classmethod directive
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/importlib.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
index ea56981..4d13235 100644
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -95,12 +95,12 @@ find and load modules.
Only class methods are defined by this class to alleviate the need for
instantiation.
- .. method:: find_module(fullname, path=None)
+ .. classmethod:: find_module(fullname, path=None)
Class method that allows this class to be a :term:`finder` for built-in
modules.
- .. method:: load_module(fullname)
+ .. classmethod:: load_module(fullname)
Class method that allows this class to be a :term:`loader` for built-in
modules.
@@ -113,12 +113,12 @@ find and load modules.
Only class methods are defined by this class to alleviate the need for
instantiation.
- .. method:: find_module(fullname, path=None)
+ .. classmethod:: find_module(fullname, path=None)
Class method that allows this class to be a :term:`finder` for frozen
modules.
- .. method:: load_module(fullname)
+ .. classmethod:: load_module(fullname)
Class method that allows this class to be a :term:`loader` for frozen
modules.