summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-03-02 17:16:38 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-03-02 17:16:38 (GMT)
commitb2677c739729ace08c4185d1e459210373477497 (patch)
treea0a8166ddcc05cfa59ecfe3632e318553ac080f6 /Misc/NEWS
parent92818d5383087d238f24b0a93d31a41bf6a75735 (diff)
parent679e9d36f78de3ac18abaaddbcf4f73fcef55b7e (diff)
downloadcpython-b2677c739729ace08c4185d1e459210373477497.zip
cpython-b2677c739729ace08c4185d1e459210373477497.tar.gz
cpython-b2677c739729ace08c4185d1e459210373477497.tar.bz2
Issue #14172: Fix reference leak when marshalling a buffer-like object (other than a bytes object).
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6258bc4..c5cd47a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #14172: Fix reference leak when marshalling a buffer-like object
+ (other than a bytes object).
+
- Issue #13521: dict.setdefault() now does only one lookup for the given key,
making it "atomic" for many purposes. Patch by Filip GruszczyƄski.