Jean Boussier
Jean Boussier
Have you tried to reduce the bug to a minimal repro script? > This reconnection never succeeds At first sight I'd say some state end up corrupted in the client...
redis-rb 5.0 now uses `redis-client` under the hood, which does have `hiredis` bindings with SSL support.
> I think the same as we do a hash for the URL, we can do it for all the vary headers too It's not as simple though, the `Vary`...
> I don't know if my error is due to a bad srt file or if it's a bug Well, the SRT format isn't really well specified. However I've never...
I never actually profiled the library, so if you were to do it, you might find a few optimizable hotspots. Other than that, I can't really think of any huge...
That's very weird. Can you provide a repro snippet please?
Indeed. Your problem is that `SubRipItem.start` is a SubRipTime instance which is mutable. That is why casting as string solves it, because it end up doing a copy of the...
I'm not sure if `pysrt` should consider an empty text as an error. All I can say right now is that it's not an intended behavior, in fact I never...
I'm also ok to implement a kind of `pysrt.validate(path, encoding=None)`, but i'm not sure of the best behavior: - Should I just return a boolean or the error list ?...
Sorry but I don't understand: - `SrtFile` is already an iterable - `__getitem__` is not to implement iteration, but for index based access of a sub element - `__getitem__` is...