jonfoster

Results 4 issues of jonfoster

Hi, Here are some assorted fixes I've made to PyXB. More details are in the individual commit messages. Thanks to Eurofins Digital Testing for paying me to work on most...

Fix a bug in the NTP client, where it would report the wrong time after 7 Feb 2036. The NTP timestamp has a 32-bit count of seconds, which will wrap...

While looking at the MicroPython Requests module (on the git HEAD), I noticed this nightmare: ``` context = tls.SSLContext(tls.PROTOCOL_TLS_CLIENT) context.verify_mode = tls.CERT_NONE s = context.wrap_socket(s, server_hostname=host) ``` Assuming that it...

While looking at the MicroPython `requests` module (on the git HEAD), I noticed this: If you make a request with HTTP basic auth (a username/password) and did not specify a...