Sebastian Rittau

Results 518 comments of Sebastian Rittau

#12426 now marks redis as obsolete again. It's been nearly a year since the release of redis 5. While I didn't check the current state of the annotations in upstream...

@HassanAbouelela In the end this is a decision by the redis-py maintainers. As long as they commit to providing type annotations by providing a py.typed file, I don't want to...

It seems that Redis Inc., owners of the Redis trademark are tightening their use of the trademark. (Cf. redis-rs/redis-rs#1419) As such I suggest we remove the stubs now, instead of...

#13157 removes the stubs from the repository. We can keep the PyPI project for now, unless we get complaints from Redis Inc.

As a heads up: @Avasam implemented the necessary changes in runtests in #14051. We "only" need to update pyright_test and pytype_test. At least pyright_test is complicated since we need to...

The problem here is that the type of the `data` attribute depends on the `data` passed in, which might not have a `decode()` method. The solution is to make `Request`...

I don't know the exact underlying problem, but in the stub we mimic the implementation by overriding `items()` and inheriting `values()` from `MutableMapping`. Potentially, we should derive from `MutableMapping[str, SectionProxy]`,...

I see something similar if I try this locally on linux: ``` $ time python3.11 ./tests/regr_test.py --all --verbosity QUIET Test completed successfully! real 1m0,876s user 5m49,798s sys 0m24,210s $ time...

Previously discussed in #2287. This is due to the lack of fixed-length sequences, see python/typing#592.