Python code coverage for Lib/asyncio/constants.py
# | count | content |
---|---|---|
1 | n/a | """Constants.""" |
2 | n/a | |
3 | n/a | # After the connection is lost, log warnings after this many write()s. |
4 | n/a | LOG_THRESHOLD_FOR_CONNLOST_WRITES = 5 |
5 | n/a | |
6 | n/a | # Seconds to wait before retrying accept(). |
7 | n/a | ACCEPT_RETRY_DELAY = 1 |