]> granicus.if.org Git - python/commitdiff
Merged revisions 72263 via svnmerge from
authorWalter Dörwald <walter@livinglogic.de>
Sun, 3 May 2009 22:46:50 +0000 (22:46 +0000)
committerWalter Dörwald <walter@livinglogic.de>
Sun, 3 May 2009 22:46:50 +0000 (22:46 +0000)
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!
........

Objects/unicodeobject.c

index fc6b3e9679797906bc37c13ff2527fba66bc4020..8ffe8ce568b5901c2343ca7c4a686bf8714572f0 100644 (file)
@@ -623,7 +623,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';