ufuncs.py 228 B

1234567
  1. import numpy as np
  2. np.sin.nin + "foo" # E: Unsupported operand types
  3. np.sin(1, foo="bar") # E: Unexpected keyword argument
  4. np.sin(1, extobj=["foo", "foo", "foo"]) # E: incompatible type
  5. np.abs(None) # E: incompatible type