]> granicus.if.org Git - python/commitdiff
Added link to the "Python Codecs" project at SourceForge.
authorFred Drake <fdrake@acm.org>
Mon, 22 Jan 2001 20:17:54 +0000 (20:17 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 22 Jan 2001 20:17:54 +0000 (20:17 +0000)
Changed markup of the list of values for the list of meaningful "errors"
values.

Doc/lib/libcodecs.tex

index bb444a272e1efa38d4c9f2701a3e4e1d405d1b52..acbed9a1641aa950bdae3db5a0e237799fe7ea3f 100644 (file)
@@ -122,6 +122,16 @@ represent big endian (\samp{_BE} suffix) and little endian
 (\samp{_LE} suffix) byte order using 32-bit and 64-bit encodings.
 \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}
 
 The \module{codecs} defines a set of base classes which define the
@@ -142,14 +152,14 @@ schemes by providing the \var{errors} string argument.  The following
 string values are defined and implemented by all standard Python
 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}
+\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}
 
 
 \subsubsection{Codec Objects \label{codec-objects}}