Konstantin Komarov
Konstantin Komarov
We should not retry CanceledError exceptions because it can lead to a severe bug when canceled coroutine will continue running in the background because retry stops it to cancel. "suppressing...
Looks like some breaking changes happen between 1.1.0 and 1.2.0 because now an [example](https://requests-oauthlib.readthedocs.io/en/latest/oauth2_workflow.html#backend-application-flow) from the docs is not working. It crashes with `InvalidClientError` error. ``` from oauthlib.oauth2 import BackendApplicationClient...
Kind of a bug: ``` >>> import jsondiff >>> a = [] >>> b = ['a', 'b', 'c'] >>> jsondiff.diff(a,b) ['a', 'b', 'c'] # ok >>> jsondiff.diff(b,a) [] # wrong....
When toggle to gens window, that is overlaped by other window, visible part of gens client area freezes. That's annoying. I found that if remove BeginPaint, EndPaint from WM_PAINT handler...