asyncio-compatible is useful in cases when you want to apply timeout logic around block of code or in cases when asyncio.wait_for() is not suitable. Also it's much faster than asyncio.wait_for() because timeout doesn't create a new task.
asyncio-compatible is useful in cases when you want to apply timeout logic around block of code or in cases when asyncio.wait_for() is not suitable. Also it's much faster than asyncio.wait_for() because timeout doesn't create a new task.
To install py38-async-timeout, run the following command in macOS terminal (Applications->Utilities->Terminal)
sudo port install py38-async-timeout
To see what files were installed by py38-async-timeout, run:
port contents py38-async-timeout
To later upgrade py38-async-timeout, run:
sudo port selfupdate && sudo port upgrade py38-async-timeout
Reporting an issue on MacPorts Trac
The MacPorts Project uses a system called Trac to file tickets to report bugs and enhancement requests.
Though anyone may search Trac for tickets, you must have a GitHub account in order to login to Trac to create tickets.