unix/mpconfigport.h: Enable MICROPY_PY_DELATTR_SETATTR.

This is a generally useful feature and because it's part of the object
model it cannot be added at runtime by some loadable Python code, so enable
it on the standard unix build.
bound-method-equality
Andrew Leech 2020-09-10 17:46:25 +10:00 committed by Damien George
parent 4842060366
commit 32c99174e1
1 changed files with 1 additions and 0 deletions

View File

@ -87,6 +87,7 @@
#define MICROPY_VFS_POSIX_FILE (1)
#define MICROPY_PY_FUNCTION_ATTRS (1)
#define MICROPY_PY_DESCRIPTORS (1)
#define MICROPY_PY_DELATTR_SETATTR (1)
#define MICROPY_PY_BUILTINS_STR_UNICODE (1)
#define MICROPY_PY_BUILTINS_STR_CENTER (1)
#define MICROPY_PY_BUILTINS_STR_PARTITION (1)