qmk_firmware/lib
Sergey Vlasov 1411c79aef
qmk find: Fix handling of functions in filters (#21090)
Functions in filters did not work properly except when used in the last
(or only) filter.  The problem was caused by the peculiarity of the
`lambda` behavior in Python — any variables from the outer scope are
captured only by reference, therefore any subsequent reassignment of
those variables is propagated to all lambdas created earlier in the same
scope.  Together with the laziness of `filter()` (it returns an iterator
which performs filtering on demand) this resulted in all function
filters using the values of the `key` and `value` variables which
correspond to the last filter in the sequence, therefore the result of
filtering was wrong if some filter with a function was not the last one
in the sequence.

Apparently the shortest way to make a Python lambda capture some
variables by value is to add arguments with default values for such
variables (default values are evaluated when the lambda is created, and
any subsequent reassignments in the outer scope no longer changes them).
This makes filters with functions work properly even when such filters
are not at the last position in the sequence.
2023-05-30 19:24:19 +01:00
..
arm_atsam/packs CTRL keyboard bootloader_jump support 2018-09-28 23:09:53 -04:00
chibios@11edb16109 Update ChibiOS to latest stable 21.11.x (#20470) 2023-04-19 16:05:06 +10:00
chibios-contrib@a224be155a Update ChibiOS[-Contrib], SIO driver, configs (#17915) 2023-01-12 21:47:36 +11:00
fnv Fix AVR compilation of FNV by using standard integer typenames. (#17716) 2022-07-19 05:30:01 +01:00
googletest@e2239ee604 Bump gtest (#13885) 2021-08-05 10:46:14 +10:00
lib8tion Spirals, Pinwheels, and Documentation....Oh My! RGB Matrix Effects (#5877) 2019-05-19 09:19:46 -07:00
lufa@549b97320d Update LUFA submodule (#18168) 2022-08-26 12:19:34 +10:00
lvgl@e19410f8f8 [Core] Quantum Painter - LVGL Integration (#18499) 2022-12-13 07:51:14 +11:00
pico-sdk@a3398d8d3a Update pico-sdk to 1.5.0 (#19829) 2023-02-13 15:51:51 +01:00
printf@c2e3b4e10d [Core] Update mpaland/printf to eyalroz/printf fork (#16163) 2022-07-07 09:27:50 +02:00
python qmk find: Fix handling of functions in filters (#21090) 2023-05-30 19:24:19 +01:00
usbhost Revert lib/usbhost changes (#19165) 2022-11-27 02:05:04 +00:00
vusb@819dbc1e5d Update V-USB submodule (#17385) 2022-06-16 21:02:40 +10:00