[Python-checkins] python/dist/src/Lib SocketServer.py,1.38,1.39

gvanrossum at users.sourceforge.net gvanrossum at users.sourceforge.net
Sat Apr 30 02:20:38 CEST 2005


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15954

Modified Files:
	SocketServer.py 
Log Message:
Fixed a typo in docstring I happened upon.


Index: SocketServer.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/SocketServer.py,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- SocketServer.py	31 Dec 2004 19:15:26 -0000	1.38
+++ SocketServer.py	30 Apr 2005 00:20:35 -0000	1.39
@@ -50,7 +50,7 @@
 unix server classes.
 
 Forking and threading versions of each type of server can be created
-using the ForkingServer and ThreadingServer mix-in classes.  For
+using the ForkingMixIn and ThreadingMixIn mix-in classes.  For
 instance, a threading UDP server class is created as follows:
 
         class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass



More information about the Python-checkins mailing list