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 */
7 #include "../Objects/stringlib/stringdefs.h"
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 #define FORMAT_COMPLEX _PyComplex_FormatAdvanced
15 #include "../Objects/stringlib/formatter.h"