diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-25 16:34:19 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-25 16:34:19 (GMT) |
commit | 670d78abc5b9a9780677c9f1d51dcd543b15e0f7 (patch) | |
tree | 2eb1e4c7490c55058e9c88d803f6d1ebd546c9ab /Misc | |
parent | 2cefc1efa2fc74da0ec1b79f75639b76ac8e6dfd (diff) | |
parent | d28bb624d120466ba5ebdf5063286b2f309283ab (diff) | |
download | cpython-670d78abc5b9a9780677c9f1d51dcd543b15e0f7.zip cpython-670d78abc5b9a9780677c9f1d51dcd543b15e0f7.tar.gz cpython-670d78abc5b9a9780677c9f1d51dcd543b15e0f7.tar.bz2 |
Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside
__getattr__. Original patch by Antoine Pitrou.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ Release date: XXXX-XX-XX Core and Builtins ----------------- +- Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside + __getattr__. + - Issue #24731: Fixed crash on converting objects with special methods __bytes__, __trunc__, and __float__ returning instances of subclasses of bytes, int, and float to subclasses of bytes, int, and float correspondingly. |