Navigation | Overlay |
---|---|
t Navigate files | h Toggle hits |
y Change url to tip of branch | m Toggle misses |
b / v Jump to prev/next hit line | p Toggle partial |
z / x Jump to prev/next missed or partial line | 1..9 Toggle flags |
shift + o Open current page in GitHub | a Toggle all on |
/ or ? Show keyboard shortcuts dialog | c Toggle context lines or commits |
1 | 3 |
import re |
2 |
|
|
3 | 3 |
__all__ = [ |
4 |
'SCHEDULEABLE_PROVIDERS', |
|
5 |
'ANSI_SGR_PATTERN', 'CAN_CANCEL', 'ACTIVE_STATES' |
|
6 |
]
|
|
7 |
|
|
8 | 3 |
SCHEDULEABLE_PROVIDERS = ('custom', 'scm',) |
9 | 3 |
ANSI_SGR_PATTERN = re.compile(r'\x1b\[[0-9;]*m') |
10 | 3 |
CAN_CANCEL = ('new', 'pending', 'waiting', 'running') |
11 | 3 |
ACTIVE_STATES = CAN_CANCEL |
Read our documentation on viewing source code .