]> granicus.if.org Git - python/commitdiff
Add a missing newline in an example; caught by Chris Ryland
authorFred Drake <fdrake@acm.org>
Wed, 17 Jan 2001 05:12:13 +0000 (05:12 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 17 Jan 2001 05:12:13 +0000 (05:12 +0000)
<cpr@emsoftware.com>.

Doc/lib/libimp.tex

index 10b6253ad31e020851e2e2952fabf7aabcae1c94..2508e63d1e22a238e6733e41401c28ca3c4cdc72 100644 (file)
@@ -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.