comparisons.pyi 888 B

123456789101112131415161718192021222324252627
  1. from typing import Any
  2. import numpy as np
  3. AR_i: np.ndarray[Any, np.dtype[np.int64]]
  4. AR_f: np.ndarray[Any, np.dtype[np.float64]]
  5. AR_c: np.ndarray[Any, np.dtype[np.complex128]]
  6. AR_m: np.ndarray[Any, np.dtype[np.timedelta64]]
  7. AR_M: np.ndarray[Any, np.dtype[np.datetime64]]
  8. AR_f > AR_m # E: Unsupported operand types
  9. AR_c > AR_m # E: Unsupported operand types
  10. AR_m > AR_f # E: Unsupported operand types
  11. AR_m > AR_c # E: Unsupported operand types
  12. AR_i > AR_M # E: Unsupported operand types
  13. AR_f > AR_M # E: Unsupported operand types
  14. AR_m > AR_M # E: Unsupported operand types
  15. AR_M > AR_i # E: Unsupported operand types
  16. AR_M > AR_f # E: Unsupported operand types
  17. AR_M > AR_m # E: Unsupported operand types
  18. AR_i > str() # E: No overload variant
  19. AR_i > bytes() # E: No overload variant
  20. str() > AR_M # E: Unsupported operand types
  21. bytes() > AR_M # E: Unsupported operand types