]> granicus.if.org Git - python/commitdiff
Fix Sphinx warnings
authorBenjamin Peterson <benjamin@python.org>
Mon, 21 Apr 2008 22:57:00 +0000 (22:57 +0000)
committerBenjamin Peterson <benjamin@python.org>
Mon, 21 Apr 2008 22:57:00 +0000 (22:57 +0000)
Doc/whatsnew/2.6.rst

index de3e9dc70039916645a0f65aea1cf432ef20e825..aa969b1a687b3d2e3f85c75c7e58db1f780624aa 100644 (file)
@@ -1810,17 +1810,17 @@ complete list of changes, or look through the CVS logs for all the details.
   module that returns the contents of resource files included
   with an installed Python package.  For example::
 
-  >>> import pkgutil
-  >>> pkgutil.get_data('test', 'exception_hierarchy.txt')
-  'BaseException
-   +-- SystemExit
-   +-- KeyboardInterrupt
-   +-- GeneratorExit
-   +-- Exception
-        +-- StopIteration
-        +-- StandardError
-   ...'
-  >>> 
+    >>> import pkgutil
+    >>> pkgutil.get_data('test', 'exception_hierarchy.txt')
+    'BaseException
+     +-- SystemExit
+     +-- KeyboardInterrupt
+     +-- GeneratorExit
+     +-- Exception
+          +-- StopIteration
+          +-- StandardError
+     ...'
+    >>> 
 
   (Contributed by Paul Moore; :issue:`2439`.)