summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2023-05-31 09:38:55 (GMT)
committerGitHub <noreply@github.com>2023-05-31 09:38:55 (GMT)
commitadccff3b3f9fbdb58cb4b8fde92456e6dd078af0 (patch)
tree3eea6fd8543a6a8e800b4792ad7c276598f3afb5 /Python/sysmodule.c
parentf90d3f68db720bd6d0deda8cc0030339ccd43858 (diff)
downloadcpython-adccff3b3f9fbdb58cb4b8fde92456e6dd078af0.zip
cpython-adccff3b3f9fbdb58cb4b8fde92456e6dd078af0.tar.gz
cpython-adccff3b3f9fbdb58cb4b8fde92456e6dd078af0.tar.bz2
gh-104922: Make `PY_SSIZE_T_CLEAN` not mandatory again (#105051)
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 33147f0..32be7ec 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -211,7 +211,7 @@ sys_audit_tstate(PyThreadState *ts, const char *event,
/* Initialize event args now */
if (argFormat && argFormat[0]) {
- eventArgs = _Py_VaBuildValue_SizeT(argFormat, vargs);
+ eventArgs = Py_VaBuildValue(argFormat, vargs);
if (eventArgs && !PyTuple_Check(eventArgs)) {
PyObject *argTuple = PyTuple_Pack(1, eventArgs);
Py_SETREF(eventArgs, argTuple);