X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=AppPkg%2FApplications%2FPython%2FPython-2.7.10%2FPython%2Fformatter_unicode.c;fp=AppPkg%2FApplications%2FPython%2FPython-2.7.10%2FPython%2Fformatter_unicode.c;h=0000000000000000000000000000000000000000;hp=c43163927d090ceacaa419ccec47310a7ead8d86;hb=964f432b9b0afe103c41c7613fade3e699118afe;hpb=e2d3a25f1a3135221a9c8061e1b8f90245d727eb diff --git a/AppPkg/Applications/Python/Python-2.7.10/Python/formatter_unicode.c b/AppPkg/Applications/Python/Python-2.7.10/Python/formatter_unicode.c deleted file mode 100644 index c43163927d..0000000000 --- a/AppPkg/Applications/Python/Python-2.7.10/Python/formatter_unicode.c +++ /dev/null @@ -1,18 +0,0 @@ -/* Implements the unicode (as opposed to string) version of the - built-in formatter for unicode. That is, unicode.__format__(). */ - -#include "Python.h" - -#ifdef Py_USING_UNICODE - -#include "../Objects/stringlib/unicodedefs.h" - -#define FORMAT_STRING _PyUnicode_FormatAdvanced - -/* don't define FORMAT_LONG, FORMAT_FLOAT, and FORMAT_COMPLEX, since - we can live with only the string versions of those. The builtin - format() will convert them to unicode. */ - -#include "../Objects/stringlib/formatter.h" - -#endif