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 9a6e233 commit 36682c0Copy full SHA for 36682c0
Lib/test/test_signal.py
@@ -123,6 +123,8 @@ def __repr__(self):
123
self.assertEqual(signal.getsignal(signal.SIGHUP), hup)
124
self.assertEqual(0, argument.repr_count)
125
126
+ @unittest.skipIf(sys.platform.startswith("netbsd"),
127
+ "gh-124083: strsignal is not supported on NetBSD")
128
def test_strsignal(self):
129
self.assertIn("Interrupt", signal.strsignal(signal.SIGINT))
130
self.assertIn("Terminated", signal.strsignal(signal.SIGTERM))
0 commit comments