summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMike DePalatis <mike@depalatis.net>2018-03-30 07:36:06 (GMT)
committerXiang Zhang <angwerzx@126.com>2018-03-30 07:36:06 (GMT)
commit233de021d915364bd3daee921d1d96d50d46d7fe (patch)
treea52834006568b130ae8e23dc36e06215515bd6c3 /Doc
parent69f5c73311a61b05485b19626935bf240ad31c5b (diff)
downloadcpython-233de021d915364bd3daee921d1d96d50d46d7fe.zip
cpython-233de021d915364bd3daee921d1d96d50d46d7fe.tar.gz
cpython-233de021d915364bd3daee921d1d96d50d46d7fe.tar.bz2
Fix socket type in DatagramHandler documentation: TCP -> UDP (GH-6272)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/logging.handlers.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst
index 0974286..f7262e6 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()