#15872: Add tests for a 3.3 regression in the new fd-based shutil.rmtree
It cause shutil.rmtree not ignore all errors. Also add a test ensuring that
rmtree fails when being called on a symlink. Patch by Serhiy Storchaka.
diff --git a/Misc/NEWS b/Misc/NEWS
index b43799f..d6f5754 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -685,6 +685,10 @@
Tests
-----
+- Issue #15872: Add tests for a 3.3 regression which caused the new fd-based
+ shutil.rmtree not ignore all errors. Also add a test ensuring that rmtree
+ fails when being called on a symlink. Patch by Serhiy Storchaka.
+
- Issue #16559: Add more tests for the json module, including some from the
official test suite at json.org. Patch by Serhiy Storchaka.