summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristopher Chavez <chrischavez@gmx.us>2023-07-25 18:52:07 (GMT)
committerGitHub <noreply@github.com>2023-07-25 18:52:07 (GMT)
commitb5ae7c498438657a6ba0bf4cc216b9c2c93a06c7 (patch)
tree926793f3484933336195fd8508a545d2df006b14 /Misc
parent2b1a81e2cfa740609d48ad82627ae251262e6470 (diff)
downloadcpython-b5ae7c498438657a6ba0bf4cc216b9c2c93a06c7.zip
cpython-b5ae7c498438657a6ba0bf4cc216b9c2c93a06c7.tar.gz
cpython-b5ae7c498438657a6ba0bf4cc216b9c2c93a06c7.tar.bz2
gh-106350: Tkinter: do not ignore return value of `mp_init()` (GH-106351)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-07-03-03-46-20.gh-issue-106350.LLcTEe.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-07-03-03-46-20.gh-issue-106350.LLcTEe.rst b/Misc/NEWS.d/next/Library/2023-07-03-03-46-20.gh-issue-106350.LLcTEe.rst
new file mode 100644
index 0000000..681d63a
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-07-03-03-46-20.gh-issue-106350.LLcTEe.rst
@@ -0,0 +1,2 @@
+Detect possible memory allocation failure in the libtommath function :c:func:`mp_init`
+used by the ``_tkinter`` module.