diff options
author | Walter Dörwald <walter@livinglogic.de> | 2009-05-03 22:46:07 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2009-05-03 22:46:07 (GMT) |
commit | 342c8db859948e38d2f14a0c9104e1598df17825 (patch) | |
tree | 94b8634787b6b414cd0dbdb321c32207c93495ce /Objects | |
parent | ed960ac404c66be1341fa32e06ff6e2727cea359 (diff) | |
download | cpython-342c8db859948e38d2f14a0c9104e1598df17825.zip cpython-342c8db859948e38d2f14a0c9104e1598df17825.tar.gz cpython-342c8db859948e38d2f14a0c9104e1598df17825.tar.bz2 |
There's no %A in Python 2.x!
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
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'; |