]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri. (Merge...
authorGuido van Rossum <guido@dropbox.com>
Wed, 6 Jan 2016 17:53:51 +0000 (09:53 -0800)
committerGuido van Rossum <guido@dropbox.com>
Wed, 6 Jan 2016 17:53:51 +0000 (09:53 -0800)
1  2 
Lib/test/test_pathlib.py
Misc/ACKS
Misc/NEWS

Simple merge
diff --cc Misc/ACKS
Simple merge
diff --cc Misc/NEWS
index 7277838f4ee416fd699006029ac163a785256076,84c8c8aedfa21c3fcf22bc1defa4f89f4a8ea92b..ae2a704468dbf1ff2f13b12aef347887dac64f33
+++ 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).