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

Fred L. Drake python-dev@python.org
Tue, 10 Oct 2000 13:23:13 -0700


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

Modified Files:
	liburllib.tex 
Log Message:

Remove duplicated text from urlopen() description, noted by Ka-Ping
Yee <ping@lfw.org> and probably others as well.


Index: liburllib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/liburllib.tex,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** liburllib.tex	2000/09/15 04:12:56	1.29
--- liburllib.tex	2000/10/10 20:23:10	1.30
***************
*** 82,101 ****
  Proxies which require authentication for use are not currently
  supported; this is considered an implementation limitation.
- 
- 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, e.g.:
- 
- \begin{verbatim}
- % http_proxy="http://www.someproxy.com:3128"
- % export http_proxy
- % python
- ...
- \end{verbatim}
- 
- In a Macintosh environment, \function{urlopen()} will retrieve proxy
- information from Internet Config.
  \end{funcdesc}
  
--- 82,85 ----