Frazer McLean

Results 87 comments of Frazer McLean

The TLS issue can be demonstrated with https://1.1.1.1: ```node const net = require('net'); const tls = require('tls'); function connect(port, host) { const stream = new net.Socket(); stream.connect(port, host); const options...

> Maybe if you deleted against `Author.__table__` yeah that works ``` conn.execute(): Got ['Title'] as expected session.execute(synchronize_session=False): Got ['Title'] as expected session.execute(synchronize_session='fetch'): Got ['Title'] as expected ```

> Maybe there's more stuff missing, I didn't check everything I came across this issue and wanted to check what's up before updating. The wheel on PyPI is missing these...

> I wonder what it does when `host` is a Unix domain socket? I think from the links I put in #2263 it's clear that host is only used for...

@charmander #1890 was merged without a test despite the consequences for IP addresses so I get the impression the test setup wouldn't easily support such a test. The existing tests...

This isn't actively maintained, I may make a release when I'm at a computer but there are other issues too. You can install from the master branch using ``` pip...

> I think your original case should already work if your JSON types were in pep604 format , did we confirm that? It doesn't. If I modify the earlier script...

> a little bit of risk changing this in 2.0 as someone could easily be relying upon it without really planned on it FWIW 2.1 would be fine for me,...

> how did this test work ? Your union in the type annotation map does not have `None`, it would need to be like this: ```python from __future__ import annotations...