Andrew Leech
Andrew Leech
I'm not sure how thonny is expected to work but currently these packages are not expected to work with `pip` because that's for cpython, whereas these packages can only be...
On a related note, the packaging system for micropython is in the first stages of being overhauled to hopefully resolve issues / confusion like this. For more details you might...
That error is pointing to the libc attribute here being None, so something isn't working with the ffi library in your build of micropython / on your Linux: https://github.com/micropython/micropython-lib/blob/3a6ab0b46d6471bee00ae815444c624709dd4cdd/unix-ffi/signal/signal.py#L13 What...
Yeah ok, pipkin is a third party project that's attempting to make the most out of what's currently on pypi, most of which is old / unmaintained / full of...
Thonny is also a third party project, I believe it's by the same author as pipkin. I don't use it sorry, you'll need to look up docs/forums/etc for thonny. As...
I'm 100% in favour of this. Extending builtins is a surprisingly common practice in even cpython (in my experience), and even more so in micropython. As @jimmo mentioned this aids...
>> I had imagined that the top of main.py (or for Unix/Windows, whatever your entry point is) would do this. > When prototyping, writing (unit)tests etc I just want to...
Hi @steveli777 thanks for the contribution! As a general rule (not yet documented anywhere easy to find) the commits here should follow a pattern of `module: Change description.`, for example...
Hi @steveli777 as I've got a running unittest PR on the go, I've rebased your commit here on top of that one. It needed some manual intervention to deal with...
Hi, yeah the multitests would benefit from some docs :-) it took me a while to figure out too - I should have written said docs when I got it...