Itamar Turner-Trauring
Itamar Turner-Trauring
Newer versions of gdb don't work with Numba (https://github.com/numba/numba/issues/9817). We get around that by downloading gdb v12, but it would be nice to just use the system gdb, somehow. If...
While it is not feasible to run tests for all projects that depend on Twisted, Twisted does have a few major projects that rely on it that are widely used,...
Trial makes it harder to figure out why a Hypothesis test failed. Consider: ```python from hypothesis import strategies as st, given from unittest import TestCase class Tests(TestCase): @given(a=st.integers()) def test_foo(self,...
MIME-based HTTP file uploads support including a filename, as per https://datatracker.ietf.org/doc/html/rfc7578#section-4.2 It can be either % encoded like URIs, or encoded with e.g. UTF-8, or some other encoding determined by...
This is a prerequisite for an improved #22840 (casting from binary views to Array of primitives) since the current PR uses the same module that needs to be moved. Refactor...
Merely importing eventlet ought to give a deprecation warning, to encourage people to stop using it.
CI has flaky tests on macOS runners, always in SSL tests, e.g. https://github.com/eventlet/eventlet/actions/runs/11934616913/job/33264113200?pr=996 but I've seen different errors like "invalid data" SSL errors.
❓ **What kind of change does this PR introduce?** * [ ] 🐞 bug fix * [x] 🐣 feature * [ ] 📋 docs update * [ ] 📋 tests/coverage...
See https://github.com/actions/runner-images/issues/12045
The first benchmark can be adopted from the script in #773.