diff options
author | Georg Brandl <georg@python.org> | 2005-12-26 23:36:49 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-12-26 23:36:49 (GMT) |
commit | 109e6d4d2f94af7d536ccc060ecbc4b8bfe3e884 (patch) | |
tree | 1644d9ee1dceba6d39119b1372888e1cacf4b2a4 /Doc | |
parent | 6638b863be3d78a1e5e1fbf75790c998d337d5ff (diff) | |
download | cpython-109e6d4d2f94af7d536ccc060ecbc4b8bfe3e884.zip cpython-109e6d4d2f94af7d536ccc060ecbc4b8bfe3e884.tar.gz cpython-109e6d4d2f94af7d536ccc060ecbc4b8bfe3e884.tar.bz2 |
Bug #954981: urllib2 example wont work w/o ssl (backport)
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 6f9395c..1973d51 100644 --- a/Doc/lib/liburllib2.tex +++ b/Doc/lib/liburllib2.tex @@ -771,7 +771,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 |