(o, op, type_)
| 890 | sampled_from(reasonable_operators_for_scalars), |
| 891 | sampled_from(types)) |
| 892 | def test_operator_object_right(o, op, type_): |
| 893 | try: |
| 894 | with recursionlimit(200): |
| 895 | op(type_(1), o) |
| 896 | except TypeError: |
| 897 | pass |
| 898 | |
| 899 | |
| 900 | @given(sampled_from(reasonable_operators_for_scalars), |
nothing calls this directly
no test coverage detected