Tagging 3.0b1
[python/dscho.git] / Python / formatter_unicode.c
blob206b64037aa1f1db9c6285696fc235b56ebd7017
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 */
5 #include "Python.h"
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"