Deprecate contextlib.nested(). The with-statement now provides this functionality directly.
diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst
index 935afee..9204758 100644
--- a/Doc/library/contextlib.rst
+++ b/Doc/library/contextlib.rst
@@ -83,6 +83,8 @@
:meth:`__exit__` methods should avoid raising exceptions, and in particular they
should not re-raise a passed-in exception.
+ .. deprecated:: 2.7
+ The with-statement now supports this functionality directly.
.. function:: closing(thing)