mirror of
https://github.com/python/cpython.git
synced 2025-08-01 07:33:08 +00:00
[3.13] gh-121359: Run test_pyrepl in isolated mode (GH-121414) (#121417)
gh-121359: Run test_pyrepl in isolated mode (GH-121414)
run_repl() now pass the -I option (isolated mode) to Python if the
'env' parameter is not set.
(cherry picked from commit 6239d41527
)
Co-authored-by: Victor Stinner <vstinner@python.org>
This commit is contained in:
parent
bc4cd91aef
commit
4aa0c5ec34
1 changed files with 4 additions and 1 deletions
|
@ -927,8 +927,11 @@ class TestMain(TestCase):
|
||||||
|
|
||||||
def run_repl(self, repl_input: str | list[str], env: dict | None = None) -> tuple[str, int]:
|
def run_repl(self, repl_input: str | list[str], env: dict | None = None) -> tuple[str, int]:
|
||||||
master_fd, slave_fd = pty.openpty()
|
master_fd, slave_fd = pty.openpty()
|
||||||
|
cmd = [sys.executable, "-i", "-u"]
|
||||||
|
if env is None:
|
||||||
|
cmd.append("-I")
|
||||||
process = subprocess.Popen(
|
process = subprocess.Popen(
|
||||||
[sys.executable, "-i", "-u"],
|
cmd,
|
||||||
stdin=slave_fd,
|
stdin=slave_fd,
|
||||||
stdout=slave_fd,
|
stdout=slave_fd,
|
||||||
stderr=slave_fd,
|
stderr=slave_fd,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue