summaryrefslogtreecommitdiff
path: root/numpy/_typing/_extended_precision.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/_typing/_extended_precision.py')
-rw-r--r--numpy/_typing/_extended_precision.py40
1 files changed, 12 insertions, 28 deletions
diff --git a/numpy/_typing/_extended_precision.py b/numpy/_typing/_extended_precision.py
index edc1778ce..7246b47d0 100644
--- a/numpy/_typing/_extended_precision.py
+++ b/numpy/_typing/_extended_precision.py
@@ -5,8 +5,6 @@ The subclasses are defined here (instead of ``__init__.pyi``) such
that they can be imported conditionally via the numpy's mypy plugin.
"""
-from typing import TYPE_CHECKING
-
import numpy as np
from . import (
_80Bit,
@@ -15,29 +13,15 @@ from . import (
_256Bit,
)
-if TYPE_CHECKING:
- uint128 = np.unsignedinteger[_128Bit]
- uint256 = np.unsignedinteger[_256Bit]
- int128 = np.signedinteger[_128Bit]
- int256 = np.signedinteger[_256Bit]
- float80 = np.floating[_80Bit]
- float96 = np.floating[_96Bit]
- float128 = np.floating[_128Bit]
- float256 = np.floating[_256Bit]
- complex160 = np.complexfloating[_80Bit, _80Bit]
- complex192 = np.complexfloating[_96Bit, _96Bit]
- complex256 = np.complexfloating[_128Bit, _128Bit]
- complex512 = np.complexfloating[_256Bit, _256Bit]
-else:
- uint128 = Any
- uint256 = Any
- int128 = Any
- int256 = Any
- float80 = Any
- float96 = Any
- float128 = Any
- float256 = Any
- complex160 = Any
- complex192 = Any
- complex256 = Any
- complex512 = Any
+uint128 = np.unsignedinteger[_128Bit]
+uint256 = np.unsignedinteger[_256Bit]
+int128 = np.signedinteger[_128Bit]
+int256 = np.signedinteger[_256Bit]
+float80 = np.floating[_80Bit]
+float96 = np.floating[_96Bit]
+float128 = np.floating[_128Bit]
+float256 = np.floating[_256Bit]
+complex160 = np.complexfloating[_80Bit, _80Bit]
+complex192 = np.complexfloating[_96Bit, _96Bit]
+complex256 = np.complexfloating[_128Bit, _128Bit]
+complex512 = np.complexfloating[_256Bit, _256Bit]