commit | b0a98e9c9462237706578a5180c0f83abd13a1fa | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Aug 17 18:49:52 2001 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri Aug 17 18:49:52 2001 +0000 |
tree | 5f8d8fe1413f45c0f287564248b5e6324a08c188 | |
parent | 339d0f720e86dc34837547c90d3003a4a68d7d46 [diff] |
Address SF #451547. The approach is a bit draconian: any object that is pickled as a global must now exist by the name under which it is pickled, otherwise the pickling fails. Previously, such things would fail on unpickling, or unpickle as the wrong global object. I'm hoping that this won't break existing code that is playing tricks with this. I need a volunteer to do this for cPickle too.