summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-04-10 11:51:58 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-04-10 11:51:58 (GMT)
commit9deb1887993b5476fdab8939a61057661e833656 (patch)
treef5fe6779c530454128d959413a0e837887c95a0c /Doc
parentf93fc0411bef9bb1fc781cc76427b6e52c7affd9 (diff)
parentcc4979092ff2789e7a347d365f13efb1571ecb62 (diff)
downloadcpython-9deb1887993b5476fdab8939a61057661e833656.zip
cpython-9deb1887993b5476fdab8939a61057661e833656.tar.gz
cpython-9deb1887993b5476fdab8939a61057661e833656.tar.bz2
merge - minor .rst fix
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/imp.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst
index 042f114..1345b25 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.