diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-31 11:07:24 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-31 11:07:24 (GMT) |
commit | 58e4134a1cf668a16006b896fca093d5a79966e3 (patch) | |
tree | b4baced8cb92d58dda991491c786e39fdfa5725e /Doc | |
parent | 72e731cc03f29cdb8bf17bd9ea34c8448954c798 (diff) | |
download | cpython-58e4134a1cf668a16006b896fca093d5a79966e3.zip cpython-58e4134a1cf668a16006b896fca093d5a79966e3.tar.gz cpython-58e4134a1cf668a16006b896fca093d5a79966e3.tar.bz2 |
Issue #23611: Serializing more "lookupable" objects (such as unbound methods
or nested classes) now are supported with pickle protocols < 4.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 434c0a7..ad6475a 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -370,6 +370,13 @@ os * :class:`os.stat_result` now has a :attr:`~os.stat_result.st_file_attributes` attribute on Windows. (Contributed by Ben Hoyt in :issue:`21719`.) +pickle +------ + +* Serializing more "lookupable" objects (such as unbound methods or nested + classes) now are supported with pickle protocols < 4. + (Contributed by Serhiy Storchaka in :issue:`23611`.) + re -- |