Skip to content

Commit

Permalink
gh-126876: Fix test_socket.testLargeTimeout() for missing _testcapi (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner authored Dec 2, 2024
1 parent 7c2bd9b commit c46acd3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Lib/test/test_socket.py
Original file line number Diff line number Diff line change
Expand Up @@ -5136,7 +5136,10 @@ def testLargeTimeout(self):
# gh-126876: Check that a timeout larger than INT_MAX is replaced with
# INT_MAX in the poll() code path. The following assertion must not
# fail: assert(INT_MIN <= ms && ms <= INT_MAX).
large_timeout = _testcapi.INT_MAX + 1
if _testcapi is not None:
large_timeout = _testcapi.INT_MAX + 1
else:
large_timeout = 2147483648

# test recv() with large timeout
conn, addr = self.serv.accept()
Expand All @@ -5151,7 +5154,10 @@ def testLargeTimeout(self):

def _testLargeTimeout(self):
# test sendall() with large timeout
large_timeout = _testcapi.INT_MAX + 1
if _testcapi is not None:
large_timeout = _testcapi.INT_MAX + 1
else:
large_timeout = 2147483648
self.cli.connect((HOST, self.port))
try:
self.cli.settimeout(large_timeout)
Expand Down

0 comments on commit c46acd3

Please sign in to comment.