]> granicus.if.org Git - python/commitdiff
There's no %A in Python 2.x!
authorWalter Dörwald <walter@livinglogic.de>
Sun, 3 May 2009 22:46:07 +0000 (22:46 +0000)
committerWalter Dörwald <walter@livinglogic.de>
Sun, 3 May 2009 22:46:07 +0000 (22:46 +0000)
Objects/unicodeobject.c

index 8e18302a24bc5767ff2e3d07f6ad50778d12a5a6..c30d56874c599e8419594daaab98aa88418fceed 100644 (file)
@@ -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';