Commit c8f80345 authored by Raymond Hettinger's avatar Raymond Hettinger

Replace 0 with False to match working in documentation. SF 599681.

parent 7ad09552
......@@ -319,7 +319,7 @@ class TCPServer(BaseServer):
request_queue_size = 5
allow_reuse_address = 0
allow_reuse_address = False
def __init__(self, server_address, RequestHandlerClass):
"""Constructor. May be extended, do not override."""
......@@ -380,7 +380,7 @@ class UDPServer(TCPServer):
"""UDP server class."""
allow_reuse_address = 0
allow_reuse_address = False
socket_type = socket.SOCK_DGRAM
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment