From: Serhiy Storchaka Date: Mon, 27 Jan 2014 21:16:28 +0000 (+0200) Subject: Issue #19456: ntpath.join() now joins relative paths correctly when a drive X-Git-Tag: v3.4.0rc1~217 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f5d2f22475a340d65bf631f7bb0e5219a16ecae0;p=python Issue #19456: ntpath.join() now joins relative paths correctly when a drive is present. --- f5d2f22475a340d65bf631f7bb0e5219a16ecae0 diff --cc Misc/NEWS index fdcf37d480,c52ca189ea..6d528be9e7 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -48,11 -32,31 +48,14 @@@ Core and Builtin Library ------- + - Issue #19456: ntpath.join() now joins relative paths correctly when a drive + is present. + -- Issue #19077: tempfile.TemporaryDirectory cleanup is now most likely - successful when called during nulling out of modules during shutdown. - Misleading exception no longer raised when resource warning is emitted - during shutdown. +- Issue #19077: tempfile.TemporaryDirectory cleanup no longer fails when + called during shutdown. Emitting resource warning in __del__ no longer fails. + Original patch by Antoine Pitrou. + +- Issue #20394: Silence Coverity warning in audioop module. - Issue #20367: Fix behavior of concurrent.futures.as_completed() for duplicate arguments. Patch by Glenn Langford.