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

Fred L. Drake python-dev@python.org
Fri, 28 Jul 2000 06:51:29 -0700


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

Modified Files:
	liburllib.tex 
Log Message:

Finally fixed the much-reported bug about "~" in a couple of example.
This time, it was reported by Skip.


Index: liburllib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/liburllib.tex,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -r1.23 -r1.24
*** liburllib.tex	2000/07/16 19:01:10	1.23
--- liburllib.tex	2000/07/28 13:51:27	1.24
***************
*** 129,133 ****
  that should not be quoted --- its default value is \code{'/'}.
  
! Example: \code{quote('/\~connolly/')} yields \code{'/\%7econnolly/'}.
  \end{funcdesc}
  
--- 129,133 ----
  that should not be quoted --- its default value is \code{'/'}.
  
! Example: \code{quote('/\~{}connolly/')} yields \code{'/\%7econnolly/'}.
  \end{funcdesc}
  
***************
*** 141,145 ****
  Replace \samp{\%xx} escapes by their single-character equivalent.
  
! Example: \code{unquote('/\%7Econnolly/')} yields \code{'/\~connolly/'}.
  \end{funcdesc}
  
--- 141,145 ----
  Replace \samp{\%xx} escapes by their single-character equivalent.
  
! Example: \code{unquote('/\%7Econnolly/')} yields \code{'/\~{}connolly/'}.
  \end{funcdesc}