diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-12-16 21:48:48 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-12-16 21:48:48 (GMT) |
commit | fffb96ba66ab46c2de48e228d69ab10a19b1ea2d (patch) | |
tree | 27e45b60f5c184dac7a7ec03655a273b92ccb379 /Misc | |
parent | a4275b276c14d0de21fb8e9210dcf302c6dd5fd8 (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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). |