gh-138764: annotationlib - Make call_annotate_function
fallback to using VALUE
annotations if both the requested format and VALUE_WITH_FAKE_GLOBALS
are not implemented
#138803
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Alternative to #138788 - instead of raising the
NotImplementedError
this falls back to calling an annotate function withFormat.VALUE
if both the specified format andFormat.VALUE_WITH_FAKE_GLOBALS
are both not implemented.I think this may be more useful behaviour than #138788 ?
If
VALUE
also fails, then the only option was failure from the start. I think it's more consistent to raise the error fromVALUE
annotations in that case.Using the examples from the other PR:
On main, and with this patch:
Main:
Patch:
call_annotate_function
should checkVALUE_WITH_FAKE_GLOBALS
is implemented before calling in a namespace with empty fake globals #138764