Files
ai_wht_B/venv/Lib/site-packages/numpy/_globals.pyi
“shengyudong” 5a384b694e 2026-1-6
2026-01-06 14:18:39 +08:00

18 lines
280 B
Python

__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] = ...