summaryrefslogtreecommitdiffstats
path: root/Doc/library/socketserver.rst
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-07-04 19:50:02 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2011-07-04 19:50:02 (GMT)
commit6f18b987823773cf78fe46a2f92add81b951d0d8 (patch)
tree439c0509436f0e5fdbfed24b9a441fff4e63b8f0 /Doc/library/socketserver.rst
parent49d495fa257c6f60381945df10d71ba242b32a52 (diff)
downloadcpython-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.rst2
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`