changeset: 100896:5c0e332988b2 user: Martin Panter date: Sun Apr 10 02:41:25 2016 +0000 files: Doc/whatsnew/3.6.rst description: Issue #25609: Double back-ticks to avoid “make check” buildbot failure diff -r 4c19396bd4a0 -r 5c0e332988b2 Doc/whatsnew/3.6.rst --- a/Doc/whatsnew/3.6.rst Sat Apr 09 14:05:19 2016 +0000 +++ b/Doc/whatsnew/3.6.rst Sun Apr 10 02:41:25 2016 +0000 @@ -196,7 +196,7 @@ 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`.)