[Python-checkins] Fix socket type in DatagramHandler documentation: TCP -> UDP (GH-6272)

Miss Islington (bot) webhook-mailer at python.org
Fri Mar 30 03:48:48 EDT 2018


https://github.com/python/cpython/commit/7dcfd6c66344594844d441e197174366ff9cfe4e
commit: 7dcfd6c66344594844d441e197174366ff9cfe4e
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-03-30T00:48:45-07:00
summary:

Fix socket type in DatagramHandler documentation: TCP -> UDP (GH-6272)

(cherry picked from commit 233de021d915364bd3daee921d1d96d50d46d7fe)

Co-authored-by: Mike DePalatis <mike at depalatis.net>

files:
M Doc/library/logging.handlers.rst

diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst
index 0974286e55dc..f7262e60a31b 100644
--- a/Doc/library/logging.handlers.rst
+++ b/Doc/library/logging.handlers.rst
@@ -524,7 +524,7 @@ over UDP sockets.
 
    .. versionchanged:: 3.4
       If ``port`` is specified as ``None``, a Unix domain socket is created
-      using the value in ``host`` - otherwise, a TCP socket is created.
+      using the value in ``host`` - otherwise, a UDP socket is created.
 
    .. method:: emit()
 



More information about the Python-checkins mailing list