mirror of
https://github.com/python/cpython.git
synced 2026-04-17 01:10:46 +00:00
gh-146615: Fix format specifiers in Python/ directory (GH-146619)
This commit is contained in:
parent
b7055533ab
commit
dcb260eff2
6 changed files with 13 additions and 13 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue