diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-24 14:30:39 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-24 14:30:39 (GMT) |
commit | 9c1c52b7779fe073e5f4840f57a1833c23ac6616 (patch) | |
tree | 855578e2a280f25d904192c859870516843622e6 | |
parent | 4baf4800883cff28954835de143849b8744cfcda (diff) | |
download | cpython-9c1c52b7779fe073e5f4840f57a1833c23ac6616.zip cpython-9c1c52b7779fe073e5f4840f57a1833c23ac6616.tar.gz cpython-9c1c52b7779fe073e5f4840f57a1833c23ac6616.tar.bz2 |
#16019, #16020: fix syntax highlight.
-rw-r--r-- | Doc/tutorial/stdlib2.rst | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Doc/tutorial/stdlib2.rst b/Doc/tutorial/stdlib2.rst index 514d583..a5ba472 100644 --- a/Doc/tutorial/stdlib2.rst +++ b/Doc/tutorial/stdlib2.rst @@ -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() |