@@ -49,7 +49,14 @@ np.isnat(i8) # type: ignore[call-overload] # pyright: ignore[reportCallIssue,r
49
49
np .isinf (i8 , dtype = np .int64 ) # type: ignore[arg-type] # pyright: ignore[reportArgumentType, reportCallIssue]
50
50
np .isfinite (i8 , dtype = np .int64 ) # type: ignore[arg-type] # pyright: ignore[reportArgumentType, reportCallIssue]
51
51
52
- np .logical_not (dt64 , dtype = np .datetime64 ) # type: ignore[arg-type] # pyright: ignore[reportArgumentType, reportCallIssue]
52
+ np .logical_not (i8 , dtype = np .datetime64 ) # type: ignore[arg-type] # pyright: ignore[reportArgumentType, reportCallIssue]
53
+ np .logical_not (dt64 ) # type: ignore[arg-type] # pyright: ignore[reportArgumentType, reportCallIssue]
54
+
55
+ np .logical_and (dt64 , dt64 ) # type: ignore[arg-type] # pyright: ignore[reportArgumentType, reportCallIssue]
53
56
np .logical_and (dt64 , dt64 , dtype = np .datetime64 ) # type: ignore[arg-type] # pyright: ignore[reportArgumentType, reportCallIssue]
57
+
58
+ np .logical_or (dt64 , dt64 ) # type: ignore[arg-type] # pyright: ignore[reportArgumentType, reportCallIssue]
54
59
np .logical_or (dt64 , dt64 , dtype = np .datetime64 ) # type: ignore[arg-type] # pyright: ignore[reportArgumentType, reportCallIssue]
60
+
61
+ np .logical_xor (dt64 , dt64 ) # type: ignore[arg-type] # pyright: ignore[reportArgumentType, reportCallIssue]
55
62
np .logical_xor (dt64 , dt64 , dtype = np .datetime64 ) # type: ignore[arg-type] # pyright: ignore[reportArgumentType, reportCallIssue]
0 commit comments