mirror of https://github.com/python/cpython.git
There's no %A in Python 2.x!
This commit is contained in:
parent
ed960ac404
commit
342c8db859
|
@ -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…
Reference in New Issue