8000
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 8810e28 commit 9f42b62Copy full SHA for 9f42b62
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