symbian-qemu-0.9.1-12/python-2.6.1/Python/formatter_string.c
changeset 1 2fb8b9db1c86
equal deleted inserted replaced
0:ffa851df0825 1:2fb8b9db1c86
       
     1 /***********************************************************************/
       
     2 /* Implements the string (as opposed to unicode) version of the
       
     3    built-in formatters for string, int, float.  That is, the versions
       
     4    of int.__float__, etc., that take and return string objects */
       
     5 
       
     6 #include "Python.h"
       
     7 #include "../Objects/stringlib/stringdefs.h"
       
     8 
       
     9 #define FORMAT_STRING _PyBytes_FormatAdvanced
       
    10 #define FORMAT_LONG   _PyLong_FormatAdvanced
       
    11 #define FORMAT_INT    _PyInt_FormatAdvanced
       
    12 #define FORMAT_FLOAT  _PyFloat_FormatAdvanced
       
    13 
       
    14 #include "../Objects/stringlib/formatter.h"