We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47db5cb commit d3bb267Copy full SHA for d3bb267
Lib/test/test_sys.py
@@ -206,6 +206,7 @@ class SysModuleTest(unittest.TestCase):
206
def tearDown(self):
207
test.support.reap_children()
208
209
+ @unittest.expectedFailure # TODO: RUSTPYTHON
210
def test_exit(self):
211
# call with two arguments
212
self.assertRaises(TypeError, sys.exit, 42, 42)
@@ -1319,7 +1320,6 @@ def test_orig_argv(self):
1319
1320
self.assertEqual(proc.stdout.rstrip().splitlines(), expected,
1321
proc)
1322
- @unittest.expectedFailure # TODO: RUSTPYTHON; AttributeError: module 'sys' has no attribute 'stdlib_module_names'
1323
def test_module_names(self):
1324
self.assertIsInstance(sys.stdlib_module_names, frozenset)
1325
for name in sys.stdlib_module_names:
0 commit comments