]> granicus.if.org Git - python/commitdiff
Missed one instance of code-block:: text highlighting to revert.
authorGeorg Brandl <georg@python.org>
Wed, 10 Oct 2012 14:56:15 +0000 (16:56 +0200)
committerGeorg Brandl <georg@python.org>
Wed, 10 Oct 2012 14:56:15 +0000 (16:56 +0200)
Doc/library/doctest.rst

index c8a439c8836a15c6c0365b17b09450a171697130..a1a9c2f833cad1d5b23e2ac43744247feaf39fbb 100644 (file)
@@ -798,9 +798,7 @@ Another bad idea is to print things that embed an object address, like ::
    >>> C()   # the default repr() for instances embeds an address
    <__main__.C instance at 0x00AC18F0>
 
-The :const:`ELLIPSIS` directive gives a nice approach for the last example:
-
-.. code-block:: text
+The :const:`ELLIPSIS` directive gives a nice approach for the last example::
 
    >>> C() #doctest: +ELLIPSIS
    <__main__.C instance at 0x...>