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 8af2d18 commit 06a1b0cCopy full SHA for 06a1b0c
Lib/test/test_termios.py
@@ -94,7 +94,7 @@ def test_tcsendbreak(self):
94
try:
95
termios.tcsendbreak(self.fd, 1)
96
except termios.error as exc:
97
- if exc.args[0] == errno.ENOTTY and sys.platform.startswith('freebsd'):
+ if exc.args[0] == errno.ENOTTY and sys.platform.startswith(('freebsd', "netbsd")):
98
self.skipTest('termios.tcsendbreak() is not supported '
99
'with pseudo-terminals (?) on this platform')
100
raise
0 commit comments