From 342c8db859948e38d2f14a0c9104e1598df17825 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Walter=20D=C3=B6rwald?= Date: Sun, 3 May 2009 22:46:07 +0000 Subject: There's no %A in Python 2.x! --- Objects/unicodeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 8e18302..c30d568 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -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'; -- cgit v0.12