summaryrefslogtreecommitdiff
path: root/numpy/typing/tests/data/fail/false_positives.pyi
blob: 7e79230663c2956acdc6addeab8efaca5b44d563 (plain)
1
2
3
4
5
6
7
8
9
10
11
import numpy as np
import numpy.typing as npt

AR_f8: npt.NDArray[np.float64]

# NOTE: Mypy bug presumably due to the special-casing of heterogeneous tuples;
# xref numpy/numpy#20901
#
# The expected output should be no different than, e.g., when using a
# list instead of a tuple
np.concatenate(([1], AR_f8))  # E: Argument 1 to "concatenate" has incompatible type