From d75fcfe9244401cc7d1773def2960a4093749472 Mon Sep 17 00:00:00 2001 From: Jake VanderPlas Date: Thu, 24 Aug 2023 10:23:03 -0700 Subject: [PATCH] TYP: add kind argument to numpy.isin type specification Fixes #24491 --- numpy/lib/arraysetops.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/numpy/lib/arraysetops.pyi b/numpy/lib/arraysetops.pyi index aa1310a3210c..7075c334ea7d 100644 --- a/numpy/lib/arraysetops.pyi +++ b/numpy/lib/arraysetops.pyi @@ -333,6 +333,8 @@ def isin( test_elements: ArrayLike, assume_unique: bool = ..., invert: bool = ..., + *, + kind: None | str = ..., ) -> NDArray[bool_]: ... @overload