Slava Greshilov
Slava Greshilov
Possible solution is create method `_ping` in `WebSocketResponse` like so: ```python class WebSocketResponse: ... async def _ping(self): try: await self._writer.ping() except ConnectionResetError: pass def _send_heartbeat(self) -> None: ... self._loop.create_task(self._ping()) #...
We've implemented this functionality in our fork here: https://github.com/mapsme/twine Usage: ``` [placepage_summary_rating_description] en:one = Based on %d review en:other = Based on %d reviews ru:one = На основе %d отзыва...
@altagir if I'm not mistaken it was difficult to me to use same logic in one formatter for iOs plural/non plural strings. Unlike android, apple strings are actually generating to...
This issue reminds me about #4346. I think every lazy developer will be pleased if we finally implement it :)