From: Antoine Pitrou Date: Sun, 15 Feb 2015 17:06:54 +0000 (+0100) Subject: Issue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib. X-Git-Tag: v3.5.0a2~142 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d07b855855c13814c2050f2f062aadf936fa886;p=thirdparty%2FPython%2Fcpython.git Issue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib. Detected and fixed by Serhiy. --- 2d07b855855c13814c2050f2f062aadf936fa886 diff --cc Misc/NEWS index 9051e00b357e,ca4685c9f6a4..d44015146734 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -13,21 -13,9 +13,24 @@@ Core and Builtin Library ------- + - Issue #23146: Fix mishandling of absolute Windows paths with forward + slashes in pathlib. + +- Issue #23096: Pickle representation of floats with protocol 0 now is the same + for both Python and C implementations. + +- Issue #19105: pprint now more efficiently uses free space at the right. + +- Issue #14910: Add allow_abbrev parameter to argparse.ArgumentParser. Patch by + Jonathan Paugh, Steven Bethard, paul j3 and Daniel Eriksson. + +- Issue #21717: tarfile.open() now supports 'x' (exclusive creation) mode. + +- Issue #23344: marshal.dumps() is now 20-25% faster on average. + +- Issue #20416: marshal.dumps() with protocols 3 and 4 is now 40-50% faster on + average. + - Issue #23421: Fixed compression in tarfile CLI. Patch by wdv4758h. - Issue #23361: Fix possible overflow in Windows subprocess creation code.