diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-12-18 11:05:04 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-12-18 11:05:04 (GMT) |
commit | 225821c6537ec4c3b5269edabbf914527d6a7031 (patch) | |
tree | ade90e9d54278ecc5e47550aed982551f2613240 /Lib/multiprocessing | |
parent | 29e2aa696d5db7705c498738a16525cbcd0b0ee3 (diff) | |
download | cpython-225821c6537ec4c3b5269edabbf914527d6a7031.zip cpython-225821c6537ec4c3b5269edabbf914527d6a7031.tar.gz cpython-225821c6537ec4c3b5269edabbf914527d6a7031.tar.bz2 |
Issue #25899: Converted non-ASCII characters in docstrings and manpage
to ASCII replacements. Original patch by Chris Angelico.
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 4c32237..d0a1b86 100644 --- a/Lib/multiprocessing/connection.py +++ b/Lib/multiprocessing/connection.py @@ -397,7 +397,7 @@ class Connection(_ConnectionBase): self._send(header) self._send(buf) else: - # Issue # 20540: concatenate before sending, to avoid delays due + # Issue #20540: concatenate before sending, to avoid delays due # to Nagle's algorithm on a TCP socket. # Also note we want to avoid sending a 0-length buffer separately, # to avoid "broken pipe" errors if the other end closed the pipe. |