diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-05 22:25:22 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-05 22:25:22 +0200 |
commit | 26165893d39236c9545705ad586ff808f049a0d5 (patch) | |
tree | 13d60d061727402007b98d83c5dc8c884a31dbaa /Lib/multiprocessing | |
parent | b7b4e0984d09a9c77c30f0a60863c40c83fcd8d6 (diff) | |
download | cpython-26165893d39236c9545705ad586ff808f049a0d5.tar.gz |
Issue #22581: Use more "bytes-like object" throughout the docs and comments.
Diffstat (limited to 'Lib/multiprocessing')
-rw-r--r-- | Lib/multiprocessing/connection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/connection.py b/Lib/multiprocessing/connection.py index 3bc716f4d4..87117d91cb 100644 --- a/Lib/multiprocessing/connection.py +++ b/Lib/multiprocessing/connection.py @@ -220,7 +220,7 @@ class _ConnectionBase: def recv_bytes_into(self, buf, offset=0): """ - Receive bytes data into a writeable buffer-like object. + Receive bytes data into a writeable bytes-like object. Return the number of bytes read. """ self._check_closed() |