diff options
author | Georg Brandl <georg@python.org> | 2008-04-13 07:07:44 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-04-13 07:07:44 (GMT) |
commit | 4aa8df28713e347592321a76d0afd5e8a315574f (patch) | |
tree | 2ab32432b7479eaed480096d0eb194b9314a4044 | |
parent | e3d3785e116c319980fe5698ae51e43a68733042 (diff) | |
download | cpython-4aa8df28713e347592321a76d0afd5e8a315574f.zip cpython-4aa8df28713e347592321a76d0afd5e8a315574f.tar.gz cpython-4aa8df28713e347592321a76d0afd5e8a315574f.tar.bz2 |
Fix markup.
-rw-r--r-- | Doc/library/warnings.rst | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Doc/library/warnings.rst b/Doc/library/warnings.rst index 2267a0d..94d4738 100644 --- a/Doc/library/warnings.rst +++ b/Doc/library/warnings.rst @@ -200,7 +200,7 @@ Available Functions sources). .. versionchanged:: 2.5 - Added the `module_globals` parameter. + Added the *module_globals* parameter. .. function:: warnpy3k(message[, category[, stacklevel]]) @@ -219,10 +219,8 @@ Available Functions this function with an alternative implementation by assigning to ``warnings.showwarning``. - ..versionchanged:: 2.6 - Added the `line` argument. - - + .. versionchanged:: 2.6 + Added the *line* argument. .. function:: formatwarning(message, category, filename, lineno[, line]) @@ -230,8 +228,8 @@ Available Functions Format a warning the standard way. This returns a string which may contain embedded newlines and ends in a newline. - ..versionchanged:: 2.6 - Added the `line` argument. + .. versionchanged:: 2.6 + Added the *line* argument. .. function:: filterwarnings(action[, message[, category[, module[, lineno[, append]]]]]) |