this is first one

This commit is contained in:
mohammadreza
2026-07-27 19:22:30 +03:30
commit ec22b78689
5866 changed files with 1511603 additions and 0 deletions
@@ -0,0 +1,17 @@
__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] = ...