diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2018-01-22 18:32:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-22 18:32:50 +0100 |
commit | 13ff24582c99dfb439b1af7295b401415e7eb05b (patch) | |
tree | 6966d9e1247134dfee9db73b6b5a215bfa88baf4 /Lib/test/test_io.py | |
parent | b0a7a037b8fde56b62f886d5188bced7776777b4 (diff) | |
download | cpython-git-13ff24582c99dfb439b1af7295b401415e7eb05b.tar.gz |
bpo-32593: Drop FreeBSD 9 and older support (#5232)
Drop support of FreeBSD 9 and older.
Diffstat (limited to 'Lib/test/test_io.py')
-rw-r--r-- | Lib/test/test_io.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index 3aee5f1083..c6345e9199 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -4107,8 +4107,6 @@ class SignalsTest(unittest.TestCase): def test_interrupted_write_buffered(self): self.check_interrupted_write(b"xy", b"xy", mode="wb") - # Issue #22331: The test hangs on FreeBSD 7.2 - @support.requires_freebsd_version(8) def test_interrupted_write_text(self): self.check_interrupted_write("xy", b"xy", mode="w", encoding="ascii") |