blob: e74209e149d7ce17901470820345db314630c2c2 [file] [log] [blame]
Guido van Rossum27b7c7e2013-10-17 13:40:50 -07001"""Constants."""
2
Guido van Rossum3317a132013-11-01 14:12:50 -07003# After the connection is lost, log warnings after this many write()s.
Guido van Rossum27b7c7e2013-10-17 13:40:50 -07004LOG_THRESHOLD_FOR_CONNLOST_WRITES = 5
Guido van Rossum3317a132013-11-01 14:12:50 -07005
6# Seconds to wait before retrying accept().
7ACCEPT_RETRY_DELAY = 1
Antoine Pitrou921e9432017-11-07 17:23:29 +01008
9# Number of stack entries to capture in debug mode.
10# The large the number, the slower the operation in debug mode
11# (see extract_stack() in events.py)
12DEBUG_STACK_DEPTH = 10