mirror of
https://github.com/micropython/micropython.git
synced 2026-01-09 05:30:27 +01:00
Prior to this patch the code would crash if a key in a ** dict was anything other than a str or qstr. This is because mp_setup_code_state() assumes that keys in kwargs are qstrs (for efficiency). Thanks to @jepler for finding the bug.