[Python-checkins] CVS: python/dist/src/Doc/lib liburllib.tex,1.28,1.29

Fred L. Drake python-dev@python.org
Thu, 14 Sep 2000 21:12:59 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv5638/lib

Modified Files:
	liburllib.tex 
Log Message:

Add item to the list of limitations that points out the lack of support
for authenticated proxies.  This is noted elsewhere, but this makes it
easier to find.

Fix typo where it was already mentioned.

This closes SourceForge bug #110619.


Index: liburllib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/liburllib.tex,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -r1.28 -r1.29
*** liburllib.tex	2000/08/31 17:23:35	1.28
--- liburllib.tex	2000/09/15 04:12:56	1.29
***************
*** 64,68 ****
  
  The \function{urlopen()} function works transparently with proxies
! whicd do not require authentication.  In a \UNIX{} or Windows
  environment, set the \envvar{http_proxy}, \envvar{ftp_proxy} or
  \envvar{gopher_proxy} environment variables to a URL that identifies
--- 64,68 ----
  
  The \function{urlopen()} function works transparently with proxies
! which do not require authentication.  In a \UNIX{} or Windows
  environment, set the \envvar{http_proxy}, \envvar{ftp_proxy} or
  \envvar{gopher_proxy} environment variables to a URL that identifies
***************
*** 261,264 ****
--- 261,268 ----
  no easy way to extract it.  If the returned data is HTML, you can use
  the module \refmodule{htmllib}\refstmodindex{htmllib} to parse it.
+ 
+ \item
+ This module does not support the use of proxies which require
+ authentication.  This may be implemented in the future.
  
  \item