summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing/connection.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-12-05 20:26:10 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-12-05 20:26:10 (GMT)
commit92bf919ed0da8d7f112f9659e6065976e382bae1 (patch)
tree1876e54c89f619563d8b4218bb7fa5f05eb86b0a /Lib/multiprocessing/connection.py
parent1a7b8d143965c281467379123187e0ef323380c3 (diff)
parentb757c83ec626442a8804b9417790443bf13b4fc8 (diff)
downloadcpython-92bf919ed0da8d7f112f9659e6065976e382bae1.zip
cpython-92bf919ed0da8d7f112f9659e6065976e382bae1.tar.gz
cpython-92bf919ed0da8d7f112f9659e6065976e382bae1.tar.bz2
Issue #22581: Use more "bytes-like object" throughout the docs and comments.
Diffstat (limited to 'Lib/multiprocessing/connection.py')
-rw-r--r--Lib/multiprocessing/connection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/connection.py b/Lib/multiprocessing/connection.py
index 2bf4435..863fb04 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()