From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 11 Jan 2020 05:39:01 +0000 (-0800) Subject: Fix host in address of socket.create_server example. (GH-17706) X-Git-Tag: v3.8.2rc1~82 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f40482fde59ff307569fa5676183dd8432809a8;p=thirdparty%2FPython%2Fcpython.git Fix host in address of socket.create_server example. (GH-17706) Host as None in address raises TypeError since it should be string, bytes or bytearray. (cherry picked from commit 43682f1e39a3c61f0e8a638b887bcdcbfef766c5) Co-authored-by: Karthikeyan Singaravelan --- diff --git a/Lib/socket.py b/Lib/socket.py index 5b17906ef479..f83f36d0ada5 100644 --- a/Lib/socket.py +++ b/Lib/socket.py @@ -843,7 +843,7 @@ def create_server(address, *, family=AF_INET, backlog=None, reuse_port=False, connections. When false it will explicitly disable this option on platforms that enable it by default (e.g. Linux). - >>> with create_server((None, 8000)) as server: + >>> with create_server(('', 8000)) as server: ... while True: ... conn, addr = server.accept() ... # handle new connection