diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-17 17:02:30 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-17 17:02:30 +0100 |
commit | c9f6f6b8dde535e7326d2ab0bcfe2e6de3827f3f (patch) | |
tree | 766ac51825b6463dfc284c82a31b3b5ad48077f6 /py/mpconfig.h | |
parent | 66ae8c9f49539f1b824e2ef9fd792dcc3155dfb4 (diff) | |
download | micropython-c9f6f6b8dde535e7326d2ab0bcfe2e6de3827f3f.tar.gz micropython-c9f6f6b8dde535e7326d2ab0bcfe2e6de3827f3f.zip |
py: Enable builtin 'property' by default.
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 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 |