diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-25 16:33:29 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-25 16:33:29 (GMT) |
commit | d28bb624d120466ba5ebdf5063286b2f309283ab (patch) | |
tree | fa51e9e30f4f0cc80d72a3f0d9184e42afdbfde9 /Misc | |
parent | 33e7ea5ad6a3027ef684ac7941fccf7c97d5cbd6 (diff) | |
download | cpython-d28bb624d120466ba5ebdf5063286b2f309283ab.zip cpython-d28bb624d120466ba5ebdf5063286b2f309283ab.tar.gz cpython-d28bb624d120466ba5ebdf5063286b2f309283ab.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: tba 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. |