Skip to content

Commit

Permalink
bricks/_common/mpconfigport: enable builtin set
Browse files Browse the repository at this point in the history
The `set` type has been requested by multiple users so let's go ahead
and enable it.

Fixes: pybricks/support#402
  • Loading branch information
dlech committed May 19, 2023
1 parent 2f87275 commit edaf7e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

## [Unreleased]

### Added
- Enabled builtin `set` type (except on BOOST Move hub) ([support#402]).

[support#402]: https://github.com/pybricks/support/issues/402

## [3.3.0b5] - 2023-05-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion bricks/_common/mpconfigport.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
#define MICROPY_PY_BUILTINS_HELP_MODULES (PYBRICKS_OPT_EXTRA_MOD)
#define MICROPY_PY_BUILTINS_INPUT (PYBRICKS_OPT_EXTRA_MOD)
#define MICROPY_PY_BUILTINS_REVERSED (PYBRICKS_OPT_EXTRA_MOD)
#define MICROPY_PY_BUILTINS_SET (0)
#define MICROPY_PY_BUILTINS_SET (PYBRICKS_OPT_EXTRA_MOD)
#define MICROPY_PY_BUILTINS_SLICE (PYBRICKS_OPT_EXTRA_MOD)
#define MICROPY_PY_BUILTINS_PROPERTY (0)
#define MICROPY_PY_BUILTINS_MIN_MAX (1)
Expand Down

0 comments on commit edaf7e5

Please sign in to comment.