diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-10 16:11:04 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-10 16:56:20 +0300 |
commit | d80e2476c782d7af4d65fb318f6b1bfefa91bb44 (patch) | |
tree | 4f8367f1a354ea033e2f8ff274356e16ac8b1d96 /py/mpconfig.h | |
parent | b181b581aa1e102007c76f2943912cabf6fe0de4 (diff) |
py: Disable frozenset by default, enable on unix.
Takes 416 text bytes on x86.
Diffstat (limited to 'py/mpconfig.h')
-rw-r--r-- | py/mpconfig.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h index 561c32892..2711318d1 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -237,7 +237,7 @@ typedef double mp_float_t; // Whether to support frozenset object #ifndef MICROPY_ENABLE_FROZENSET -#define MICROPY_ENABLE_FROZENSET (1) +#define MICROPY_ENABLE_FROZENSET (0) #endif // Whether to support the property object |