diff options
author | Mike DePalatis <mike@depalatis.net> | 2018-03-30 07:36:06 (GMT) |
---|---|---|
committer | Xiang Zhang <angwerzx@126.com> | 2018-03-30 07:36:06 (GMT) |
commit | 233de021d915364bd3daee921d1d96d50d46d7fe (patch) | |
tree | a52834006568b130ae8e23dc36e06215515bd6c3 /Doc | |
parent | 69f5c73311a61b05485b19626935bf240ad31c5b (diff) | |
download | cpython-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.rst | 2 |
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() |