diff options
author | MarsBarLee <46167686+MarsBarLee@users.noreply.github.com> | 2021-06-08 14:50:40 -0400 |
---|---|---|
committer | MarsBarLee <46167686+MarsBarLee@users.noreply.github.com> | 2021-06-08 14:50:40 -0400 |
commit | d1134930c8dfef8ea935d5c4f2b6ee6613a03d82 (patch) | |
tree | a4cfc29a37cc93a9dcc076b7d818ca9e604e0095 /numpy/typing/_extended_precision.py | |
parent | 9964bf877277f31fb5f0092a36b51bf6782366ce (diff) | |
parent | b9a63f5052b0ba5a7a5b2616ddcc1754df177bd3 (diff) | |
download | numpy-d1134930c8dfef8ea935d5c4f2b6ee6613a03d82.tar.gz |
Merge branch 'numpy:main' into crosslink-gitpod
Diffstat (limited to 'numpy/typing/_extended_precision.py')
-rw-r--r-- | numpy/typing/_extended_precision.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/numpy/typing/_extended_precision.py b/numpy/typing/_extended_precision.py index 3f1ce2038..0900bc659 100644 --- a/numpy/typing/_extended_precision.py +++ b/numpy/typing/_extended_precision.py @@ -28,15 +28,15 @@ if TYPE_CHECKING: complex256 = np.complexfloating[_128Bit, _128Bit] complex512 = np.complexfloating[_256Bit, _256Bit] else: - uint128 = NotImplemented - uint256 = NotImplemented - int128 = NotImplemented - int256 = NotImplemented - float80 = NotImplemented - float96 = NotImplemented - float128 = NotImplemented - float256 = NotImplemented - complex160 = NotImplemented - complex192 = NotImplemented - complex256 = NotImplemented - complex512 = NotImplemented + uint128 = Any + uint256 = Any + int128 = Any + int256 = Any + float80 = Any + float96 = Any + float128 = Any + float256 = Any + complex160 = Any + complex192 = Any + complex256 = Any + complex512 = Any |