]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #25860: os.fwalk() no longer skips remaining directories when error occurs.
authorSerhiy Storchaka <storchaka@gmail.com>
Tue, 22 Dec 2015 22:09:01 +0000 (00:09 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Tue, 22 Dec 2015 22:09:01 +0000 (00:09 +0200)
Original patch by Samson Lee.

1  2 
Lib/test/test_os.py
Misc/NEWS

Simple merge
diff --cc Misc/NEWS
index 4a94f76c2360b1e77be204ee9ba2324c5c3b74e8,9aa67bfe721fba0ed3fbb00798750203e59e6f5f..9ba8d587ccd1ca85dd1d7176b89120a1166d769d
+++ b/Misc/NEWS
@@@ -115,24 -28,13 +115,27 @@@ Core and Builtin
  Library
  -------
  
+ - Issue #25860: os.fwalk() no longer skips remaining directories when error
+   occurs.  Original patch by Samson Lee.
  - Issue #25914: Fixed and simplified OrderedDict.__sizeof__.
  
 +- Issue #25869: Optimized deepcopying ElementTree; it is now 20 times faster.
 +
 +- Issue #25873: Optimized iterating ElementTree.  Iterating elements
 +  Element.iter() is now 40% faster, iterating text Element.itertext()
 +  is now up to 2.5 times faster.
 +
  - Issue #25902: Fixed various refcount issues in ElementTree iteration.
  
 +- Issue #22227: The TarFile iterator is reimplemented using generator.
 +  This implementation is simpler that using class.
 +
 +- Issue #25638: Optimized ElementTree.iterparse(); it is now 2x faster.
 +  Optimized ElementTree parsing; it is now 10% faster.
 +
 +- Issue #25761: Improved detecting errors in broken pickle data.
 +
  - Issue #25717: Restore the previous behaviour of tolerating most fstat()
    errors when opening files.  This was a regression in 3.5a1, and stopped
    anonymous temporary files from working in special cases.