From 4eea5efa05cb5a9c0d04b5201ff9352e7e448d30 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 7 Sep 2023 00:59:32 +0200 Subject: [PATCH] Update comment --- Lib/test/support/socket_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/support/socket_helper.py b/Lib/test/support/socket_helper.py index bdf54cf1921558..87941ee1791b4e 100644 --- a/Lib/test/support/socket_helper.py +++ b/Lib/test/support/socket_helper.py @@ -304,7 +304,7 @@ def _get_sysctl(name): return None output = proc.stdout - # Parse 'net.inet.tcp.blackhole: 0\n' to get '0' + # Parse '0\n' to get '0' try: value = int(output.strip()) except Exception as exc: