diff options
author | Nicolas Haller <nicolas@haller.im> | 2022-07-26 07:06:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-26 07:06:06 (GMT) |
commit | b7ce4625fe2a8a4d6c1db6b39b52c7f97d384caa (patch) | |
tree | 948175e25c0c8ab826f8dad15551ba073c01ca85 /Doc/library/syslog.rst | |
parent | 5012bedc7ca7d78b5a42bf60eef55bac263f4060 (diff) | |
download | cpython-b7ce4625fe2a8a4d6c1db6b39b52c7f97d384caa.zip cpython-b7ce4625fe2a8a4d6c1db6b39b52c7f97d384caa.tar.gz cpython-b7ce4625fe2a8a4d6c1db6b39b52c7f97d384caa.tar.bz2 |
Clarifying the documentation on library/syslog (GH-92587)
Diffstat (limited to 'Doc/library/syslog.rst')
-rw-r--r-- | Doc/library/syslog.rst | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Doc/library/syslog.rst b/Doc/library/syslog.rst index d264a33..ce51856 100644 --- a/Doc/library/syslog.rst +++ b/Doc/library/syslog.rst @@ -29,10 +29,15 @@ The module defines the following functions: value given in the :func:`openlog` call is used. If :func:`openlog` has not been called prior to the call to :func:`syslog`, - ``openlog()`` will be called with no arguments. + :func:`openlog` will be called with no arguments. .. audit-event:: syslog.syslog priority,message syslog.syslog + .. versionchanged:: 3.2 + In previous versions, :func:`openlog` would not be called automatically if + it wasn't called prior to the call to :func:`syslog`, deferring to the syslog + implementation to call ``openlog()``. + .. function:: openlog([ident[, logoption[, facility]]]) @@ -51,8 +56,7 @@ The module defines the following functions: .. versionchanged:: 3.2 In previous versions, keyword arguments were not allowed, and *ident* was - required. The default for *ident* was dependent on the system libraries, - and often was ``python`` instead of the name of the Python program file. + required. .. function:: closelog() |