diff options
author | C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> | 2023-04-08 07:37:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-08 07:37:23 (GMT) |
commit | a34c79623877a7ed0c86a6d48ddccffa0de76836 (patch) | |
tree | f4f3a142e7bf3e73d18d75058511c525da99adfb /Misc/NEWS.d | |
parent | 13774969f78de0435da4efbdf21f1130a7a71964 (diff) | |
download | cpython-a34c79623877a7ed0c86a6d48ddccffa0de76836.zip cpython-a34c79623877a7ed0c86a6d48ddccffa0de76836.tar.gz cpython-a34c79623877a7ed0c86a6d48ddccffa0de76836.tar.bz2 |
gh-75729: Fix os.spawn tests not handling spaces on Windows (#99150)
* Quote paths in os.spawn tests on Windows so they work with spaces
* Add NEWS entry for os spawn test fix
* Fix code style to avoid double negative in os.spawn tests
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
---------
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2022-11-06-18-42-38.gh-issue-75729.uGYJrv.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2022-11-06-18-42-38.gh-issue-75729.uGYJrv.rst b/Misc/NEWS.d/next/Tests/2022-11-06-18-42-38.gh-issue-75729.uGYJrv.rst new file mode 100644 index 0000000..8baecdf --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2022-11-06-18-42-38.gh-issue-75729.uGYJrv.rst @@ -0,0 +1,2 @@ +Fix the :func:`os.spawn* <os.spawnl>` tests failing on Windows +when the working directory or interpreter path contains spaces. |