gh-146615: Fix format specifiers in Python/ directory (GH-146619)

This commit is contained in:
sunmy2019 2026-03-31 15:59:17 +08:00 committed by GitHub
parent b7055533ab
commit dcb260eff2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 13 additions and 13 deletions

View file

@ -208,7 +208,7 @@ interp_config_from_dict(PyObject *origdict, PyInterpreterConfig *config,
}
else if (unused > 0) {
PyErr_Format(PyExc_ValueError,
"config dict has %d extra items (%R)", unused, dict);
"config dict has %zd extra items (%R)", unused, dict);
goto error;
}