Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cspell.dict/python-more.txt
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ pyexpat
PYTHONBREAKPOINT
PYTHONDEBUG
PYTHONDONTWRITEBYTECODE
PYTHONFAULTHANDLER
PYTHONHASHSEED
PYTHONHOME
PYTHONINSPECT
Expand Down
2 changes: 0 additions & 2 deletions Lib/test/test_cmd_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -713,8 +713,6 @@ def run_xdev(self, *args, check_exitcode=True, xdev=True):
self.assertEqual(proc.returncode, 0, proc)
return proc.stdout.rstrip()

# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_xdev(self):
# sys.flags.dev_mode
code = "import sys; print(sys.flags.dev_mode)"
Expand Down
4 changes: 0 additions & 4 deletions Lib/test/test_faulthandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,8 +442,6 @@ def test_disabled_by_default(self):
output = subprocess.check_output(args)
self.assertEqual(output.rstrip(), b"False")

# TODO: RUSTPYTHON, subprocess.CalledProcessError: Command '<filter object at ...>' returned non-zero exit status 1.
@unittest.expectedFailure
@support.requires_subprocess()
def test_sys_xoptions(self):
# Test python -X faulthandler
Expand All @@ -457,8 +455,6 @@ def test_sys_xoptions(self):
output = subprocess.check_output(args, env=env)
self.assertEqual(output.rstrip(), b"True")

# TODO: RUSTPYTHON
@unittest.expectedFailure
@support.requires_subprocess()
def test_env_var(self):
# empty env var
Expand Down
Loading
Loading