Call an evaluate function. Evaluate functions are normally generated for the value of type aliases and the bounds, constraints, and defaults of type parameter objects.
(evaluate, format, *, owner=None)
| 687 | |
| 688 | |
| 689 | def call_evaluate_function(evaluate, format, *, owner=None): |
| 690 | """Call an evaluate function. Evaluate functions are normally generated for |
| 691 | the value of type aliases and the bounds, constraints, and defaults of |
| 692 | type parameter objects. |
| 693 | """ |
| 694 | return call_annotate_function(evaluate, format, owner=owner, _is_evaluate=True) |
| 695 | |
| 696 | |
| 697 | def call_annotate_function(annotate, format, *, owner=None, _is_evaluate=False): |
nothing calls this directly
no test coverage detected
searching dependent graphs…