summaryrefslogtreecommitdiff
path: root/numpy/typing/_array_like.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/typing/_array_like.py')
-rw-r--r--numpy/typing/_array_like.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/typing/_array_like.py b/numpy/typing/_array_like.py
index a4c526778..76c0c839c 100644
--- a/numpy/typing/_array_like.py
+++ b/numpy/typing/_array_like.py
@@ -26,7 +26,9 @@ else:
# TODO: support buffer protocols once
#
-# https://github.com/python/typing/issues/593
+# https://bugs.python.org/issue27501
+#
+# is resolved. See also the mypy issue:
#
-# is resolved.
+# https://github.com/python/typing/issues/593
ArrayLike = Union[bool, int, float, complex, _SupportsArray, Sequence]