(o, op, type_)
| 879 | sampled_from(reasonable_operators_for_scalars), |
| 880 | sampled_from(types)) |
| 881 | def test_operator_object_left(o, op, type_): |
| 882 | try: |
| 883 | with recursionlimit(200): |
| 884 | op(o, type_(1)) |
| 885 | except TypeError: |
| 886 | pass |
| 887 | |
| 888 | |
| 889 | @given(sampled_from(objecty_things), |
nothing calls this directly
no test coverage detected