summaryrefslogtreecommitdiff
path: root/Doc/howto/logging-cookbook.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-05-07 10:49:58 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-05-07 10:49:58 +0300
commit1acbf853c8be743c88141501ae879d63eb8ce209 (patch)
tree436fd38b15cda0f644ccae8d238096087c17f63d /Doc/howto/logging-cookbook.rst
parenta5f3a507345c8a01d99960a036dfa9d1baf8da10 (diff)
parent6dff0205b724669cc0469dd65a3f7edc5a69e1e7 (diff)
downloadcpython-git-1acbf853c8be743c88141501ae879d63eb8ce209.tar.gz
Issue #26736: Used HTTPS for external links in the documentation if possible.
Diffstat (limited to 'Doc/howto/logging-cookbook.rst')
-rw-r--r--Doc/howto/logging-cookbook.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst
index 5cde2c71d3..57b433398b 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -1634,11 +1634,11 @@ works::
Inserting a BOM into messages sent to a SysLogHandler
-----------------------------------------------------
-`RFC 5424 <http://tools.ietf.org/html/rfc5424>`_ requires that a
+`RFC 5424 <https://tools.ietf.org/html/rfc5424>`_ requires that a
Unicode message be sent to a syslog daemon as a set of bytes which have the
following structure: an optional pure-ASCII component, followed by a UTF-8 Byte
Order Mark (BOM), followed by Unicode encoded using UTF-8. (See the `relevant
-section of the specification <http://tools.ietf.org/html/rfc5424#section-6>`_.)
+section of the specification <https://tools.ietf.org/html/rfc5424#section-6>`_.)
In Python 3.1, code was added to
:class:`~logging.handlers.SysLogHandler` to insert a BOM into the message, but