summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-12-18 11:05:04 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-12-18 11:05:04 (GMT)
commit225821c6537ec4c3b5269edabbf914527d6a7031 (patch)
treeade90e9d54278ecc5e47550aed982551f2613240 /Lib/multiprocessing
parent29e2aa696d5db7705c498738a16525cbcd0b0ee3 (diff)
downloadcpython-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.py2
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.