Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update comment
  • Loading branch information
vstinner committed Sep 6, 2023
commit 4eea5efa05cb5a9c0d04b5201ff9352e7e448d30
2 changes: 1 addition & 1 deletion Lib/test/support/socket_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down