mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Merge remote-tracking branch 'upstream/3.11' into 3.11
This commit is contained in:
commit
cd12e6c779
1 changed files with 2 additions and 1 deletions
|
@ -253,7 +253,8 @@ class BasicTest(BaseTest):
|
|||
('base_exec_prefix', sys.base_exec_prefix)):
|
||||
cmd[2] = 'import sys; print(sys.%s)' % prefix
|
||||
out, err = check_output(cmd)
|
||||
self.assertEqual(out.strip(), expected.encode(), prefix)
|
||||
self.assertEqual(pathlib.Path(out.strip().decode()),
|
||||
pathlib.Path(expected), prefix)
|
||||
|
||||
@requireVenvCreate
|
||||
def test_sysconfig(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue