diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-06 19:11:33 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-06 19:11:33 (GMT) |
commit | 303718c3d7b650f946a6364f50c9048a1100535b (patch) | |
tree | cd3d098baf17dbe989833ffeed8e8f53d2c622fa /Doc/library/asyncore.rst | |
parent | f317cb7a2054c878f98aab38411d43fb179e53fd (diff) | |
parent | 5e028ae09e3181a1bebc402a9a414b8a79845090 (diff) | |
download | cpython-303718c3d7b650f946a6364f50c9048a1100535b.zip cpython-303718c3d7b650f946a6364f50c9048a1100535b.tar.gz cpython-303718c3d7b650f946a6364f50c9048a1100535b.tar.bz2 |
Fix empty strings to empty bytes objects.
Diffstat (limited to 'Doc/library/asyncore.rst')
-rw-r--r-- | Doc/library/asyncore.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst index 61079c5..0adf8d9 100644 --- a/Doc/library/asyncore.rst +++ b/Doc/library/asyncore.rst @@ -213,7 +213,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) |