mpconfig.h: Add MICROPY_PY_BUILTINS_STR_UNICODE.

pull/695/head
Paul Sokolovsky 2014-06-13 01:05:19 +03:00
rodzic 16ac4962ae
commit 12bc13eeb8
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -249,6 +249,11 @@ typedef double mp_float_t;
/*****************************************************************************/
/* Fine control over Python builtins, classes, modules, etc */
// Whether str object is proper unicode
#ifndef MICROPY_PY_BUILTINS_STR_UNICODE
#define MICROPY_PY_BUILTINS_STR_UNICODE (0)
#endif
// Whether to support set object
#ifndef MICROPY_PY_BUILTINS_SET
#define MICROPY_PY_BUILTINS_SET (1)