From c9f6f6b8dde535e7326d2ab0bcfe2e6de3827f3f Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 17 Apr 2014 17:02:30 +0100 Subject: [PATCH] py: Enable builtin 'property' by default. --- py/mpconfig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/mpconfig.h b/py/mpconfig.h index 7fd7067953..f7ebdabbda 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -137,7 +137,7 @@ typedef double mp_float_t; // Whether to support the property object #ifndef MICROPY_ENABLE_PROPERTY -#define MICROPY_ENABLE_PROPERTY (0) +#define MICROPY_ENABLE_PROPERTY (1) #endif // Enable features which improve CPython compatibility