We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87eaf47 commit 9a7507fCopy full SHA for 9a7507f
1 file changed
Lib/test/test_stat.py
@@ -239,6 +239,11 @@ def test_file_attribute_constants(self):
239
class TestFilemodeCStat(TestFilemode, unittest.TestCase):
240
statmod = c_stat
241
242
+ # TODO: RUSTPYTHON
243
+ if sys.platform == "win32":
244
+ @unittest.expectedFailure
245
+ def test_link(self):
246
+ super().test_link()
247
248
class TestFilemodePyStat(TestFilemode, unittest.TestCase):
249
statmod = py_stat
0 commit comments