Commit 240ddc8a authored by Guido van Rossum's avatar Guido van Rossum

Typo in example (missing '=') discovered by Sandy Langbart.

parent 80f8be89
......@@ -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
......@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment