diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2018-01-22 17:32:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-22 17:32:50 (GMT) |
commit | 13ff24582c99dfb439b1af7295b401415e7eb05b (patch) | |
tree | 6966d9e1247134dfee9db73b6b5a215bfa88baf4 /Lib/test/test_threading.py | |
parent | b0a7a037b8fde56b62f886d5188bced7776777b4 (diff) | |
download | cpython-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_threading.py')
-rw-r--r-- | Lib/test/test_threading.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index 007581d..db70dfa 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -25,8 +25,7 @@ from test import support # #12316 and #11870), and fork() from a worker thread is known to trigger # problems with some operating systems (issue #3863): skip problematic tests # on platforms known to behave badly. -platforms_to_skip = ('freebsd4', 'freebsd5', 'freebsd6', 'netbsd5', - 'hp-ux11') +platforms_to_skip = ('netbsd5', 'hp-ux11') # A trivial mutable counter. |