mirror of
https://github.com/python/cpython.git
synced 2025-08-01 15:43:13 +00:00
There's no %A in Python 2.x!
This commit is contained in:
parent
ed960ac404
commit
342c8db859
1 changed files with 1 additions and 1 deletions
|
@ -681,7 +681,7 @@ PyUnicode_FromFormatV(const char *format, va_list vargs)
|
|||
if (*f == '%') {
|
||||
if (*(f+1)=='%')
|
||||
continue;
|
||||
if (*(f+1)=='S' || *(f+1)=='R' || *(f+1)=='A')
|
||||
if (*(f+1)=='S' || *(f+1)=='R')
|
||||
++callcount;
|
||||
while (isdigit((unsigned)*f))
|
||||
width = (width*10) + *f++ - '0';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue