1from typing import Any
2
3number_re: Any
4regex_type: Any
5test_callable: Any
6
7def test_odd(value): ...
8def test_even(value): ...
9def test_divisibleby(value, num): ...
10def test_defined(value): ...
11def test_undefined(value): ...
12def test_none(value): ...
13def test_lower(value): ...
14def test_upper(value): ...
15def test_string(value): ...
16def test_mapping(value): ...
17def test_number(value): ...
18def test_sequence(value): ...
19def test_equalto(value, other): ...
20def test_sameas(value, other): ...
21def test_iterable(value): ...
22def test_escaped(value): ...
23
24TESTS: Any
25