]> granicus.if.org Git - python/commitdiff
Fix markup
authorRaymond Hettinger <python@rcn.com>
Sat, 7 Aug 2010 04:19:49 +0000 (04:19 +0000)
committerRaymond Hettinger <python@rcn.com>
Sat, 7 Aug 2010 04:19:49 +0000 (04:19 +0000)
Doc/whatsnew/3.2.rst

index 12d35271639245db5490e48e257ba44d21937713..91fd0c2f6d203996be0a26152a72c68764105be7 100644 (file)
@@ -97,15 +97,13 @@ New, Improved, and Deprecated Modules
             page = urllib.urlopen(query).read()
             return parse_lyrics(page)
 
-   To help with choosing an effective cache size, the wrapped function
-   is instrumented with two attributes 'hits' and 'misses'::
+  To help with choosing an effective cache size, the wrapped function
+  is instrumented with two attributes *hits* and *misses*::
 
         >>> for song in user_requests:
         ...     find_lyrics(song)
-        >>> print find_lyrics.hits
-        4805
-        >>> print find_lyrics.misses
-        980
+        >>> print(find_lyrics.hits, find_lyrics.misses)
+        4805 980
 
   (Contributed by Raymond Hettinger)