1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
import sys
from ._base import CRU, CruNamespaceError, CRU_NAME_PREFIXES
from ._error import (
CruException,
CruLogicError,
CruInternalError,
CruUnreachableError,
cru_unreachable,
)
from ._const import (
CruConstantBase,
CruDontChange,
CruNotFound,
CruNoValue,
CruPlaceholder,
CruUseDefault,
)
from ._func import CruFunction
from ._iter import CruIterable, CruIterator
from ._event import CruEvent, CruEventHandlerToken
from ._type import CruTypeSet, CruTypeCheckError
class CruInitError(CruException):
pass
def check_python_version(required_version=(3, 11)):
if sys.version_info < required_version:
raise CruInitError(f"Python version must be >= {required_version}!")
check_python_version()
__all__ = [
"CRU",
"CruNamespaceError",
"CRU_NAME_PREFIXES",
"check_python_version",
"CruException",
"CruInternalError",
"CruLogicError",
"CruUnreachableError",
"cru_unreachable",
"CruInitError",
"CruConstantBase",
"CruDontChange",
"CruNotFound",
"CruNoValue",
"CruPlaceholder",
"CruUseDefault",
"CruFunction",
"CruIterable",
"CruIterator",
"CruEvent",
"CruEventHandlerToken",
"CruTypeSet",
"CruTypeCheckError",
]
|