summaryrefslogtreecommitdiff
path: root/numpy/typing/_callable.py
diff options
context:
space:
mode:
authorBas van Beek <b.f.van.beek@vu.nl>2020-10-12 16:13:01 +0200
committerBas van Beek <b.f.van.beek@vu.nl>2020-10-17 18:05:12 +0200
commit9e732c85a259c500088df39e5492b014b56ef5da (patch)
tree2759b7b32644bd90b403ba62bda02cfd81546db4 /numpy/typing/_callable.py
parent1816e44ec688dfb8f9683ecb41f069520a306a89 (diff)
downloadnumpy-9e732c85a259c500088df39e5492b014b56ef5da.tar.gz
MAINT: Removed a now redundant `TODO` comment
Diffstat (limited to 'numpy/typing/_callable.py')
-rw-r--r--numpy/typing/_callable.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/numpy/typing/_callable.py b/numpy/typing/_callable.py
index f75828a7a..372a39928 100644
--- a/numpy/typing/_callable.py
+++ b/numpy/typing/_callable.py
@@ -132,9 +132,6 @@ if TYPE_CHECKING or HAVE_PROTOCOL:
) -> unsignedinteger[_NBit_co]: ...
class _UnsignedIntBitOp(Protocol[_NBit_co]): # type: ignore[misc]
- # TODO: The likes of `uint64 | np.signedinteger` will fail as there
- # is no signed integer type large enough to hold a `uint64`
- # See https://github.com/numpy/numpy/issues/2524
@overload
def __call__(self, __other: bool) -> unsignedinteger[_NBit_co]: ...
@overload