summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2012-07-23 15:01:29 (GMT)
committerMeador Inge <meadori@gmail.com>2012-07-23 15:01:29 (GMT)
commitb14d8c9bcfb7f58e83a5c18c8b6eac0fa261c4b6 (patch)
treeef670d6bf6855e80f60c9eb9c75ce1f7a513511e /Misc/NEWS
parent7e918cfe2805f4556995885a14e684029c7c95ba (diff)
downloadcpython-b14d8c9bcfb7f58e83a5c18c8b6eac0fa261c4b6.zip
cpython-b14d8c9bcfb7f58e83a5c18c8b6eac0fa261c4b6.tar.gz
cpython-b14d8c9bcfb7f58e83a5c18c8b6eac0fa261c4b6.tar.bz2
Issue #15402: Add a __sizeof__ method to struct.Struct.
Initial patch by Serhiy Storchaka.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ff7be30..539c905 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -98,6 +98,10 @@ Core and Builtins
Library
-------
+- Issue #15402: An issue in the struct module that caused sys.getsizeof to
+ return incorrect results for struct.Struct instances has been fixed.
+ Initial patch by Serhiy Storchaka.
+
- Issue #15232: when mangle_from is True, email.Generator now correctly mangles
lines that start with 'From' that occur in a MIME preamble or epilogue.