diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-10-16 16:00:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-16 16:00:47 (GMT) |
commit | 21fbf1631d37fd5f769fde5795c62e1f1e90842a (patch) | |
tree | d898e8c9b8b88b11d2faec78d7692f989991e665 /Misc | |
parent | b5874fae0a618e4b0815a54242b0703bd92482be (diff) | |
download | cpython-21fbf1631d37fd5f769fde5795c62e1f1e90842a.zip cpython-21fbf1631d37fd5f769fde5795c62e1f1e90842a.tar.gz cpython-21fbf1631d37fd5f769fde5795c62e1f1e90842a.tar.bz2 |
gh-97527: IDLE - fix buggy macosx patch (GH-98313)
GH-97530 fixed IDLE tests possibly crashing on a Mac without a GUI.
But it resulted in IDLE not starting in 3.10.8, 3.12.0a1, and
Microsoft Python 3.10.2288.0 when test/* is not installed.
After this patch, test.* is only imported when testing on Mac.
(cherry picked from commit 35fa5d5e7f2b0971b39b2659dc70cb77e34a7dd6)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2022-10-15-21-20-40.gh-issue-97527.otAHJM.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2022-10-15-21-20-40.gh-issue-97527.otAHJM.rst b/Misc/NEWS.d/next/IDLE/2022-10-15-21-20-40.gh-issue-97527.otAHJM.rst new file mode 100644 index 0000000..e7fda89 --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2022-10-15-21-20-40.gh-issue-97527.otAHJM.rst @@ -0,0 +1,3 @@ +Fix a bug in the previous bugfix that caused IDLE to not start when run with +3.10.8, 3.12.0a1, and at least Microsoft Python 3.10.2288.0 installed +without the Lib/test package. 3.11.0 was never affected. |