summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libimp.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-07-06 19:28:48 (GMT)
committerFred Drake <fdrake@acm.org>2001-07-06 19:28:48 (GMT)
commit91f2f26d7515635453945325fb833bde13396f4c (patch)
tree3484a2c78ce9e2c337f39b58156a4aaaeba96843 /Doc/lib/libimp.tex
parent6ee42348025611f537b80d5dbf55f4d5b9bd58f2 (diff)
downloadcpython-91f2f26d7515635453945325fb833bde13396f4c.zip
cpython-91f2f26d7515635453945325fb833bde13396f4c.tar.gz
cpython-91f2f26d7515635453945325fb833bde13396f4c.tar.bz2
Fix up a few style nits -- avoid "e.g." and "i.e." -- these make
translation more difficult, as well as reading the English more difficult for non-native speakers.
Diffstat (limited to 'Doc/lib/libimp.tex')
-rw-r--r--Doc/lib/libimp.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libimp.tex b/Doc/lib/libimp.tex
index 2508e63..23391ff 100644
--- a/Doc/lib/libimp.tex
+++ b/Doc/lib/libimp.tex
@@ -57,7 +57,7 @@ search is unsuccessful, \exception{ImportError} is raised. Other
exceptions indicate problems with the arguments or environment.
This function does not handle hierarchical module names (names
-containing dots). In order to find \var{P}.\var{M}, i.e., submodule
+containing dots). In order to find \var{P}.\var{M}, that is, submodule
\var{M} of package \var{P}, use \function{find_module()} and
\function{load_module()} to find and load package \var{P}, and then use
\function{find_module()} with the \var{path} argument set to
@@ -211,7 +211,7 @@ source file.
\label{examples-imp}
The following function emulates what was the standard import statement
-up to Python 1.4 (i.e., no hierarchical module names). (This
+up to Python 1.4 (no hierarchical module names). (This
\emph{implementation} wouldn't work in that version, since
\function{find_module()} has been extended and
\function{load_module()} has been added in 1.4.)