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

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


http://hg.python.org/cpython/rev/fec8fdbccf3b
changeset:   73191:fec8fdbccf3b
branch:      3.2
parent:      73180:2098bd4eed21
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Sat Oct 29 10:41:51 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