]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.10/Python/formatter_unicode.c
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.10 / Python / formatter_unicode.c
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 (file)
index c431639..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Implements the unicode (as opposed to string) version of the\r
-   built-in formatter for unicode.  That is, unicode.__format__(). */\r
-\r
-#include "Python.h"\r
-\r
-#ifdef Py_USING_UNICODE\r
-\r
-#include "../Objects/stringlib/unicodedefs.h"\r
-\r
-#define FORMAT_STRING _PyUnicode_FormatAdvanced\r
-\r
-/* don't define FORMAT_LONG, FORMAT_FLOAT, and FORMAT_COMPLEX, since\r
-   we can live with only the string versions of those.  The builtin\r
-   format() will convert them to unicode. */\r
-\r
-#include "../Objects/stringlib/formatter.h"\r
-\r
-#endif\r