]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
[3.9] gh-100001: Omit control characters in http.server stderr logs. (GH-100002)...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 6 Dec 2022 10:22:12 +0000 (02:22 -0800)
committerGitHub <noreply@github.com>
Tue, 6 Dec 2022 10:22:12 +0000 (11:22 +0100)
commit3b81c13ac3e0acfdbfb0d916a4ea627c9a546049
tree369596c79082c9e4fa7b2e5c2ea7a97e3880a181
parent7b98207aa46bd637d07a7c4a84e998726b74acde
[3.9] gh-100001: Omit control characters in http.server stderr logs. (GH-100002) (#100032)

* gh-100001: Omit control characters in http.server stderr logs. (GH-100002)

Replace control characters in http.server.BaseHTTPRequestHandler.log_message with an escaped \xHH sequence to avoid causing problems for the terminal the output is printed to.
(cherry picked from commit d8ab0a4dfa48f881b4ac9ab857d2e9de42f72828)

Co-authored-by: Gregory P. Smith <greg@krypto.org>
* also escape \s (backport of PR #100038).

* add versionadded and remove extra 'to'

Co-authored-by: Gregory P. Smith <greg@krypto.org>
Doc/library/http.server.rst
Lib/http/server.py
Lib/test/test_httpservers.py
Misc/NEWS.d/next/Security/2022-12-05-01-39-10.gh-issue-100001.uD05Fc.rst [new file with mode: 0644]