We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0671070 commit 447617eCopy full SHA for 447617e
1 file changed
Lib/test/test_support.py
@@ -460,6 +460,7 @@ def test_detect_api_mismatch__ignore(self):
460
self.OtherClass, self.RefClass, ignore=ignore)
461
self.assertEqual(set(), missing_items)
462
463
+ @unittest.expectedFailure # TODO: RUSTPYTHON
464
def test_check__all__(self):
465
extra = {'tempdir'}
466
not_exported = {'template'}
@@ -615,6 +616,7 @@ def test_print_warning(self):
615
616
self.check_print_warning("a\nb",
617
'Warning -- a\nWarning -- b\n')
618
619
+ @unittest.expectedFailureIf(sys.platform != "win32", "TODO: RUSTPYTHON; no has_strftime_extensions yet")
620
def test_has_strftime_extensions(self):
621
if sys.platform == "win32":
622
self.assertFalse(support.has_strftime_extensions)
0 commit comments