[Python-checkins] r72263 - python/trunk/Objects/unicodeobject.c
walter.doerwald
python-checkins at python.org
Mon May 4 00:46:07 CEST 2009
Author: walter.doerwald
Date: Mon May 4 00:46:07 2009
New Revision: 72263
Log:
There's no %A in Python 2.x!
Modified:
python/trunk/Objects/unicodeobject.c
Modified: python/trunk/Objects/unicodeobject.c
==============================================================================
--- python/trunk/Objects/unicodeobject.c (original)
+++ python/trunk/Objects/unicodeobject.c Mon May 4 00:46:07 2009
@@ -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';
More information about the Python-checkins
mailing list