From: Georg Brandl Date: Sun, 13 Oct 2013 20:25:10 +0000 (+0200) Subject: Fix spacing of toplevel items. X-Git-Tag: v3.4.0a4~114^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a7c17e552df7bfdce3d1b493af38891cb59c2521;p=thirdparty%2FPython%2Fcpython.git Fix spacing of toplevel items. --- diff --git a/Doc/library/contextlib.rst b/Doc/library/contextlib.rst index cef5f1a83be1..0359750ffe3d 100644 --- a/Doc/library/contextlib.rst +++ b/Doc/library/contextlib.rst @@ -94,6 +94,7 @@ Functions and classes provided: without needing to explicitly close ``page``. Even if an error occurs, ``page.close()`` will be called when the :keyword:`with` block is exited. + .. function:: ignore(*exceptions) Return a context manager that ignores the specified exceptions if they @@ -156,6 +157,7 @@ Functions and classes provided: .. versionadded:: 3.4 + .. class:: ContextDecorator() A base class that enables a context manager to also be used as a decorator.