commit | 342c8db859948e38d2f14a0c9104e1598df17825 | [log] [tgz] |
---|---|---|
author | Walter Dörwald <walter@livinglogic.de> | Sun May 03 22:46:07 2009 +0000 |
committer | Walter Dörwald <walter@livinglogic.de> | Sun May 03 22:46:07 2009 +0000 |
tree | 94b8634787b6b414cd0dbdb321c32207c93495ce | |
parent | ed960ac404c66be1341fa32e06ff6e2727cea359 [diff] [blame] |
There's no %A in Python 2.x!
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 @@ 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';