diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2011-07-04 18:31:53 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2011-07-04 18:31:53 (GMT) |
commit | 276a58b8218ba2e6c13114ce3942d25328d0e8ee (patch) | |
tree | e2c2c1af548b31accfbcc69ba7db8a9c9c80e661 /Doc/library/socketserver.rst | |
parent | 1945f93888f6acadd0bde6541f39d7616f9a5392 (diff) | |
parent | a6bac95a3c6eb926d3eded04e4b04a1d552053d1 (diff) | |
download | cpython-276a58b8218ba2e6c13114ce3942d25328d0e8ee.zip cpython-276a58b8218ba2e6c13114ce3942d25328d0e8ee.tar.gz cpython-276a58b8218ba2e6c13114ce3942d25328d0e8ee.tar.bz2 |
Merge from 3.2 . Replace the term members with correct and appropriate terminology. Initial patch by Adam Woodbeck.
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 a4c9b63..b63571d 100644 --- a/Doc/library/socketserver.rst +++ b/Doc/library/socketserver.rst @@ -81,7 +81,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` |