summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2005-05-20 03:07:06 (GMT)
committerSkip Montanaro <skip@pobox.com>2005-05-20 03:07:06 (GMT)
commitbbf12ba7b20059324cf10e26aa98bc0fa405ad3d (patch)
treefde2a9dead8987c5ddffe6cab4a997322483b0ac /Misc
parent7961aa6135e5a26c1cc14bbcaa2668d2ec98b0b9 (diff)
downloadcpython-bbf12ba7b20059324cf10e26aa98bc0fa405ad3d.zip
cpython-bbf12ba7b20059324cf10e26aa98bc0fa405ad3d.tar.gz
cpython-bbf12ba7b20059324cf10e26aa98bc0fa405ad3d.tar.bz2
Disallow opening files with modes 'aU' or 'wU' as specified by PEP
278. Closes bug 967182.
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 4d8f3b1..77e059e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5 alpha 1?
Core and builtins
-----------------
+- bug #967182: disallow opening files with 'wU' or 'aU' as specified by PEP
+ 278.
+
- patch #1109424: int, long, float, complex, and unicode now check for the
proper magic slot for type conversions when subclassed. Previously the
magic slot was ignored during conversion. Semantics now match the way