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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efbb67b1a7ab918e5f1a279e3461a28d774a5068;p=python Remove comment about inheritance, look one line up --- diff --git a/Lib/pickle.py b/Lib/pickle.py index a303465548..985b851877 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):