Remove duplicate import
[python.git] / Python / formatter_unicode.c
blob4f2e53fe92afd9dfc8f008d0093380ced174af52
1 /* Implements the unicode (as opposed to string) version of the
2 built-in formatter for unicode. That is, unicode.__format__(). */
4 #include "Python.h"
5 #include "../Objects/stringlib/unicodedefs.h"
7 #define FORMAT_STRING _PyUnicode_FormatAdvanced
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. */
13 #include "../Objects/stringlib/formatter.h"