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 3dc4653 commit de3c792Copy full SHA for de3c792
Lib/test/test_resource.py
@@ -54,7 +54,6 @@ def test_fsize_enforced(self):
54
(cur, max_lim) = resource.getrlimit(resource.RLIMIT_FSIZE)
55
except OSError as e:
56
self.skipTest(f"getrlimit(RLIMIT_FSIZE) failed: {e}")
57
-
58
if max_lim != resource.RLIM_INFINITY and max_lim < 1025:
59
self.skipTest(f"system RLIMIT_FSIZE hard limit ({max_lim}) is too small for this test")
60
with open(os_helper.TESTFN, "wb") as f:
0 commit comments