MCPcopy Index your code
hub / github.com/python/cpython / call_evaluate_function

Function call_evaluate_function

Lib/annotationlib.py:689–694  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

687
688
689def 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
697def call_annotate_function(annotate, format, *, owner=None, _is_evaluate=False):

Callers

nothing calls this directly

Calls 1

call_annotate_functionFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…