diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2011-07-04 19:50:02 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2011-07-04 19:50:02 (GMT) |
commit | 6f18b987823773cf78fe46a2f92add81b951d0d8 (patch) | |
tree | 439c0509436f0e5fdbfed24b9a441fff4e63b8f0 /Doc/library/socketserver.rst | |
parent | 49d495fa257c6f60381945df10d71ba242b32a52 (diff) | |
download | cpython-6f18b987823773cf78fe46a2f92add81b951d0d8.zip cpython-6f18b987823773cf78fe46a2f92add81b951d0d8.tar.gz cpython-6f18b987823773cf78fe46a2f92add81b951d0d8.tar.bz2 |
Fix closes issue10403 - Let's not use members anymore.
Diffstat (limited to 'Doc/library/socketserver.rst')
-rw-r--r-- | Doc/library/socketserver.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst index fce216e..b7bd91f 100644 --- a/Doc/library/socketserver.rst +++ b/Doc/library/socketserver.rst @@ -85,7 +85,7 @@ a threading UDP server class is created as follows:: class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass The mix-in class must come first, since it overrides a method defined in -:class:`UDPServer`. Setting the various member variables also changes the +:class:`UDPServer`. Setting the various attributes also change the behavior of the underlying server mechanism. To implement a service, you must derive a class from :class:`BaseRequestHandler` |