diff options
author | Raymond Hettinger <python@rcn.com> | 2003-09-22 15:27:11 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-09-22 15:27:11 +0000 |
commit | 92016dcc912e9c44a9d34ac49994ac576084349c (patch) | |
tree | 49b2ee083e9339dc81eeaa5beaf5300674a0d46f /Doc/api | |
parent | 0e5a51d96222d7b9e8669c87f68ea4d372a73f5c (diff) | |
download | cpython-git-92016dcc912e9c44a9d34ac49994ac576084349c.tar.gz |
SF 810242. Fix doubled word errors.
Diffstat (limited to 'Doc/api')
-rw-r--r-- | Doc/api/utilities.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api/utilities.tex b/Doc/api/utilities.tex index a17f705052..318e450d8a 100644 --- a/Doc/api/utilities.tex +++ b/Doc/api/utilities.tex @@ -147,7 +147,7 @@ values from C values. Return the module object corresponding to a module name. The \var{name} argument may be of the form \code{package.module}). First check the modules dictionary if there's one there, and if not, - create a new one and insert in in the modules dictionary. + create a new one and insert it in the modules dictionary. Return \NULL{} with an exception set on failure. \note{This function does not load or import the module; if the module wasn't already loaded, you will get an empty module object. |