Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
numpy / _typing / _shape.py
Size: Mime:
from collections.abc import Sequence
from typing import SupportsIndex, TypeAlias

_Shape: TypeAlias = tuple[int, ...]

# Anything that can be coerced to a shape tuple
_ShapeLike: TypeAlias = SupportsIndex | Sequence[SupportsIndex]