blob: c707e726af7e55c6e8021394fe549d818bdb17ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
"""A module with platform-specific extended precision
`numpy.number` subclasses.
The subclasses are defined here (instead of ``__init__.pyi``) such
that they can be imported conditionally via the numpy's mypy plugin.
"""
import numpy as np
from . import _96Bit, _128Bit
float96 = np.floating[_96Bit]
float128 = np.floating[_128Bit]
complex192 = np.complexfloating[_96Bit, _96Bit]
complex256 = np.complexfloating[_128Bit, _128Bit]
|