Wim Lewis
Wim Lewis
Also, try to clear out callback variables a little earlier to avoid the possibility of them being callback()'d twice. This fixes 10141, and might also fix [#9494](https://twistedmatrix.com/trac/ticket/9494); I can't be...
Here's a simple module with two functions, which are almost identical except for one type annotation. Pyre complains about `this_fails()`: ``` foo.py:8:21 Undefined attribute [16]: `str` has no attribute `decode`....
If the client closes the connection while cohttp is sending a response, cohttp will keep consuming the body stream even though it has nowhere to go. In the attached example,...
Starting from OTP 20 and [ERL-165](https://bugs.erlang.org/browse/ERL-165), RSA keygen is supported by `crypto:generate_key()`. The other use of the openssl binary seems to be generating CSRs and certs, which should be reasonably...
Currently, if something goes wrong and an HTTP request fails or the ACME server rejects a request, the status code will be ignored and the response will be parsed as...
I've been using `constantly` with typecheckers, and have produced the following type stub file. I think it would be beneficial to include this in the distribution (either by merging it...
On my browser (FF 61.0.2 on macOS) the PBKDF2+deriveKey() square is marked N/A, with the tooltip `AESCBC is not defined`, even though I can actually use PBKDF2+deriveKey() on this browser....
Python allows you to create new classes using [the three-argument form of the `type()` builtin](https://docs.python.org/3/library/functions.html#type). I can't tell if it's a mypy-zope problem or a mypy problem, but this doesn't...