From 23460291ec8b3c95e779465f00b414f3641386e5 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Mon, 20 Jul 2009 22:59:00 +0000 Subject: [PATCH] Make the wdocs for importlib.abc.ExecutionLoader to be weaker in terms of what is needed to execute a module. --- 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 e051472cd32..6dd85281eb4 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)