From efbb67b1a7ab918e5f1a279e3461a28d774a5068 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Thu, 30 May 2002 12:12:04 +0000 Subject: [PATCH] Remove comment about inheritance, look one line up --- Lib/pickle.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Lib/pickle.py b/Lib/pickle.py index a3034655486..985b851877f 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):