File size: 280 Bytes
7885a28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
__all__ = ["_CopyMode", "_NoValue"]

import enum
from typing import Final, final

@final
class _CopyMode(enum.Enum):
    ALWAYS = True
    NEVER = False
    IF_NEEDED = 2

    def __bool__(self, /) -> bool: ...

@final
class _NoValueType: ...

_NoValue: Final[_NoValueType] = ...