From: Gregory P. Smith Date: Wed, 10 Oct 2012 10:53:16 +0000 (-0700) Subject: Fixes Issue #16114: The subprocess module no longer provides a X-Git-Tag: v3.4.0a1~2287^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=70e0007f550b5af195c4c8da8cff0e44a6c138dd;p=python Fixes Issue #16114: The subprocess module no longer provides a misleading error message stating that args[0] did not exist when either the cwd or executable keyword arguments specified a path that did not exist. --- 70e0007f550b5af195c4c8da8cff0e44a6c138dd diff --cc Misc/NEWS index 370802fd0b,d8fbc73918..b033898a41 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -42,19 -36,13 +42,23 @@@ Core and Builtin Library ------- + - Issue #16114: The subprocess module no longer provides a misleading error + message stating that args[0] did not exist when either the cwd or executable + keyword arguments specified a path that did not exist. + - Issue #16169: Fix ctypes.WinError()'s confusion between errno and winerror. +- Issue #1492704: shutil.copyfile() raises a distinct SameFileError now if + source and destination are the same file. Patch by Atsuo Ishimoto. + +- Issue #13896: Make shelf instances work with 'with' as context managers. + Original patch by Filip Gruszczyński. + +- Issue #15417: Add support for csh and fish in venv activation scripts. + +- Issue #16123: IDLE - deprecate running without a subprocess. + Patch by Roger Serwy. + - Issue #16089: Allow ElementTree.TreeBuilder to work again with a non-Element element_factory (fixes a regression in SimpleTAL).