From 240ddc8a68ab3a35ed0e1bfe030debaa6bc7ecb6 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 2 Dec 1997 20:08:06 +0000 Subject: [PATCH] Typo in example (missing '=') discovered by Sandy Langbart. --- Doc/lib/libhttplib.tex | 2 +- Doc/libhttplib.tex | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/lib/libhttplib.tex b/Doc/lib/libhttplib.tex index 7671ab3622..ca5c673368 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 7671ab3622..ca5c673368 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 -- 2.40.0