Kaydet (Commit) 342c8db8 authored tarafından Walter Dörwald's avatar Walter Dörwald

There's no %A in Python 2.x!

üst ed960ac4
...@@ -681,7 +681,7 @@ PyUnicode_FromFormatV(const char *format, va_list vargs) ...@@ -681,7 +681,7 @@ PyUnicode_FromFormatV(const char *format, va_list vargs)
if (*f == '%') { if (*f == '%') {
if (*(f+1)=='%') if (*(f+1)=='%')
continue; continue;
if (*(f+1)=='S' || *(f+1)=='R' || *(f+1)=='A') if (*(f+1)=='S' || *(f+1)=='R')
++callcount; ++callcount;
while (isdigit((unsigned)*f)) while (isdigit((unsigned)*f))
width = (width*10) + *f++ - '0'; width = (width*10) + *f++ - '0';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment