diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-07-20 22:59:00 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-07-20 22:59:00 (GMT) |
commit | 23460291ec8b3c95e779465f00b414f3641386e5 (patch) | |
tree | f57a3a330425bfe4172b167b0819e10824006ce0 /Doc/library/importlib.rst | |
parent | 4fd26488a217774ca627f8fab433d759fc7e1838 (diff) | |
download | cpython-23460291ec8b3c95e779465f00b414f3641386e5.zip cpython-23460291ec8b3c95e779465f00b414f3641386e5.tar.gz cpython-23460291ec8b3c95e779465f00b414f3641386e5.tar.bz2 |
Make the wdocs for importlib.abc.ExecutionLoader to be weaker in terms of what is needed to execute a module.
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 e051472..6dd8528 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -205,7 +205,7 @@ are also provided to help in implementing the core ABCs. .. class:: ExecutionLoader An abstract base class which inherits from :class:`InspectLoader` that, - when implemented, allows a module to be executed as a script. The ABC + when implemented, helps a module to be executed as a script. The ABC represents an optional :pep:`302` protocol. .. method:: get_filename(fullname) |