Issue #25899: Converted non-ASCII characters in docstrings and manpage

to ASCII replacements.  Original patch by Chris Angelico.
This commit is contained in:
Serhiy Storchaka 2015-12-18 13:05:04 +02:00
parent 29e2aa696d
commit 225821c653
3 changed files with 4 additions and 4 deletions

View file

@ -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.