summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-12-16 21:48:48 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-12-16 21:48:48 (GMT)
commitfffb96ba66ab46c2de48e228d69ab10a19b1ea2d (patch)
tree27e45b60f5c184dac7a7ec03655a273b92ccb379 /Misc
parenta4275b276c14d0de21fb8e9210dcf302c6dd5fd8 (diff)
downloadcpython-fffb96ba66ab46c2de48e228d69ab10a19b1ea2d.zip
cpython-fffb96ba66ab46c2de48e228d69ab10a19b1ea2d.tar.gz
cpython-fffb96ba66ab46c2de48e228d69ab10a19b1ea2d.tar.bz2
Issue #18283: shutil.which() now supports bytes argument, not only text argument.
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 ee3c793..5de3451 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,8 @@ Core and Builtins
Library
-------
+- Issue #18283: shutil.which() now supports bytes argument, not only text argument.
+
- Issue #19921: When Path.mkdir() is called with parents=True, any missing
parent is created with the default permissions, ignoring the mode argument
(mimicking the POSIX "mkdir -p" command).