From: Benjamin Peterson Date: Mon, 21 Apr 2008 22:57:00 +0000 (+0000) Subject: Fix Sphinx warnings X-Git-Tag: v2.6a3~124 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=60ffcbe88bf7552667a6f8693f4bc3e38ed625f8;p=python Fix Sphinx warnings --- diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index de3e9dc700..aa969b1a68 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -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`.)