diff options
author | Guido van Rossum <guido@python.org> | 2003-02-06 19:30:38 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-02-06 19:30:38 +0000 |
commit | 98b922c0eca3f56f5fe1f1ed2c8337fbdb63618d (patch) | |
tree | b3e027cbf1f9dce984361d2c173add15440b790d /Lib/pickle.py | |
parent | 241c2e969241dee0a02bed70940d2d12ccfdec63 (diff) | |
download | cpython-git-98b922c0eca3f56f5fe1f1ed2c8337fbdb63618d.tar.gz |
Remove a debug print statement.
Diffstat (limited to 'Lib/pickle.py')
-rw-r--r-- | Lib/pickle.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/pickle.py b/Lib/pickle.py index 1d14ed35c0..91236e91ac 100644 --- a/Lib/pickle.py +++ b/Lib/pickle.py @@ -488,7 +488,6 @@ class Pickler: if str(err) != ("a class that defines __slots__ " "without defining __getstate__ " "cannot be pickled"): - print repr(str(err)) raise # Not that specific exception getstate = None |