@@ -57,6 +57,8 @@ def test_import_module(self):
5757 self .assertRaises (unittest .SkipTest ,
5858 import_helper .import_module , "foo" )
5959
60+ # TODO: RUSTPYTHON
61+ @unittest .expectedFailure
6062 def test_import_fresh_module (self ):
6163 import_helper .import_fresh_module ("ftplib" )
6264
@@ -323,6 +325,8 @@ def test_check_syntax_error(self):
323325 with self .assertRaises (AssertionError ):
324326 support .check_syntax_error (self , "x=1" )
325327
328+ # TODO: RUSTPYTHON
329+ @unittest .expectedFailure
326330 def test_CleanImport (self ):
327331 import importlib
328332 with import_helper .CleanImport ("pprint" ):
@@ -515,6 +519,8 @@ def check_options(self, args, func, expected=None):
515519 self .assertEqual (proc .stdout .rstrip (), repr (expected ))
516520 self .assertEqual (proc .returncode , 0 )
517521
522+ # TODO: RUSTPYTHON
523+ @unittest .expectedFailure
518524 def test_args_from_interpreter_flags (self ):
519525 # Test test.support.args_from_interpreter_flags()
520526 for opts in (
@@ -697,6 +703,8 @@ def test_print_warning(self):
697703 self .check_print_warning ("a\n b" ,
698704 'Warning -- a\n Warning -- b\n ' )
699705
706+ # TODO: RUSTPYTHON
707+ @unittest .expectedFailure
700708 def test_has_strftime_extensions (self ):
701709 if support .is_emscripten or sys .platform == "win32" :
702710 self .assertFalse (support .has_strftime_extensions )
0 commit comments