Added Python (Thanks to Beholder) - it fails to build properly using my build system,
so there's a precompiled binary included, with a hack in Android.mk to make it work on NDK r4b
This commit is contained in:
13
project/jni/python/src/Python/formatter_unicode.c
Normal file
13
project/jni/python/src/Python/formatter_unicode.c
Normal file
@@ -0,0 +1,13 @@
|
||||
/* Implements the unicode (as opposed to string) version of the
|
||||
built-in formatter for unicode. That is, unicode.__format__(). */
|
||||
|
||||
#include "Python.h"
|
||||
#include "../Objects/stringlib/unicodedefs.h"
|
||||
|
||||
#define FORMAT_STRING _PyUnicode_FormatAdvanced
|
||||
|
||||
/* don't define FORMAT_LONG and FORMAT_FLOAT, since we can live
|
||||
with only the string versions of those. The builtin format()
|
||||
will convert them to unicode. */
|
||||
|
||||
#include "../Objects/stringlib/formatter.h"
|
||||
Reference in New Issue
Block a user