Damien George
Damien George
Can you please also split out the change to `makeqstrdata.py` to a separate commit (or, I can do that during merge, but it's easier if you do it).
This looks good now, thanks @projectgus for updating.
PR #440 was closed without merging. The code is now in upstream, but the `clear()` method is not implemented. Can you change this code here so it doesn't need `deque.clear()`?...
Thanks for the patch. I was pretty sure this was addressed by b11ba39c57ef6dd4d5a865464229a2aede9c825e , but I guess not!
Apart from using a metaclass and slots (neither of which MicroPython supports) this is actually the same as CPython which has: ```py class ABC(metaclass=ABCMeta): """Helper class that provides a standard...
IMO the docs at pythonhosted need to be either taken down, or redirected to the readthedocs page. Because it's confusing if you land at pythonhosted.
I can confirm this change increases power consumption... here's my test results on a RPI_PICO: | code | master | this PR | |-|-|-| | idle REPL | 15.1 mA...
Thanks! I tested it and the test works well (on rp2, and also stm32 just for my interest).
> storing references to callables may it be a function or bound method should not be a problem in general. I think the problem here is that the `TIME` attribute...
> This PR can be closed. Python 2.7 is no longer supported This is not just about Python 2.7, the same issue occurs with Python 3 if you attempt to...