diff options
author | Barry Warsaw <barry@python.org> | 2003-10-09 22:44:05 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2003-10-09 22:44:05 (GMT) |
commit | 3aaad5079b6df05a34df64a26ca9e840f8685af1 (patch) | |
tree | 0a5b01bca754f3635e72ce7e119a5ac273d6528f | |
parent | 98c65bed91432bf17a335382cdd672b16391f10c (diff) | |
download | cpython-3aaad5079b6df05a34df64a26ca9e840f8685af1.zip cpython-3aaad5079b6df05a34df64a26ca9e840f8685af1.tar.gz cpython-3aaad5079b6df05a34df64a26ca9e840f8685af1.tar.bz2 |
TCPServer: Fixed typo in class docstring.
Backport candidate.
-rw-r--r-- | Lib/SocketServer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py index 270f4cd..dee56da 100644 --- a/Lib/SocketServer.py +++ b/Lib/SocketServer.py @@ -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: |