From: Barry Warsaw Date: Thu, 9 Oct 2003 23:49:24 +0000 (+0000) Subject: BaseServer, TCPServer: Fixed typo in class docstring. X-Git-Tag: v2.3.3c1~142 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8ea385f2d131719f1e14f32e655a8da990bf3463;p=thirdparty%2FPython%2Fcpython.git BaseServer, TCPServer: Fixed typo in class docstring. --- diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py index 270f4cd69d93..06ed134b0f39 100644 --- a/Lib/SocketServer.py +++ b/Lib/SocketServer.py @@ -173,7 +173,7 @@ class BaseServer: - address_family - socket_type - - reuse_address + - allow_reuse_address Instance variables: @@ -304,7 +304,7 @@ class TCPServer(BaseServer): - address_family - socket_type - request_queue_size (only for stream sockets) - - reuse_address + - allow_reuse_address Instance variables: