diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-27 21:16:28 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-27 21:16:28 (GMT) |
commit | f5d2f22475a340d65bf631f7bb0e5219a16ecae0 (patch) | |
tree | 933e0bf5874045610fb3b16bd2ae8c17d6701665 /Misc | |
parent | 2393dca4721b308704f3bc8c8791b06062daa7e3 (diff) | |
parent | c369c2c688c407433d88a7cad75cda88fbe799b5 (diff) | |
download | cpython-f5d2f22475a340d65bf631f7bb0e5219a16ecae0.zip cpython-f5d2f22475a340d65bf631f7bb0e5219a16ecae0.tar.gz cpython-f5d2f22475a340d65bf631f7bb0e5219a16ecae0.tar.bz2 |
Issue #19456: ntpath.join() now joins relative paths correctly when a drive
is present.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -48,6 +48,9 @@ Core and Builtins Library ------- +- Issue #19456: ntpath.join() now joins relative paths correctly when a drive + is present. + - 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. |