@@ -16,8 +16,16 @@ import numpy as np
16
16
from numpy import _CastingKind , _OrderKACF # noqa: ICN003
17
17
from numpy ._typing import _DTypeLikeBool , _NestedSequence
18
18
19
- from ._array_like import ArrayLike , NDArray , _ArrayLike , _ArrayLikeBool_co , _ArrayLikeInt_co , _ArrayLikeNumber_co
20
- from ._dtype_like import DTypeLike , _DTypeLike , _DTypeLikeObject
19
+ from ._array_like import (
20
+ ArrayLike ,
21
+ NDArray ,
22
+ _ArrayLike ,
23
+ _ArrayLikeBool_co ,
24
+ _ArrayLikeInt_co ,
25
+ _ArrayLikeNumber_co ,
26
+ _ArrayLikeObject_co ,
27
+ )
28
+ from ._dtype_like import DTypeLike , _DTypeLike
21
29
from ._scalars import _NumberLike_co , _ScalarLike_co
22
30
from ._shape import _ShapeLike
23
31
@@ -256,47 +264,47 @@ class _Call11Isnat(Protocol):
256
264
) -> NDArray [np .bool ]: ...
257
265
258
266
@type_check_only
259
- class _Call11LogicalNot (Protocol ):
267
+ class _Call11Logical (Protocol ):
260
268
@overload
261
- def __call__ ( # (scalar, dtype: np.object_) -> np.object_
269
+ def __call__ ( # (scalar, dtype: np.object_) -> bool
262
270
self ,
263
- x : _NumberLike_co ,
271
+ x : _ScalarLike_co ,
264
272
/ ,
265
- dtype : _DTypeLikeObject ,
273
+ dtype : _DTypeLike [ np . object_ ] ,
266
274
out : None = None ,
267
275
** kwargs : Unpack [_Kwargs2 ],
268
- ) -> np . object_ : ...
276
+ ) -> bool : ...
269
277
@overload
270
- def __call__ ( # (scalar) -> bool
278
+ def __call__ ( # (scalar) -> np. bool
271
279
self ,
272
280
x : _NumberLike_co ,
273
281
/ ,
274
282
out : None = None ,
275
- dtype : DTypeLike | None = None ,
283
+ dtype : _DTypeLikeBool | None = None ,
276
284
** kwargs : Unpack [_Kwargs2 ],
277
285
) -> np .bool : ...
278
286
@overload
279
287
def __call__ ( # (array-like, dtype: np.object_) -> np.object_
280
288
self ,
281
- x : _ArrayLikeNumber_co ,
289
+ x : _ArrayLikeNumber_co | _ArrayLikeObject_co ,
282
290
/ ,
283
- dtype : _DTypeLikeObject ,
291
+ dtype : _DTypeLike [ np . object_ ] ,
284
292
out : None = None ,
285
293
** kwargs : Unpack [_Kwargs2 ],
286
- ) -> np .object_ : ...
294
+ ) -> NDArray [ np .object_ ] | bool : ...
287
295
@overload
288
296
def __call__ ( # (array-like, out: T) -> T
289
297
self ,
290
298
x : _ArrayLikeNumber_co ,
291
299
/ ,
292
- out : _ArrayT | tuple [_ArrayT ],
300
+ out : _Out1 [_ArrayT ],
293
301
dtype : DTypeLike | None = None ,
294
302
** kwargs : Unpack [_Kwargs2 ],
295
303
) -> _ArrayT : ...
296
304
@overload # (array) -> Array[bool]
297
305
def __call__ (
298
306
self ,
299
- x : _AnyArray ,
307
+ x : NDArray [ np . bool | np . number ] | _NestedSequence [ np . bool | np . number ] ,
300
308
/ ,
301
309
out : _Out1 [_AnyArray ] | None = None ,
302
310
* ,
@@ -309,7 +317,7 @@ class _Call11LogicalNot(Protocol):
309
317
x : _ArrayLikeNumber_co ,
310
318
/ ,
311
319
out : None = None ,
312
- dtype : DTypeLike | None = None ,
320
+ dtype : _DTypeLikeBool | None = None ,
313
321
** kwargs : Unpack [_Kwargs2 ],
314
322
) -> NDArray [np .bool ] | np .bool : ...
315
323
@overload
@@ -320,8 +328,7 @@ class _Call11LogicalNot(Protocol):
320
328
out : _Out1 [_AnyArray ] | None = None ,
321
329
dtype : DTypeLike | None = None ,
322
330
** kwargs : Unpack [_Kwargs2 ],
323
- ) -> NDArray [np .bool ] | np .bool : ...
324
-
331
+ ) -> Any : ...
325
332
@type_check_only
326
333
class _Call12 (Protocol ):
327
334
@overload
@@ -490,70 +497,81 @@ class _Call21Logical(Protocol):
490
497
@overload # (scalar, scalar, dtype: np.object_) -> np.object_
491
498
def __call__ (
492
499
self ,
493
- x1 : _NumberLike_co ,
494
- x2 : _NumberLike_co ,
500
+ x1 : _ScalarLike_co ,
501
+ x2 : _ScalarLike_co ,
495
502
/ ,
496
- dtype : _DTypeLikeObject ,
503
+ dtype : _DTypeLike [ np . object_ ] ,
497
504
out : None = None ,
498
505
** kwds : Unpack [_Kwargs3 ],
499
- ) -> np . object_ : ...
506
+ ) -> bool : ...
500
507
@overload # (scalar, scalar) -> bool
501
508
def __call__ (
502
509
self ,
503
510
x1 : _NumberLike_co ,
504
511
x2 : _NumberLike_co ,
505
512
/ ,
506
513
out : None = None ,
507
- dtype : DTypeLike | None = None ,
514
+ dtype : _DTypeLikeBool | None = None ,
508
515
** kwds : Unpack [_Kwargs3 ],
509
516
) -> np .bool : ...
510
- @overload # (array-like, array, dtype: np. object_) -> np. object_
517
+ @overload # (array-like, array, dtype: object_) -> Array[ object_]
511
518
def __call__ (
512
519
self ,
513
- x1 : _ArrayLikeNumber_co ,
520
+ x1 : _ArrayLikeNumber_co | _ArrayLikeObject_co ,
514
521
x2 : _AnyArray ,
515
522
/ ,
516
- dtype : _DTypeLikeObject ,
523
+ dtype : _DTypeLike [ np . object_ ] ,
517
524
out : None = None ,
518
525
** kwds : Unpack [_Kwargs3 ],
519
- ) -> np .object_ : ...
526
+ ) -> NDArray [ np .object_ ] : ...
520
527
@overload # (array-like, array, dtype: dtype[T]) -> Array[T]
521
528
def __call__ (
522
529
self ,
523
530
x1 : _ArrayLikeNumber_co ,
524
- x2 : _AnyArray ,
531
+ x2 : NDArray [ np . bool | np . number ] ,
525
532
/ ,
526
533
out : None = None ,
527
- dtype : DTypeLike | None = None ,
534
+ dtype : _DTypeLikeBool | None = None ,
528
535
** kwds : Unpack [_Kwargs3 ],
529
536
) -> NDArray [np .bool ]: ...
530
- @overload # (array, array-like, dtype: np. object_) -> np. object_
537
+ @overload # (array, array-like, dtype: object_) -> Array[ object_]
531
538
def __call__ (
532
539
self ,
533
540
x1 : _AnyArray ,
534
- x2 : _ArrayLikeNumber_co ,
541
+ x2 : _ArrayLikeNumber_co | _ArrayLikeObject_co ,
535
542
/ ,
536
- dtype : _DTypeLikeObject ,
543
+ dtype : _DTypeLike [ np . object_ ] ,
537
544
out : None = None ,
538
545
** kwds : Unpack [_Kwargs3 ],
539
- ) -> np .object_ : ...
546
+ ) -> NDArray [ np .object_ ] : ...
540
547
@overload # (array, array-like, dtype: dtype[T]) -> Array[T]
541
548
def __call__ (
542
549
self ,
543
- x1 : _AnyArray ,
550
+ x1 : NDArray [ np . bool | np . number ] | _NestedSequence [ np . bool | np . number ] ,
544
551
x2 : _ArrayLikeNumber_co ,
545
552
/ ,
546
553
out : None = None ,
547
554
dtype : DTypeLike | None = None ,
548
555
** kwds : Unpack [_Kwargs3 ],
549
556
) -> NDArray [np .bool ]: ...
557
+ @overload # (array-like, array-like, out: T) -> T
558
+ def __call__ (
559
+ self ,
560
+ x1 : _ArrayLikeNumber_co ,
561
+ x2 : _ArrayLikeNumber_co ,
562
+ / ,
563
+ out : _Out1 [_ArrayT ],
564
+ * ,
565
+ dtype : None = None ,
566
+ ** kwds : Unpack [_Kwargs3 ],
567
+ ) -> _ArrayT : ...
550
568
@overload # (array-like, array) -> Array[?]
551
569
def __call__ (
552
570
self ,
553
571
x1 : _ArrayLikeNumber_co ,
554
572
x2 : _AnyArray ,
555
573
/ ,
556
- out : _Out1 [_AnyArray ] | None = None ,
574
+ out : _Out1 [NDArray [ np . bool ] ] | None = None ,
557
575
* ,
558
576
dtype : DTypeLike | None = None ,
559
577
** kwds : Unpack [_Kwargs3 ],
@@ -564,34 +582,22 @@ class _Call21Logical(Protocol):
564
582
x1 : _AnyArray ,
565
583
x2 : _ArrayLikeNumber_co ,
566
584
/ ,
567
- out : _Out1 [_AnyArray ] | None = None ,
585
+ out : _Out1 [NDArray [ np . bool ] ] | None = None ,
568
586
* ,
569
587
dtype : DTypeLike | None = None ,
570
588
** kwds : Unpack [_Kwargs3 ],
571
589
) -> NDArray [np .bool ]: ...
572
- @overload # (array-like, array-like, out: T) -> T
573
- def __call__ (
574
- self ,
575
- x1 : _ArrayLikeNumber_co ,
576
- x2 : ArrayLike ,
577
- / ,
578
- out : _ArrayT | tuple [_ArrayT ],
579
- * ,
580
- dtype : None = None ,
581
- ** kwds : Unpack [_Kwargs3 ],
582
- ) -> _ArrayT : ...
583
590
@overload # (array-like, array-like) -> Array[?] | ?
584
591
def __call__ (
585
592
self ,
586
- x1 : _ArrayLikeNumber_co ,
587
- x2 : _ArrayLikeNumber_co ,
593
+ x1 : _ArrayLikeNumber_co | _ArrayLikeObject_co ,
594
+ x2 : _ArrayLikeNumber_co | _ArrayLikeObject_co ,
588
595
/ ,
589
596
out : _Out1 [_AnyArray ] | None = None ,
590
597
* ,
591
598
dtype : DTypeLike | None = None ,
592
599
** kwds : Unpack [_Kwargs3 ],
593
- ) -> NDArray [np .bool ] | np .bool : ...
594
-
600
+ ) -> Any : ...
595
601
@type_check_only
596
602
class _Call21 (Protocol ):
597
603
@overload # (scalar, scalar, dtype: type[T]) -> T
0 commit comments