summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-11-27 17:57:30 (GMT)
committerGitHub <noreply@github.com>2023-11-27 17:57:30 (GMT)
commit46047bb12b4570adc9f81577568669930e12b590 (patch)
tree3b9f43ceda6356f4cd3dedd77a9706b55201a6fa /Misc/NEWS.d
parent3ef75ee5844e11c7bc804499cfc09bfc78abd12b (diff)
downloadcpython-46047bb12b4570adc9f81577568669930e12b590.zip
cpython-46047bb12b4570adc9f81577568669930e12b590.tar.gz
cpython-46047bb12b4570adc9f81577568669930e12b590.tar.bz2
[3.12] gh-112438: Fix support of format units with the "e" prefix in nested tuples in PyArg_Parse (gh-112439) (GH-112460)
(cherry picked from commit 4eea1e82369fbf7a795d1956e7a8212a1b58009f) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/C API/2023-11-27-09-44-16.gh-issue-112438.GdNZiI.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2023-11-27-09-44-16.gh-issue-112438.GdNZiI.rst b/Misc/NEWS.d/next/C API/2023-11-27-09-44-16.gh-issue-112438.GdNZiI.rst
new file mode 100644
index 0000000..113119e
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2023-11-27-09-44-16.gh-issue-112438.GdNZiI.rst
@@ -0,0 +1,2 @@
+Fix support of format units "es", "et", "es#", and "et#" in nested tuples in
+:c:func:`PyArg_ParseTuple`-like functions.