[Python-checkins] CVS: python/dist/src/Doc/lib libcodecs.tex,1.4,1.5

Fred L. Drake fdrake@users.sourceforge.net
Mon, 22 Jan 2001 12:17:56 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv5817/lib

Modified Files:
	libcodecs.tex 
Log Message:

Added link to the "Python Codecs" project at SourceForge.
Changed markup of the list of values for the list of meaningful "errors"
values.


Index: libcodecs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcodecs.tex,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** libcodecs.tex	2000/10/12 20:50:55	1.4
--- libcodecs.tex	2001/01/22 20:17:54	1.5
***************
*** 123,126 ****
--- 123,136 ----
  \end{datadesc}
  
+ 
+ \begin{seealso}
+   \seeurl{http://sourceforge.net/projects/python-codecs/}{A
+           SourceForge project working on additional support for Asian
+           codecs for use with Python.  They are in the early stages of
+           development at the time of this writing --- look in their
+           FTP area for downloadable files.}
+ \end{seealso}
+ 
+ 
  \subsection{Codec Base Classes}
  
***************
*** 143,154 ****
  codecs:
  
! \begin{itemize}
!   \item \code{'strict'} Raise \exception{ValueError} (or a subclass);
!                       this is the default.
!   \item \code{'ignore'} Ignore the character and continue with the next.
!   \item \code{'replace'} Replace with a suitable replacement character;
!                       Python will use the official U+FFFD REPLACEMENT
!                       CHARACTER for the builtin Unicode codecs.
! \end{itemize}
  
  
--- 153,164 ----
  codecs:
  
! \begin{tableii}{l|l}{code}{Value}{Meaning}
!   \lineii{'strict'}{Raise \exception{ValueError} (or a subclass);
!                     this is the default.}
!   \lineii{'ignore'}{Ignore the character and continue with the next.}
!   \lineii{'replace'}{Replace with a suitable replacement character;
!                      Python will use the official U+FFFD REPLACEMENT
!                      CHARACTER for the built-in Unicode codecs.}
! \end{tableii}