mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Issue #14687: Cleanup PyUnicode_Format()
This commit is contained in:
@@ -13719,7 +13719,8 @@ PyUnicode_Format(PyObject *format, PyObject *args)
|
||||
PyObject *signobj = NULL, *fillobj = NULL;
|
||||
|
||||
fmtpos++;
|
||||
if (PyUnicode_READ(fmtkind, fmt, fmtpos) == '(') {
|
||||
c = PyUnicode_READ(fmtkind, fmt, fmtpos);
|
||||
if (c == '(') {
|
||||
Py_ssize_t keystart;
|
||||
Py_ssize_t keylen;
|
||||
PyObject *key;
|
||||
@@ -13765,7 +13766,8 @@ PyUnicode_Format(PyObject *format, PyObject *args)
|
||||
argidx = -2;
|
||||
}
|
||||
while (--fmtcnt >= 0) {
|
||||
switch (c = PyUnicode_READ(fmtkind, fmt, fmtpos++)) {
|
||||
c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
|
||||
switch (c) {
|
||||
case '-': flags |= F_LJUST; continue;
|
||||
case '+': flags |= F_SIGN; continue;
|
||||
case ' ': flags |= F_BLANK; continue;
|
||||
|
||||
Reference in New Issue
Block a user