diff options
author | Guido van Rossum <guido@python.org> | 2003-02-06 19:30:38 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-02-06 19:30:38 (GMT) |
commit | 98b922c0eca3f56f5fe1f1ed2c8337fbdb63618d (patch) | |
tree | b3e027cbf1f9dce984361d2c173add15440b790d /Lib | |
parent | 241c2e969241dee0a02bed70940d2d12ccfdec63 (diff) | |
download | cpython-98b922c0eca3f56f5fe1f1ed2c8337fbdb63618d.zip cpython-98b922c0eca3f56f5fe1f1ed2c8337fbdb63618d.tar.gz cpython-98b922c0eca3f56f5fe1f1ed2c8337fbdb63618d.tar.bz2 |
Remove a debug print statement.
Diffstat (limited to 'Lib')
-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 1d14ed3..91236e9 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 |