Deprecate contextlib.nested().  The with-statement now provides this functionality directly.
diff --git a/Misc/NEWS b/Misc/NEWS
index e622cb4..13be5e7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,7 +12,8 @@
 Core and Builtins
 -----------------
 
-- Added support for multiple context managers in the same with statement.
+- Added support for multiple context managers in the same with-statement.
+  Deprecated contextlib.nested() which is no longer needed.
 
 - Issue #6101: A new opcode, SETUP_WITH, has been added to speed up the with
   statement and correctly lookup the __enter__ and __exit__ special methods.