summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_resource.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2018-01-22 17:32:50 (GMT)
committerGitHub <noreply@github.com>2018-01-22 17:32:50 (GMT)
commit13ff24582c99dfb439b1af7295b401415e7eb05b (patch)
tree6966d9e1247134dfee9db73b6b5a215bfa88baf4 /Lib/test/test_resource.py
parentb0a7a037b8fde56b62f886d5188bced7776777b4 (diff)
downloadcpython-13ff24582c99dfb439b1af7295b401415e7eb05b.zip
cpython-13ff24582c99dfb439b1af7295b401415e7eb05b.tar.gz
cpython-13ff24582c99dfb439b1af7295b401415e7eb05b.tar.bz2
bpo-32593: Drop FreeBSD 9 and older support (#5232)
Drop support of FreeBSD 9 and older.
Diffstat (limited to 'Lib/test/test_resource.py')
-rw-r--r--Lib/test/test_resource.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_resource.py b/Lib/test/test_resource.py
index cc9c570..4b85278 100644
--- a/Lib/test/test_resource.py
+++ b/Lib/test/test_resource.py
@@ -138,7 +138,6 @@ class ResourceTest(unittest.TestCase):
with contextlib.suppress(AttributeError):
self.assertIsInstance(getattr(resource, 'RLIMIT_' + attr), int)
- @support.requires_freebsd_version(9)
def test_freebsd_contants(self):
for attr in ['SWAP', 'SBSIZE', 'NPTS']:
with contextlib.suppress(AttributeError):