From: Martin Panter Date: Sun, 10 Apr 2016 02:41:25 +0000 (+0000) Subject: Issue #25609: Double back-ticks to avoid “make check” buildbot failure X-Git-Tag: v3.6.0a1~246 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3872d62133f03a6c8292ee2f97999597f90f9082;p=thirdparty%2FPython%2Fcpython.git Issue #25609: Double back-ticks to avoid “make check” buildbot failure --- diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index d217c4d09a0e..9be1a9c2912d 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -196,7 +196,7 @@ contextlib The :class:`contextlib.AbstractContextManager` class has been added to provide an abstract base class for context managers. It provides a sensible default implementation for `__enter__()` which returns -`self` and leaves `__exit__()` an abstract method. A matching +``self`` and leaves `__exit__()` an abstract method. A matching class has been added to the :mod:`typing` module as :class:`typing.ContextManager`. (Contributed by Brett Cannon in :issue:`25609`.)