Author: Armin Rigo <[email protected]>
Branch: cpyext-pickle
Changeset: r84858:f9cce7de03dc
Date: 2016-06-01 17:13 +0200
http://bitbucket.org/pypy/pypy/changeset/f9cce7de03dc/

Log:    avoid an unintended change left to lib-python

diff --git a/lib-python/2.7/pickle.py b/lib-python/2.7/pickle.py
--- a/lib-python/2.7/pickle.py
+++ b/lib-python/2.7/pickle.py
@@ -285,6 +285,7 @@
         if f:
             f(self, obj) # Call unbound method with explicit self
             return
+
         # Check copy_reg.dispatch_table
         reduce = dispatch_table.get(t)
         if reduce:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to