summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-01-17 05:12:13 (GMT)
committerFred Drake <fdrake@acm.org>2001-01-17 05:12:13 (GMT)
commit90badd1286eadad22761105d7211f1e02a1f6845 (patch)
treea143fc9adeb6db91343f5a2257971eac490a1010 /Doc
parente69d3d75874004db90718d535b9f97d27844f7c5 (diff)
downloadcpython-90badd1286eadad22761105d7211f1e02a1f6845.zip
cpython-90badd1286eadad22761105d7211f1e02a1f6845.tar.gz
cpython-90badd1286eadad22761105d7211f1e02a1f6845.tar.bz2
Add a missing newline in an example; caught by Chris Ryland
<cpr@emsoftware.com>.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libimp.tex3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/lib/libimp.tex b/Doc/lib/libimp.tex
index 10b6253..2508e63 100644
--- a/Doc/lib/libimp.tex
+++ b/Doc/lib/libimp.tex
@@ -217,7 +217,8 @@ up to Python 1.4 (i.e., no hierarchical module names). (This
\function{load_module()} has been added in 1.4.)
\begin{verbatim}
-import imp import sys
+import imp
+import sys
def __import__(name, globals=None, locals=None, fromlist=None):
# Fast path: see if the module has already been imported.