mirror of
https://github.com/python/cpython.git
synced 2026-04-14 15:50:50 +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
|
|
@ -1382,11 +1382,11 @@ get_interactive_filename(PyObject *filename, Py_ssize_t count)
|
|||
if (middle == NULL) {
|
||||
return NULL;
|
||||
}
|
||||
result = PyUnicode_FromFormat("<%U-%d>", middle, count);
|
||||
result = PyUnicode_FromFormat("<%U-%zd>", middle, count);
|
||||
Py_DECREF(middle);
|
||||
} else {
|
||||
result = PyUnicode_FromFormat(
|
||||
"%U-%d", filename, count);
|
||||
"%U-%zd", filename, count);
|
||||
}
|
||||
return result;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue