summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/C API
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-07-18 15:41:22 (GMT)
committerGitHub <noreply@github.com>2022-07-18 15:41:22 (GMT)
commitec6ed6681d7334f2694ca62c035a8fe6b2b60ab3 (patch)
tree52baff3512c59592f0bb305710439e875459b318 /Misc/NEWS.d/next/C API
parenta914fa979e0d6043da4b591e02d2b99d26853411 (diff)
downloadcpython-ec6ed6681d7334f2694ca62c035a8fe6b2b60ab3.zip
cpython-ec6ed6681d7334f2694ca62c035a8fe6b2b60ab3.tar.gz
cpython-ec6ed6681d7334f2694ca62c035a8fe6b2b60ab3.tar.bz2
gh-94930: skipitem() in getargs.c should return non-NULL on error (GH-94931)
(cherry picked from commit 067f0da33506f70c36a67d5f3d8d011c8dae10c9) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc/NEWS.d/next/C API')
-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.