shane-kearns
shane-kearns
Another non web use case is in verification of TPM certificates (e.g. Endorsement Key, which is signed by the TPM manufacturer; and Attestation Keys signed by the system manufacturer or...
I have encountered this regression when upgrading from 3.0.1 to 4.21.1 (a big jump as older versions don't support python 3.12) Where the schema includes: ``` "address": { "type": "string",...
I believe that https://github.com/ypcrts/fqdn/issues/45 is the root cause, but catching a ValueError defensively here is probably the right thing to do.
I think because you're using the p521 curve, the chances of a leading zero are much higher (1 in 2 for R/S and 1/4 overall) rather than 1/256 each and...
Your unit test passes here, but an equivalent unit test using subprocess + pipe to communicate fails as described in the issue: ```py @pytest.mark.parametrize("newline", ["\n", "\r\n"], ids=["unix", "windows"]) def test_stdout_newlines_sp(tmp_path,...
A trivial python program: ```py print("\r\n") ``` Will print double newlines to a pipe on windows. However, the pytest with captured I/O does not: ```py def test_newlines2(capfdbinary): print("\r\n", end="") assert...
In the context of DNS, the root is an empty fragment to allow for absolute paths. For example, if your DNS search path is `example.com` `github.com` could either be resolved...
With `"black-formatter.args": ["--stdout", "--isort"]` or `"black-formatter.args": ["-d"]`, it almost works. However the file in vscode gains double line breaks when using SHIFT+ALT+F to format the file, and with format on...