[Python-checkins] cpython (2.7): #13289: fix typo.

ezio.melotti python-checkins at python.org
Sat Oct 29 09:45:11 CEST 2011


http://hg.python.org/cpython/rev/8ddd4c618b48
changeset:   73190:8ddd4c618b48
branch:      2.7
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Sat Oct 29 10:40:20 2011 +0300
summary:
  #13289: fix typo.

files:
  Lib/SocketServer.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py
--- a/Lib/SocketServer.py
+++ b/Lib/SocketServer.py
@@ -82,7 +82,7 @@
 data is stored externally (e.g. in the file system), a synchronous
 class will essentially render the service "deaf" while one request is
 being handled -- which may be for a very long time if a client is slow
-to reqd all the data it has requested.  Here a threading or forking
+to read all the data it has requested.  Here a threading or forking
 server is appropriate.
 
 In some cases, it may be appropriate to process part of a request

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list