From: Guido van Rossum Date: Tue, 2 Dec 1997 20:08:06 +0000 (+0000) Subject: Typo in example (missing '=') discovered by Sandy Langbart. X-Git-Tag: v1.5b2~131 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=240ddc8a68ab3a35ed0e1bfe030debaa6bc7ecb6;p=thirdparty%2FPython%2Fcpython.git Typo in example (missing '=') discovered by Sandy Langbart. --- diff --git a/Doc/lib/libhttplib.tex b/Doc/lib/libhttplib.tex index 7671ab3622cf..ca5c6733688d 100644 --- a/Doc/lib/libhttplib.tex +++ b/Doc/lib/libhttplib.tex @@ -122,7 +122,7 @@ Here is an example session: >>> errcode, errmsg, headers = h.getreply() >>> print errcode # Should be 200 >>> f = h.getfile() ->>> data f.read() # Get the raw HTML +>>> data = f.read() # Get the raw HTML >>> f.close() >>> \end{verbatim}\ecode diff --git a/Doc/libhttplib.tex b/Doc/libhttplib.tex index 7671ab3622cf..ca5c6733688d 100644 --- a/Doc/libhttplib.tex +++ b/Doc/libhttplib.tex @@ -122,7 +122,7 @@ Here is an example session: >>> errcode, errmsg, headers = h.getreply() >>> print errcode # Should be 200 >>> f = h.getfile() ->>> data f.read() # Get the raw HTML +>>> data = f.read() # Get the raw HTML >>> f.close() >>> \end{verbatim}\ecode