mirror of
https://github.com/python/cpython.git
synced 2025-08-17 07:11:51 +00:00
Sub-issue of #9036: Fix incorrect use of Py_CHARMASK.
This commit is contained in:
parent
c7743aaac3
commit
0b9201fa1c
2 changed files with 2 additions and 1 deletions
|
@ -8417,7 +8417,7 @@ PyObject *PyUnicode_Format(PyObject *format,
|
|||
else if (c >= '0' && c <= '9') {
|
||||
prec = c - '0';
|
||||
while (--fmtcnt >= 0) {
|
||||
c = Py_CHARMASK(*fmt++);
|
||||
c = *fmt++;
|
||||
if (c < '0' || c > '9')
|
||||
break;
|
||||
if ((prec*10) / 10 != prec) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue