summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncore.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-02-06 19:10:41 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-02-06 19:10:41 (GMT)
commit5e028ae09e3181a1bebc402a9a414b8a79845090 (patch)
tree174f4aea9af25e3f583f41a1f07e8945f14da955 /Doc/library/asyncore.rst
parent07fbd7847356c704ef30f9a4230a60281422dd39 (diff)
downloadcpython-5e028ae09e3181a1bebc402a9a414b8a79845090.zip
cpython-5e028ae09e3181a1bebc402a9a414b8a79845090.tar.gz
cpython-5e028ae09e3181a1bebc402a9a414b8a79845090.tar.bz2
Fix empty strings to empty bytes objects.
Diffstat (limited to 'Doc/library/asyncore.rst')
-rw-r--r--Doc/library/asyncore.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst
index 8f494d0..1521e72 100644
--- a/Doc/library/asyncore.rst
+++ b/Doc/library/asyncore.rst
@@ -208,7 +208,8 @@ any that have been added to the map during asynchronous service) is closed.
.. method:: recv(buffer_size)
Read at most *buffer_size* bytes from the socket's remote end-point. An
- empty string implies that the channel has been closed from the other end.
+ empty bytes object implies that the channel has been closed from the
+ other end.
.. method:: listen(backlog)