[Python-checkins] r65561 - python/trunk/Lib/multiprocessing/connection.py

mark.dickinson python-checkins at python.org
Wed Aug 6 22:12:31 CEST 2008


Author: mark.dickinson
Date: Wed Aug  6 22:12:30 2008
New Revision: 65561

Log:
Docstring typo


Modified:
   python/trunk/Lib/multiprocessing/connection.py

Modified: python/trunk/Lib/multiprocessing/connection.py
==============================================================================
--- python/trunk/Lib/multiprocessing/connection.py	(original)
+++ python/trunk/Lib/multiprocessing/connection.py	Wed Aug  6 22:12:30 2008
@@ -209,7 +209,7 @@
 
 class SocketListener(object):
     '''
-    Represtation of a socket which is bound to an address and listening
+    Representation of a socket which is bound to an address and listening
     '''
     def __init__(self, address, family, backlog=1):
         self._socket = socket.socket(getattr(socket, family))


More information about the Python-checkins mailing list