From: Berker Peksag Date: Fri, 11 Mar 2016 21:08:11 +0000 (+0200) Subject: Issue #20589: Invoking Path.owner() and Path.group() on Windows now raise X-Git-Tag: v3.6.0a1~502 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0e9b6919f5764c20dfeae720b28e80652ddb00e;p=python Issue #20589: Invoking Path.owner() and Path.group() on Windows now raise NotImplementedError instead of ImportError. --- d0e9b6919f5764c20dfeae720b28e80652ddb00e diff --cc Misc/NEWS index 542af60005,3d9a78735c..45d8f2e2b6 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -201,16 -90,14 +201,19 @@@ Core and Builtin Library ------- + - Issue #20589: Invoking Path.owner() and Path.group() on Windows now raise + NotImplementedError instead of ImportError. + - Issue #26177: Fixed the keys() method for Canvas and Scrollbar widgets. -- Issue #15068: Got rid of excessive buffering in the fileinput module. - The bufsize parameter is no longer used. +- Issue #21042: Make ctypes.util.find_library() return the full path on + Linux, similar to other platforms. Patch by Tamás Bence Gedai. + +- Issue #15068: Got rid of excessive buffering in fileinput. + The bufsize parameter is now deprecated and ignored. + +- Issue #19475: Added an optional argument timespec to the datetime + isoformat() method to choose the precision of the time component. - Issue #2202: Fix UnboundLocalError in AbstractDigestAuthHandler.get_algorithm_impls. Initial patch by Mathieu Dupuy.