github
408 of 913 branches covered (44.69%)
507 of 862 new or added lines in 23 files covered. (58.82%)
17 existing lines in 4 files now uncovered.2358 of 3286 relevant lines covered (71.76%)
5.74 hits per line
|
from typing import Any |
8✔ |
2 |
|
|
3 |
|
|
|
class _MissingSentinel: |
8✔ |
|
def __eq__(self, other: Any): |
8✔ |
NEW
|
return False |
× |
7 |
|
|
|
def __bool__(self): |
8✔ |
NEW
|
return False |
× |
10 |
|
|
|
def __repr__(self): |
8✔ |
NEW
|
return "..." |
× |
13 |
|
|
14 |
|
|
|
MISSING: Any = _MissingSentinel() |
8✔ |