Luciano Ramalho
Luciano Ramalho
@ldorigo: tqdm does not "break typing anywhere it is being used". Just add `# type: ignore` and `typing.cast` as needed, if you want. I wish the Python community stopped behaving...
Thank you both for this contribution. I have not yet started working on a 2nd edition of Fluent Python. Almost all the issues (like this one) are related to breaking...
@darrendahl Please send a pull request with the changes you propose to support dates farther back. Besides the actual implementation, the pull request should specify what is the earliest date...
Melhor ainda: dividir o exercício em duas partes. Primeiro a questão do hífen, depois o campo #10
Código para uma dica sobre o hífen: https://play.golang.org/p/utCaF-nkP8
Why not this solution? ```python import asyncio def sleep(duration): async def async_sleep(duration): await asyncio.sleep(duration) asyncio.run(async_sleep(duration)) ```
But isn't the point of `time.sleep()` to block?
Ah, OK. The problem is there's just one thread. Thanks!
**Fluent Python Second Edition** was released in April 2022. Except for small fixes, there will be no changes until a major update for the **Third Edition**, which is not yet...
I'm working on ch. 4