Skip to content

Commit 6703225

Browse files
committed
Merged revisions 72263 via svnmerge from
svn+ssh://[email protected]/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! ........
1 parent f11232e commit 6703225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/unicodeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ PyUnicode_FromFormatV(const char *format, va_list vargs)
623623
if (*f == '%') {
624624
if (*(f+1)=='%')
625625
continue;
626-
if (*(f+1)=='S' || *(f+1)=='R' || *(f+1)=='A')
626+
if (*(f+1)=='S' || *(f+1)=='R')
627627
++callcount;
628628
while (isdigit((unsigned)*f))
629629
width = (width*10) + *f++ - '0';

0 commit comments

Comments
 (0)