]> granicus.if.org Git - python/commitdiff
#16019, #16020: fix syntax highlight.
authorEzio Melotti <ezio.melotti@gmail.com>
Mon, 24 Sep 2012 14:30:39 +0000 (17:30 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Mon, 24 Sep 2012 14:30:39 +0000 (17:30 +0300)
Doc/tutorial/stdlib2.rst

index 514d583d9447e086ac2ae8b2aaf7527f070a23cf..a5ba47250202efd381cc9ab5027894a8a9e1a45b 100644 (file)
@@ -95,7 +95,7 @@ placeholders unchanged if data is missing::
    >>> d = dict(item='unladen swallow')
    >>> t.substitute(d)
    Traceback (most recent call last):
-     . . .
+     ...
    KeyError: 'owner'
    >>> t.safe_substitute(d)
    'Return the unladen swallow to $owner.'
@@ -218,7 +218,9 @@ At its simplest, log messages are sent to a file or to ``sys.stderr``::
    logging.error('Error occurred')
    logging.critical('Critical error -- shutting down')
 
-This produces the following output::
+This produces the following output:
+
+.. code-block:: none
 
    WARNING:root:Warning:config file server.conf not found
    ERROR:root:Error occurred
@@ -309,6 +311,8 @@ tree searches::
    >>> print "Handling", d.popleft()
    Handling task1
 
+::
+
    unsearched = deque([starting_node])
    def breadth_first_search(unsearched):
        node = unsearched.popleft()