diff options
author | Inada Naoki <songofacandy@gmail.com> | 2021-02-27 11:31:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-27 11:31:03 (GMT) |
commit | c71d24f55828e7f0f2c8750d2e1b04d04539beff (patch) | |
tree | 88a0fd8b9a298791fb0e862c94de5f8370e15490 /Misc/NEWS.d | |
parent | 145bf269df3530176f6ebeab1324890ef7070bf8 (diff) | |
download | cpython-c71d24f55828e7f0f2c8750d2e1b04d04539beff.zip cpython-c71d24f55828e7f0f2c8750d2e1b04d04539beff.tar.gz cpython-c71d24f55828e7f0f2c8750d2e1b04d04539beff.tar.bz2 |
bpo-43321: Fix SystemError in getargs.c (GH-24656)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-02-26-13-17-52.bpo-43321.TCS3ph.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-02-26-13-17-52.bpo-43321.TCS3ph.rst b/Misc/NEWS.d/next/Core and Builtins/2021-02-26-13-17-52.bpo-43321.TCS3ph.rst new file mode 100644 index 0000000..32c5ce1 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-02-26-13-17-52.bpo-43321.TCS3ph.rst @@ -0,0 +1,2 @@ +Fix ``SystemError`` raised when ``PyArg_Parse*()`` is used with ``#`` but +without ``PY_SSIZE_T_CLEAN`` defined. |