mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Merged revisions 72263 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72263 | walter.doerwald | 2009-05-04 00:46:07 +0200 (Mo, 04 Mai 2009) | 2 lines There's no %A in Python 2.x! ........
This commit is contained in:
parent
f11232e5c5
commit
6703225258
1 changed files with 1 additions and 1 deletions
|
@ -623,7 +623,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';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue