Jim Mussared

Results 211 comments of Jim Mussared

> @jimmo The comment script took me just under 30 minutes. Not sure if that counts as good automation or not? 😁 @projectgus Excellent automation, would automate again. Thanks for...

Thanks for the PR @felixdoerre ! It's going to be a bit confusing having both an `nic.ipconfig` and `nic.ifconfig` method (even if one is slated for deprecation), but from discussion...

@iabdalkader hi Ibrahim, would you be able to take a look at this? Thanks

Hi @irinakim12 I'm from the MicroPython project. We're currently using @andrewleech's fork of this repo but would prefer to point our submodule to the official repo instead. As Andrew said,...

A third option (not trivial but definitely has simplicity advantages) is to make LittleFS support this https://github.com/littlefs-project/littlefs/pull/692#issuecomment-1144354697

See https://github.com/micropython/micropython/pull/11456 which opens another option for extending built-ins from Python.

> #11456 brought me here: I had no idea what "u"modules were for and have been using them interchangeably and passing on that code smell to whoever uses/learns-from our examples....

See #9069 for an implementation of this. In the end I went with a fifth option which doesn't change any behavior but still allows removes the u-prefix from the module...

This was implemented in #9069 and #11740: - All built-in modules (and asyncio) were renamed to remove the u-prefix. - There's a new mechanism for forcing a built-in based on...

See https://github.com/micropython/micropython/pull/10635