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 /Doc/library | |
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 'Doc/library')
-rw-r--r-- | Doc/library/shutil.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst index e4f348c..82942db 100644 --- a/Doc/library/shutil.rst +++ b/Doc/library/shutil.rst @@ -352,6 +352,10 @@ Directory and files operations .. versionadded:: 3.3 + .. versionchanged:: 3.4 + The :class:`bytes` type is now accepted. If *cmd* type is :class:`bytes`, + the result type is also :class:`bytes`. + .. exception:: Error |