Deprecate contextlib.nested(). The with-statement now provides this functionality directly.
diff --git a/Misc/NEWS b/Misc/NEWS
index 19f323f..12dfbac 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,7 +15,8 @@
- Issue #6089: Fixed str.format with certain invalid field specifiers
that would raise SystemError.
-- 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 #5829: complex("1e500") no longer raises OverflowError. This
makes it consistent with float("1e500") and interpretation of real