We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0873e45 commit f750c0cCopy full SHA for f750c0c
Lib/test/test_builtin.py
@@ -1364,6 +1364,7 @@ def test_open_default_encoding(self):
1364
os.environ.clear()
1365
os.environ.update(old_environ)
1366
1367
+ @unittest.skipIf(sys.platform == 'win32', 'TODO: RUSTPYTHON Windows')
1368
@support.requires_subprocess()
1369
def test_open_non_inheritable(self):
1370
fileobj = open(__file__, encoding="utf-8")
@@ -1614,7 +1615,7 @@ def test_bug_27936(self):
1614
1615
self.assertEqual(type(round(x, None)), type(round(x)))
1616
1617
# TODO: RUSTPYTHON
- @unittest.expectedFailure
1618
+ # @unittest.expectedFailure
1619
def test_setattr(self):
1620
setattr(sys, 'spam', 1)
1621
self.assertEqual(sys.spam, 1)
0 commit comments