[Python-checkins] cpython: Issue #25609: Double back-ticks to avoid “make check” buildbot failure

martin.panter python-checkins at python.org
Sat Apr 9 22:44:24 EDT 2016


https://hg.python.org/cpython/rev/5c0e332988b2
changeset:   100896:5c0e332988b2
user:        Martin Panter <vadmium+py at gmail.com>
date:        Sun Apr 10 02:41:25 2016 +0000
summary:
  Issue #25609: Double back-ticks to avoid “make check” buildbot failure

files:
  Doc/whatsnew/3.6.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -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`.)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list