From cf0cfd052691703a2311d6242b6bbdea0f156935 Mon Sep 17 00:00:00 2001 From: sobolevn Date: Thu, 28 Sep 2023 09:54:37 +0300 Subject: [PATCH] Typos! --- Lib/test/test_socket.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 713d723ad9df0c..0258b9dc726cbf 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -167,10 +167,10 @@ def socket_setdefaulttimeout(timeout): @contextlib.contextmanager -def catch_malformed_data_warning(quite=False): +def catch_malformed_data_warning(quiet=False): with warnings_helper.check_warnings( ("received malformed or improperly-truncated ancillary data", RuntimeWarning), - quite=quite, + quiet=quiet, ): yield