From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 17 Jun 2022 09:53:35 +0000 (-0700) Subject: test_logging: Fix BytesWarning in SysLogHandlerTest (GH-93920) X-Git-Tag: v3.11.0b4~152 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=123e3be33b095ecf92d2c19a6ac521065c1ba8af;p=thirdparty%2FPython%2Fcpython.git test_logging: Fix BytesWarning in SysLogHandlerTest (GH-93920) (cherry picked from commit 538f28921f67e36617272faa662375d305d9284c) Co-authored-by: Victor Stinner --- diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index fd562322a763..9eda0706ac6f 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -1919,7 +1919,7 @@ class SysLogHandlerTest(BaseTest): self.sl_hdlr = hcls((server.server_address[0], server.port)) else: self.sl_hdlr = hcls(server.server_address) - self.log_output = '' + self.log_output = b'' self.root_logger.removeHandler(self.root_logger.handlers[0]) self.root_logger.addHandler(self.sl_hdlr) self.handled = threading.Event()