Andrew Leech

Results 441 comments of Andrew Leech

This does make sense to me, I know a couple of other people this timeout has tripped up too. I'm not sure if there was a specific intention behind having...

I've just taken a look at the [python 3.5 version of this](https://github.com/python/cpython/blob/3.5/Lib/keyword.py) and the [3.10 version](https://github.com/python/cpython/blob/3.10/Lib/keyword.py) and it's clear that everything in the `main()` function is simply there to auto-generate...

Yep I'm interested in moving toward a config management system too, and I agree the Linux kernel one seems like it would be good. I don't know though about how...

> Something like OpenWrt config? It manages many target boards and use the linux kernel config tool. Yes! I had thought of them as an example showing menuconfig (kconfig) it...

I've been thinking more on what I really want this tool to be able to do, will add some more features. * also generate a `mpconfig.out.h` file that can be...

Thanks for this, a cleanup of the logging module has been on my shortlist of todo so I'm quite interested. On an initial quick skim through the changelog this looks...

Thanks for this, looks like a really helpful addition! Your licence declaration is fine, as per https://github.com/micropython/micropython-lib/blob/master/LICENSE both MIT and Python are recommended here :-) The docstrings in the code...

It's rather rare that 32bit platforms will need to essentially memory map a >16MB file. For my own use case I've got a workaround using uctypes that's also quite performant....

BDB Tested with [bdb-example-1.zip](https://github.com/micropython/micropython-lib/files/8923450/bdb-example-1.zip) / https://gist.github.com/Averroes/a208c5883c601992de08 Output doesn't quite match cpython at this stage, but seems to mostly work.

``` anl@STEP: ~/micropython/ports/unix $ ./micropython-dev -m pdb ../../tests/net_inet/test_tls_sites.py > /home/anl/micropython/ports/unix/../../tests/net_inet/test_tls_sites.py(1)() -> try: (Pdb) b 48 Breakpoint 1 at /home/anl/micropython/ports/unix/../../tests/net_inet/test_tls_sites.py:48 (Pdb) c > /home/anl/micropython/ports/unix/../../tests/net_inet/test_tls_sites.py(48)main() -> for site in SITES: (Pdb) s...