1 /* implements the unicode (as opposed to string) version of the
2 built-in formatters for string, int, float. that is, the versions
3 of int.__float__, etc., that take and return unicode objects */
6 #include "../Objects/stringlib/unicodedefs.h"
9 #define FORMAT_STRING _PyUnicode_FormatAdvanced
10 #define FORMAT_LONG _PyLong_FormatAdvanced
11 #define FORMAT_FLOAT _PyFloat_FormatAdvanced
13 #include "../Objects/stringlib/formatter.h"