summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-07-29 17:04:57 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-07-29 17:04:57 (GMT)
commita264384fe6de357680ca0cf02cd6024bbba0ba45 (patch)
treeea2c7c77a9c36cda0843e1628a4e0262d13c4c4f /Misc
parent2b16844326f9a88f7c5daf16abfb04cee70f02bc (diff)
parent10f0c50a0bc9237d640cb7beb216d63f9ec2b3eb (diff)
downloadcpython-a264384fe6de357680ca0cf02cd6024bbba0ba45.zip
cpython-a264384fe6de357680ca0cf02cd6024bbba0ba45.tar.gz
cpython-a264384fe6de357680ca0cf02cd6024bbba0ba45.tar.bz2
Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.
Patch by Serhiy Storchaka.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 185892f..8848e1a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -334,6 +334,9 @@ Core and Builtins
Library
-------
+- Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.
+ Patch by Serhiy Storchaka.
+
- Issue #15187: Bugfix: remove temporary directories test_shutil was leaving
behind.