Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0d3f8a commit 98c62bdCopy full SHA for 98c62bd
1 file changed
Lib/test/support.py
@@ -1039,7 +1039,7 @@ def bigaddrspacetest(f):
1039
"""Decorator for tests that fill the address space."""
1040
def wrapper(self):
1041
if max_memuse < MAX_Py_ssize_t:
1042
- if MAX_Py_ssize_t > 2**32:
+ if MAX_Py_ssize_t >= 2**63 - 1 and max_memuse >= 2**31:
1043
raise unittest.SkipTest(
1044
"not enough memory: try a 32-bit build instead")
1045
else:
0 commit comments