summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-05-30 12:12:04 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-05-30 12:12:04 (GMT)
commitefbb67b1a7ab918e5f1a279e3461a28d774a5068 (patch)
tree6c149fd73c067d02bae6052cdf5ac2b140969f71 /Lib
parent1dbe6c07280250bb36edb135188912ad0df1a0a8 (diff)
downloadcpython-efbb67b1a7ab918e5f1a279e3461a28d774a5068.zip
cpython-efbb67b1a7ab918e5f1a279e3461a28d774a5068.tar.gz
cpython-efbb67b1a7ab918e5f1a279e3461a28d774a5068.tar.bz2
Remove comment about inheritance, look one line up
Diffstat (limited to 'Lib')
-rw-r--r--Lib/pickle.py6
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):