stinos

Results 191 comments of stinos

Also: https://github.com/psf/black/issues/1872

Also related, perhaps not worth a separate issue (please mention if it should be): the placement of the last triple quotes for last line of the docstring itself. Sample; all...

> ``` > def f(): > """ > Multiline doc. > > With some explanation. > """ > return stuff > ``` Now that you mention it; I didn't consider...

I looked around a bit and this at the end of `strings.fix_docstring` (adjust to taste :)) ``` # Always attach text to the opening triple quotes. while len(trimmed) > 1...

I have close to zero experience with ESP32 and it's build, but at first sight the errors in that gist seem to originate from the ESP headers not being valid...

dlfcn.h is a system header i.e. comes with compiler and/or OS, it's not part of MicroPython: https://linux.die.net/man/3/dlopen I can build on WSL or standard Ubuntu, anything which works. I missed...

@elliotwoods was looking into this, but as you figured it does require changes to the core makefiles to get C++ code compiled (for the unix port I'm circumventing that because...

@elliotwoods ok today, out of nowhere, I could build 'user C modules' again so here's an alternative solution: - move module.c to cmodule.c (because the build otherwise creates module.o for...

@elliotwoods ok, no problem. See files [here](https://1drv.ms/u/s!AoG8vgBdbItagfcg3xauEpOglvVT8g?e=cehHnY). If you can run something like ``` import upywraptest a = upywraptest.Simple(1) ``` it's good.

@elliotwoods thanks for trying this out; as I don't have any experience with such issues nor ESP32 I don't really know what to do here; keep in mind this is...