summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-20 06:53:58 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-20 06:53:58 (GMT)
commit2b0d2007a1a51a15a67dc7297cf5e21c8767b563 (patch)
tree4e8eebbb9db682202b19d2a8af246ed3cc730fb8 /Misc
parent2ef7c478444f453a04ae63ecc3d3de07915ad2b0 (diff)
downloadcpython-2b0d2007a1a51a15a67dc7297cf5e21c8767b563.zip
cpython-2b0d2007a1a51a15a67dc7297cf5e21c8767b563.tar.gz
cpython-2b0d2007a1a51a15a67dc7297cf5e21c8767b563.tar.bz2
Issue #23908: os functions now reject paths with embedded null character
on Windows instead of silently truncate them.
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 84bd2cc..e384e58 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Core and Builtins
Library
-------
+- Issue #23908: os functions now reject paths with embedded null character
+ on Windows instead of silently truncate them.
+
- Issue #23728: binascii.crc_hqx() could return an integer outside of the range
0-0xffff for empty data.