Askaholic
Askaholic
I've just started running my tests with `-W error` and sometimes I will see some failures that appear to be caused by this library scheduling a coroutine probably right as...
I am contributing to a project that uses ice4j for playing a peer to peer game online. Naturally, we would like each peer to select the candidate pair which gives...
In SQLAlchemy version 1.4 they way statements using the `.in_` operator are compiled was changed to enable better caching. However this means statements need to be compiled with additional compile...
I would think that comparing two semver strings is a pretty common use case and this code: ```python3 semver.compare("1.2.3", "3.2.1") ``` is arguably a lot nicer than ```python3 semver.VersionInfo.parse("1.2.3").compare("3.2.1") ```...
Sometimes the `game_launch` message takes a long time to arrive when trying to start a game. To reproduce: 1. Log in 2. Create game. Note that the game is not...
[](https://issuehunt.io/r/FAForever/downlords-faf-client/issues/2214) @**Thomas Hiatt** [said](https://faforever.zulipchat.com/#narrow/stream/203511-python-server/topic/github/near/235401419): ```quote i think hiding someones chat from aeolus, and preventing them from joining your games should be 2 different features really ``` Sometimes people just don't...
**Describe the bug** 1. Server sends `game_launch` 2. Client downloads map, or starts generating map 3. Server sends `match_cancelled` 4. Client starts the game **To Reproduce** With these server changes...
For proposed protocol specification see: https://github.com/FAForever/server/issues/607 and https://github.com/FAForever/server/pull/608. The latter PR contains a feature complete implementation that is ready to be tested with a supporting client. A feature which has...
Client issue for FAForever/server#444. In an effort to improve localization of server events, we should be sending more json descriptions and less English text. Of course this will require the...
I use only the database functionality of this package, and do all web management myself using aiohttp. It would be great if this package didn't pull `requests` into my dependency...