diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/pickle.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Lib/pickle.py b/Lib/pickle.py index a303465..985b851 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): |