Staging
v0.5.1
https://github.com/python/cpython
Revision 80860381a5582daf34d895f154281deb921cf9ed authored by Senthil Kumaran on 09 November 2010, 02:49:26 UTC, committed by Senthil Kumaran on 09 November 2010, 02:49:26 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86348 | senthil.kumaran | 2010-11-09 10:36:59 +0800 (Tue, 09 Nov 2010) | 3 lines

  Fix Issue10205 - XML QName error when different tags have same QName.
........
1 parent d67b678
Raw File
Tip revision: 80860381a5582daf34d895f154281deb921cf9ed authored by Senthil Kumaran on 09 November 2010, 02:49:26 UTC
Merged revisions 86348 via svnmerge from
Tip revision: 8086038
formatter_unicode.c
/* Implements the unicode (as opposed to string) version of the
   built-in formatter for unicode.  That is, unicode.__format__(). */

#include "Python.h"

#ifdef Py_USING_UNICODE

#include "../Objects/stringlib/unicodedefs.h"

#define FORMAT_STRING _PyUnicode_FormatAdvanced

/* don't define FORMAT_LONG, FORMAT_FLOAT, and FORMAT_COMPLEX, since
   we can live with only the string versions of those.  The builtin
   format() will convert them to unicode. */

#include "../Objects/stringlib/formatter.h"

#endif
back to top