diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-12-18 11:10:37 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-12-18 11:10:37 (GMT) |
commit | 3fd4a735d82e43e1c531ebcead3c95814d4b6384 (patch) | |
tree | f5640c599b2ec88167d3d6c39732357a085e0bd7 /Lib/http | |
parent | be22a911ff15f890702d134c0360419c3167da09 (diff) | |
parent | 225821c6537ec4c3b5269edabbf914527d6a7031 (diff) | |
download | cpython-3fd4a735d82e43e1c531ebcead3c95814d4b6384.zip cpython-3fd4a735d82e43e1c531ebcead3c95814d4b6384.tar.gz cpython-3fd4a735d82e43e1c531ebcead3c95814d4b6384.tar.bz2 |
Issue #25899: Converted non-ASCII characters in docstrings and manpage
to ASCII replacements. Removed UTF-8 BOM from Misc/NEWS.
Original patch by Chris Angelico.
Diffstat (limited to 'Lib/http')
-rw-r--r-- | Lib/http/client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/http/client.py b/Lib/http/client.py index 155c2e3..f69e7ba 100644 --- a/Lib/http/client.py +++ b/Lib/http/client.py @@ -735,9 +735,9 @@ class HTTPResponse(io.BufferedIOBase): guessed. When the method is local-file, returned headers will include - a Date representing the file’s last-modified time, a + a Date representing the file's last-modified time, a Content-Length giving file size, and a Content-Type - containing a guess at the file’s type. See also the + containing a guess at the file's type. See also the description of the mimetools module. ''' |