Yury Selivanov added the comment:
> In python 3.8.4 running this script will print:
> asyncio.TimeoutError happened
This is the expected behavior in 3.8.
> This is a breaking change which I didn't see announced in the changelog.
Yeah, looks like this wasn't mentioned in what's new or elsewh
New submission from Yerken Tussupbekov :
```
import asyncio
from concurrent import futures
logging.basicConfig(
level=logging.DEBUG,
format="[%(asctime)s %(name)s %(levelname)s]: %(message)s",
datefmt="%H:%M:%S %d-%m-%y",
)
logger: logging.Logger = logging.getLogger("ideahitme")