From: Senthil Kumaran Date: Tue, 10 Apr 2012 11:51:00 +0000 (+0800) Subject: minor .rst fix X-Git-Tag: v3.3.0a3~268^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cc4979092ff2789e7a347d365f13efb1571ecb62;p=thirdparty%2FPython%2Fcpython.git minor .rst fix --- diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst index 042f1146ed06..1345b254d62f 100644 --- a/Doc/library/imp.rst +++ b/Doc/library/imp.rst @@ -64,7 +64,7 @@ This module provides an interface to the mechanisms used to implement the path and the last item in the *description* tuple is :const:`PKG_DIRECTORY`. This function does not handle hierarchical module names (names containing - dots). In order to find *P*.*M*, that is, submodule *M* of package *P*, use + dots). In order to find *P.M*, that is, submodule *M* of package *P*, use :func:`find_module` and :func:`load_module` to find and load package *P*, and then use :func:`find_module` with the *path* argument set to ``P.__path__``. When *P* itself has a dotted name, apply this recipe recursively.