summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2022-10-16 14:23:11 (GMT)
committerGitHub <noreply@github.com>2022-10-16 14:23:11 (GMT)
commit35fa5d5e7f2b0971b39b2659dc70cb77e34a7dd6 (patch)
tree3f8f5e6ec53481d061e3ef53be3bd856d4f01aa1 /Misc
parentf6b1e4048dc353aecfbfbae07de8212900632098 (diff)
downloadcpython-35fa5d5e7f2b0971b39b2659dc70cb77e34a7dd6.zip
cpython-35fa5d5e7f2b0971b39b2659dc70cb77e34a7dd6.tar.gz
cpython-35fa5d5e7f2b0971b39b2659dc70cb77e34a7dd6.tar.bz2
gh-97527: IDLE - fix buggy macosx patch (#98313)
#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.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/IDLE/2022-10-15-21-20-40.gh-issue-97527.otAHJM.rst3
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.