summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_events.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_asyncio/test_events.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_asyncio/test_events.py')
-rw-r--r--Lib/test/test_asyncio/test_events.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py
index 4140f03..e4b0536 100644
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -1471,8 +1471,6 @@ class EventLoopTestsMixin:
@unittest.skipUnless(sys.platform != 'win32',
"Don't support pipes for Windows")
@unittest.skipIf(sys.platform == 'darwin', 'test hangs on MacOS')
- # Issue #20495: The test hangs on FreeBSD 7.2 but pass on FreeBSD 9
- @support.requires_freebsd_version(8)
def test_read_pty_output(self):
proto = MyReadPipeProto(loop=self.loop)