summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-07-19 18:57:59 (GMT)
committerGitHub <noreply@github.com>2022-07-19 18:57:59 (GMT)
commit31a390e43f2ea2608c5ec04de7d012df14f16fda (patch)
tree8060611d89a8455b79c1beb04e27bb65e8239f60 /Misc
parent374afb4a4e93d3faafcf1d08fcd650d8ee8798ca (diff)
downloadcpython-31a390e43f2ea2608c5ec04de7d012df14f16fda.zip
cpython-31a390e43f2ea2608c5ec04de7d012df14f16fda.tar.gz
cpython-31a390e43f2ea2608c5ec04de7d012df14f16fda.tar.bz2
[3.10] gh-94930: skipitem() in getargs.c should return non-NULL on error (GH-94931) (GH-94963)
(cherry picked from commit 067f0da33506f70c36a67d5f3d8d011c8dae10c9) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2022-07-17-18-21-40.gh-issue-94930.gPFGDL.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2022-07-17-18-21-40.gh-issue-94930.gPFGDL.rst b/Misc/NEWS.d/next/C API/2022-07-17-18-21-40.gh-issue-94930.gPFGDL.rst
new file mode 100644
index 0000000..5b79d75
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2022-07-17-18-21-40.gh-issue-94930.gPFGDL.rst
@@ -0,0 +1,2 @@
+Fix ``SystemError`` raised when :c:func:`PyArg_ParseTupleAndKeywords` is
+used with ``#`` in ``(...)`` but without ``PY_SSIZE_T_CLEAN`` defined.