We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e14754b + 05ade67 commit e4168e7Copy full SHA for e4168e7
array_api_compat/common/_aliases.py
@@ -363,10 +363,11 @@ def _isscalar(a):
363
364
# At least handle the case of Python integers correctly (see
365
# https://github.com/numpy/numpy/pull/26892).
366
- if type(min) is int and min <= wrapped_xp.iinfo(x.dtype).min:
367
- min = None
368
- if type(max) is int and max >= wrapped_xp.iinfo(x.dtype).max:
369
- max = None
+ if wrapped_xp.isdtype(x.dtype, "integral"):
+ if type(min) is int and min <= wrapped_xp.iinfo(x.dtype).min:
+ min = None
+ if type(max) is int and max >= wrapped_xp.iinfo(x.dtype).max:
370
+ max = None
371
372
dev = device(x)
373
if out is None:
0 commit comments