summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-11-20 11:25:01 (GMT)
committerGeorg Brandl <georg@python.org>2010-11-20 11:25:01 (GMT)
commit9f1c1dcde30305c4ed68b296ca96028ea7123152 (patch)
tree257660ad8845b41785a73e9642bc8ec855a794df /Misc
parent4ccc137affe960741c3f6758ce00277d15409665 (diff)
downloadcpython-9f1c1dcde30305c4ed68b296ca96028ea7123152.zip
cpython-9f1c1dcde30305c4ed68b296ca96028ea7123152.tar.gz
cpython-9f1c1dcde30305c4ed68b296ca96028ea7123152.tar.bz2
#10465: fix broken delegation in __getattr__ of _PaddedFile.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 672d918..530cc6f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -117,6 +117,8 @@ Core and Builtins
Library
-------
+- Issue #10465: fix broken delegating of attributes by gzip._PaddedFile.
+
- Issue #10356: hash(Decimal("sNaN")) now raises ValueError instead of
TypeError.