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

Fred L. Drake python-dev@python.org
Thu, 31 Aug 2000 10:23:38 -0700


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

Modified Files:
	liburllib.tex 
Log Message:

Document the limitation that urllib does not work with proxies which
require authenication.  This is an implementation limitation rather than
required behavior, and may be fixed in the future.

This closes SourceForge bug #111725.


Index: liburllib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/liburllib.tex,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -r1.27 -r1.28
*** liburllib.tex	2000/08/25 05:13:42	1.27
--- liburllib.tex	2000/08/31 17:23:35	1.28
***************
*** 63,71 ****
  see the \function{urlencode()} function below.
  
! The \function{urlopen()} function works transparently with proxies.
! 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 the proxy server before starting the Python
! interpreter.  For example (the \character{\%} is the command prompt):
  
  \begin{verbatim}
--- 63,72 ----
  see the \function{urlencode()} function below.
  
! 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
! the proxy server before starting the Python interpreter.  For example
! (the \character{\%} is the command prompt):
  
  \begin{verbatim}
***************
*** 78,81 ****
--- 79,85 ----
  In a Macintosh environment, \function{urlopen()} will retrieve proxy
  information from Internet\index{Internet Config} Config.
+ 
+ Proxies which require authentication for use are not currently
+ supported; this is considered an implementation limitation.
  
  The \function{urlopen()} function works transparently with proxies.