]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
[3.8] 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:20:22 +0000 (02:20 -0800)
committerGitHub <noreply@github.com>
Tue, 6 Dec 2022 10:20:22 +0000 (11:20 +0100)
commite43393aaacc9350116a5402e1ae5dde45daa6dfe
tree0b2e26f742734d319da56e4ff0ff75d869c504ca
parentb50b6f95a1afacf76cc6ec3da4229cdeb33a7cf6
[3.8] gh-100001: Omit control characters in http.server stderr logs. (GH-100002) (#100033)

* 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 extraneous '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]