From: Neal Norwitz Date: Thu, 30 May 2002 12:12:04 +0000 (+0000) Subject: Remove comment about inheritance, look one line up X-Git-Tag: v2.3c1~5560 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=efbb67b1a7ab918e5f1a279e3461a28d774a5068;p=thirdparty%2FPython%2Fcpython.git Remove comment about inheritance, look one line up --- diff --git a/Lib/pickle.py b/Lib/pickle.py index a3034655486b..985b851877fe 100644 --- a/Lib/pickle.py +++ b/Lib/pickle.py @@ -42,11 +42,7 @@ mdumps = marshal.dumps mloads = marshal.loads class PickleError(Exception): - """A common base class for the other pickling exceptions. - - Inherits from \exception{Exception}. - - """ + """A common base class for the other pickling exceptions.""" pass class PicklingError(PickleError):