diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-04-21 22:57:00 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-04-21 22:57:00 (GMT) |
commit | 60ffcbe88bf7552667a6f8693f4bc3e38ed625f8 (patch) | |
tree | a4c4d64f99606f3b0504f7ecdd401535c9be1e54 /Doc/whatsnew | |
parent | dd8d824a560a27b00ff0dc111a0b1744d4418dda (diff) | |
download | cpython-60ffcbe88bf7552667a6f8693f4bc3e38ed625f8.zip cpython-60ffcbe88bf7552667a6f8693f4bc3e38ed625f8.tar.gz cpython-60ffcbe88bf7552667a6f8693f4bc3e38ed625f8.tar.bz2 |
Fix Sphinx warnings
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/2.6.rst | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index de3e9dc..aa969b1 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`.) |