From: Guido van Rossum Date: Wed, 6 Jan 2016 17:53:51 +0000 (-0800) Subject: Issue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri. (Merge... X-Git-Tag: v3.6.0a1~822 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=080169c494e3a7e252d9b43947cbd2576e1a071f;p=thirdparty%2FPython%2Fcpython.git Issue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri. (Merge 3.5->3.6) --- 080169c494e3a7e252d9b43947cbd2576e1a071f diff --cc Misc/NEWS index 7277838f4ee4,84c8c8aedfa2..ae2a704468db --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -128,10 -41,9 +128,13 @@@ Core and Builtin Library ------- + - Issue #24120: Ignore PermissionError when traversing a tree with + pathlib.Path.[r]glob(). Patch by Ulrich Petri. + +- Issue #21815: Accept ] characters in the data portion of imap responses, + in order to handle the flags with square brackets accepted and produced + by servers such as gmail. + - Issue #25447: fileinput now uses sys.stdin as-is if it does not have a buffer attribute (restores backward compatibility).