diff options
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/warnings.rst | 10 | ||||
-rw-r--r-- | Doc/library/xml.dom.minidom.rst | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/Doc/library/warnings.rst b/Doc/library/warnings.rst index c3c0309..48a343c 100644 --- a/Doc/library/warnings.rst +++ b/Doc/library/warnings.rst @@ -202,16 +202,16 @@ Available Functions sources). -.. function:: showwarning(message, category, filename, lineno[, file]) +.. function:: showwarning(message, category, filename, lineno[, file[, line]]) Write a warning to a file. The default implementation calls - ``formatwarning(message, category, filename, lineno)`` and writes the resulting - string to *file*, which defaults to ``sys.stderr``. You may replace this - function with an alternative implementation by assigning to + ``formatwarning(message, category, filename, lineno, line)`` and writes the + resulting string to *file*, which defaults to ``sys.stderr``. You may replace + this function with an alternative implementation by assigning to ``warnings.showwarning``. -.. function:: formatwarning(message, category, filename, lineno) +.. function:: formatwarning(message, category, filename, lineno[, line]) Format a warning the standard way. This returns a string which may contain embedded newlines and ends in a newline. diff --git a/Doc/library/xml.dom.minidom.rst b/Doc/library/xml.dom.minidom.rst index de67d07..bb3ad02 100644 --- a/Doc/library/xml.dom.minidom.rst +++ b/Doc/library/xml.dom.minidom.rst @@ -126,7 +126,7 @@ module documentation. This section lists the differences between the API and to discard children of that node. -.. method:: Node.writexml(writer[,indent=""[,addindent=""[,newl=""]]]) +.. method:: Node.writexml(writer[, indent=""[, addindent=""[, newl=""[, encoding=""]]]]) Write XML to the writer object. The writer should have a :meth:`write` method which matches that of the file object interface. The *indent* parameter is the @@ -153,7 +153,7 @@ module documentation. This section lists the differences between the API and encoding argument should be specified as "utf-8". -.. method:: Node.toprettyxml([indent[, newl[, encoding]]]) +.. method:: Node.toprettyxml([indent=""[, newl=""[, encoding=""]]]) Return a pretty-printed version of the document. *indent* specifies the indentation string and defaults to a tabulator; *newl* specifies the string |