summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-20 07:12:28 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-20 07:12:28 (GMT)
commit7e9d1d1a1b8ec4db9b9b6789b448c4202ab84b48 (patch)
tree0cecdabe5db216090cd9fb763bf3cd6c3b2165e3 /Misc
parente3037e114509913874a28746f5e05780919e909a (diff)
parent2b0d2007a1a51a15a67dc7297cf5e21c8767b563 (diff)
downloadcpython-7e9d1d1a1b8ec4db9b9b6789b448c4202ab84b48.zip
cpython-7e9d1d1a1b8ec4db9b9b6789b448c4202ab84b48.tar.gz
cpython-7e9d1d1a1b8ec4db9b9b6789b448c4202ab84b48.tar.bz2
Issue #23908: os functions now reject paths with embedded null character
on Windows instead of silently truncate them. Removed no longer used _PyUnicode_HasNULChars().
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 7fa01dd..afe6eee 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,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.