diff options
author | Georg Brandl <georg@python.org> | 2005-12-26 23:36:32 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-12-26 23:36:32 (GMT) |
commit | a2764add1976fcc5538726affc38b2ab3f6faa27 (patch) | |
tree | 3125de3b9e5efc3cfa8378bbad674a662b82d7d3 /Doc | |
parent | d90d1c1b8d9a16b1b59f235201ae862d639145d7 (diff) | |
download | cpython-a2764add1976fcc5538726affc38b2ab3f6faa27.zip cpython-a2764add1976fcc5538726affc38b2ab3f6faa27.tar.gz cpython-a2764add1976fcc5538726affc38b2ab3f6faa27.tar.bz2 |
Bug #954981: urllib2 example wont work w/o ssl
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/liburllib2.tex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/lib/liburllib2.tex b/Doc/lib/liburllib2.tex index 80caa4b..842b2a3 100644 --- a/Doc/lib/liburllib2.tex +++ b/Doc/lib/liburllib2.tex @@ -782,7 +782,8 @@ bytes of it: \end{verbatim} Here we are sending a data-stream to the stdin of a CGI and reading -the data it returns to us: +the data it returns to us. Note that this example will only work when the +Python installation supports SSL. \begin{verbatim} >>> import urllib2 |