summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2009-05-03 22:46:50 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2009-05-03 22:46:50 (GMT)
commit67032252588e3919e4fbfbbd256b91add8a5af45 (patch)
tree64b8991d26e81da62fe141e16bdfc1e1ac436cb9 /Objects
parentf11232e5c57cced549291091b8509aac4272bd46 (diff)
downloadcpython-67032252588e3919e4fbfbbd256b91add8a5af45.zip
cpython-67032252588e3919e4fbfbbd256b91add8a5af45.tar.gz
cpython-67032252588e3919e4fbfbbd256b91add8a5af45.tar.bz2
Merged revisions 72263 via svnmerge from
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! ........
Diffstat (limited to 'Objects')
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index fc6b3e9..8ffe8ce 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -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';