mirror of
https://github.com/micropython/micropython.git
synced 2026-01-08 05:00:26 +01:00
Before this patch a "with" block needed to create a bound method object on the heap for the __exit__ call. Now it doesn't because we use load_method instead of load_attr, and save the method+self on the stack.