Serhiy Storchaka
Serhiy Storchaka
Yes, it was already broken on BPO for some time. It is bad. We are losing history. And it is only 13 years old. I think it is a good...
I agree that it is very serious issue. For now we have incorrect references and the reader can not even know that they are incorrect. Can we repeat translation which...
How many issues are affected? 100, 1000 or 10000? If it is only few 100s, we can survive editing the "last updated" field. But in long term it would be...
No, it works for different numbers of samples. The formula itself has the computational complexity `O(n*m)`, but may be optimized to `O(n*log(m))` if use binary search or even to linear...
The estimated error of the probability estimation `p` is about: ```python sqrt(p*(1-p)/len(times1)/len(limes2)) ```
Seems there is a missing `enumerate()` call. ```python for idx, item in enumerate(node.dims): ```
You need to run a separate task to listen the WebSocket and handle the closing handshake. **server.py**: ```python import asyncio import aiohttp.web async def websocket_handler(request): print('Websocket connection starting') ws =...
Try ti increse the recursion limit by `sys.setrecursionlimit()`.
This is an interesting approach, and I would prefer a code that overrides methods like `_callSetUp()` over the code that overrides `run()`, but there are problems with current code. I...
And please don't make replacements like `http://www.sphinx-doc.org/` -> `http://www.sphinx-doc.org/en/master/`. First, `/master/` looks as implementation detail. Second, `/en/` may depend on locale settings of the user. Users from other countries or...