diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-14 03:32:35 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-14 03:32:35 (GMT) |
commit | e0add764688a3f3237749e0c2830b669d2c76ca0 (patch) | |
tree | f69c0c5a605892fccf92fb7f25396dfcf2572231 /Doc/library/syslog.rst | |
parent | 56f37aa965e794046dad62ddef2cb63e59e4f357 (diff) | |
download | cpython-e0add764688a3f3237749e0c2830b669d2c76ca0.zip cpython-e0add764688a3f3237749e0c2830b669d2c76ca0.tar.gz cpython-e0add764688a3f3237749e0c2830b669d2c76ca0.tar.bz2 |
#15831: document multiple signatures on different lines. Patch by Chris Jerdonek.
Diffstat (limited to 'Doc/library/syslog.rst')
-rw-r--r-- | Doc/library/syslog.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/syslog.rst b/Doc/library/syslog.rst index 645c326..974ecf9 100644 --- a/Doc/library/syslog.rst +++ b/Doc/library/syslog.rst @@ -17,7 +17,8 @@ library that can speak to a syslog server is available in the The module defines the following functions: -.. function:: syslog([priority,] message) +.. function:: syslog(message) + syslog(priority, message) Send the string *message* to the system logger. A trailing newline is added if necessary. Each message is tagged with a priority composed of a |