]> granicus.if.org Git - python/commitdiff
Note that unicode() can raise LookupError for unknown codecs.
authorFred Drake <fdrake@acm.org>
Tue, 9 Jul 2002 05:25:46 +0000 (05:25 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 9 Jul 2002 05:25:46 +0000 (05:25 +0000)
Closes SF bug #513666.

Doc/lib/libfuncs.tex

index f695c3dd8339e2dbaa8d1b1adb638b66782fcaf1..5526dc53a7e5c2f8bfeb6f70a054859e4b5d0a4c 100644 (file)
@@ -859,7 +859,8 @@ def my_import(name):
   If \var{encoding} and/or \var{errors} are given, \code{unicode()}
   will decode the object which can either be an 8-bit string or a
   character buffer using the codec for \var{encoding}. The
-  \var{encoding} parameter is a string giving the name of an encoding.
+  \var{encoding} parameter is a string giving the name of an encoding;
+  if the encoding is not known, \exception{LookupError} is raised.
   Error handling is done according to \var{errors}; this specifies the
   treatment of characters which are invalid in the input encoding.  If
   \var{errors} is \code{'strict'} (the default), a