From: Neil Schemenauer Date: Fri, 22 Mar 2002 22:16:03 +0000 (+0000) Subject: Add more example exceptions that unpickling can raise. X-Git-Tag: v2.3c1~6394 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79f181395b8d63c0198a604bdf27e9621ee09e07;p=python Add more example exceptions that unpickling can raise. --- diff --git a/Doc/lib/libpickle.tex b/Doc/lib/libpickle.tex index fc132651a9..dc6edffe8d 100644 --- a/Doc/lib/libpickle.tex +++ b/Doc/lib/libpickle.tex @@ -197,7 +197,8 @@ the \method{dump()} method. This exception is raised when there is a problem unpickling an object, such as a security violation. Note that other exceptions may also be raised during unpickling, including (but not necessarily limited to) -\exception{AttributeError} and \exception{ImportError}. +\exception{AttributeError}, \exception{EOFError}, +\exception{ImportError}, and \exception{IndexError}. \end{excdesc} The \module{pickle} module also exports two callables\footnote{In the