[Python-checkins] r72264 - in python/branches/release26-maint: Objects/unicodeobject.c

walter.doerwald python-checkins at python.org
Mon May 4 00:46:50 CEST 2009


Author: walter.doerwald
Date: Mon May  4 00:46:50 2009
New Revision: 72264

Log:
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!
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Objects/unicodeobject.c

Modified: python/branches/release26-maint/Objects/unicodeobject.c
==============================================================================
--- python/branches/release26-maint/Objects/unicodeobject.c	(original)
+++ python/branches/release26-maint/Objects/unicodeobject.c	Mon May  4 00:46:50 2009
@@ -623,7 +623,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