Andrew Leech
Andrew Leech
I ran into a tricky issue when trying to fix the unit tests; the banner on Unix port has changed a little with this MR (now consistent with other ports)...
I was thinking perhaps these new features should only be enabled on larger devices, but looking at: https://github.com/micropython/micropython/blob/3229791b60185faa47d87af80b6a8ccbb34d15e5/py/mpconfig.h#L1267 `deque` is already gated by `ROM_LEVEL_AT_LEAST_EXTRA` which feels appropriate to me.
Reducing the default config size by a third sounds reasonable for sure. Out of interest @LordFlashmeow did you have a particular use-case using iter and indexing? My personal use of...
Is L2CAP available on esp32?
Awesome, yeah I thought you'd done some work in this area recently :-D
There's also a pretty good / simple typing module here: https://github.com/pfalcon/pycopy-lib/tree/master/typing I've got a rebased copy of this locally that I pulled out as part of my (unfinished) pdb work...
I also want to add, thanks for starting this! While there are a few stub / hack methods of working around typing enough to use autocomplete in IDE's, there's value...
I like _most_ of what's proposed here, in particular having a minimal on-board "stub" to reduce runtime costs. Even with the newer syntax not needing eg. List there's still a...
I had a go at implementing a "simplified" on-device stub version based on a `__getattr__` approach, immediately ran into a bunch of issues with my existing project codebase :-( It's...
Yeah I'm a little conflicted about keeping the rest... having it there can help autocomplete / linting in some tools. You don't need to manually change the const, the tools...