symbian-qemu-0.9.1-12/python-2.6.1/Python/formatter_unicode.c
changeset 1 2fb8b9db1c86
equal deleted inserted replaced
0:ffa851df0825 1:2fb8b9db1c86
       
     1 /* Implements the unicode (as opposed to string) version of the
       
     2    built-in formatter for unicode.  That is, unicode.__format__(). */
       
     3 
       
     4 #include "Python.h"
       
     5 #include "../Objects/stringlib/unicodedefs.h"
       
     6 
       
     7 #define FORMAT_STRING _PyUnicode_FormatAdvanced
       
     8 
       
     9 /* don't define FORMAT_LONG and FORMAT_FLOAT, since we can live
       
    10    with only the string versions of those.  The builtin format()
       
    11    will convert them to unicode. */
       
    12 
       
    13 #include "../Objects/stringlib/formatter.h"