From: Raymond Hettinger Date: Sun, 25 Aug 2002 16:36:49 +0000 (+0000) Subject: Replace 0 with False to match working in documentation. SF 599681. X-Git-Tag: v2.3c1~4300 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c8f80345126808cd25c77f008b839449a922771f;p=thirdparty%2FPython%2Fcpython.git Replace 0 with False to match working in documentation. SF 599681. --- diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py index 8e605081691d..e1d5ecbd6b72 100644 --- a/Lib/SocketServer.py +++ b/Lib/SocketServer.py @@ -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