[Python-checkins] cpython (merge 3.2 -> default): #13289: merge with 3.2.

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


http://hg.python.org/cpython/rev/4411a59dc23c
changeset:   73192:4411a59dc23c
parent:      73188:01df2267fc2d
parent:      73191:fec8fdbccf3b
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Sat Oct 29 10:44:59 2011 +0300
summary:
  #13289: merge with 3.2.

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 recv 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