| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| Expand Up | @@ -639,28 +639,38 @@ def get_annotations( | |
| if eval_str and format != Format.VALUE: | ||
| raise ValueError("eval_str=True is only supported with format=Format.VALUE") | ||
|
|
||
| # For VALUE format, we look at __annotations__ directly. | ||
| if format != Format.VALUE: | ||
| annotate = get_annotate_function(obj) | ||
| if annotate is not None: | ||
| ann = call_annotate_function(annotate, format, owner=obj) | ||
| if not isinstance(ann, dict): | ||
| raise ValueError(f"{obj!r}.__annotate__ returned a non-dict") | ||
| return dict(ann) | ||
|
|
||
| if isinstance(obj, type): | ||
| try: | ||
| ann = _BASE_GET_ANNOTATIONS(obj) | ||
| except AttributeError: | ||
| # For static types, the descriptor raises AttributeError. | ||
| return {} | ||
| else: | ||
| ann = getattr(obj, "__annotations__", None) | ||
| if ann is None: | ||
| return {} | ||
|
|
||
| if not isinstance(ann, dict): | ||
| raise ValueError(f"{obj!r}.__annotations__ is neither a dict nor None") | ||
| match format: | ||
| case Format.VALUE: | ||
| # For VALUE, we only look at __annotations__ | ||
| ann = _get_dunder_annotations(obj) | ||
| case Format.FORWARDREF: | ||
| # For FORWARDREF, we use __annotations__ if it exists | ||
| try: | ||
| ann = _get_dunder_annotations(obj) | ||
| except NameError: | ||
| pass | ||
| else: | ||
| return dict(ann) | ||
|
|
||
| # But if __annotations__ threw a NameError, we try calling __annotate__ | ||
| ann = _get_and_call_annotate(obj, format) | ||
| if ann is not None: | ||
| return ann | ||
|
|
||
| # If that didn't work either, we have a very weird object: evaluating | ||
| # __annotations__ threw NameError and there is no __annotate__. In that case, | ||
| # we fall back to trying __annotations__ again. | ||
| return dict(_get_dunder_annotations(obj)) | ||
| case Format.SOURCE: | ||
| # For SOURCE, we try to call __annotate__ | ||
| ann = _get_and_call_annotate(obj, format) | ||
| if ann is not None: | ||
| return ann | ||
| # But if we didn't get it, we use __annotations__ instead. | ||
| ann = _get_dunder_annotations(obj) | ||
|
Comment thread
Comment on lines
+669
to
+670
Copy link
Copy Markdown
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityIs this right? If we can't get stringified annotations, I would think we'd want to return an empty dict, not fall back to returning non-stringified annotations. (Unless maybe __future__.annotations is active, in which case __annotations__ will be stringified anyway.)
Sorry, something went wrong.
All reactions
Copy link
Copy Markdown
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityI just posted #124551 which instead stringifies the annotations we find.
Sorry, something went wrong.
All reactions
|
||
| return ann | ||
| case _: | ||
| raise ValueError(f"Unsupported format {format!r}") | ||
|
|
||
| if not ann: | ||
| return {} | ||
| Expand Down Expand Up | @@ -725,3 +735,30 @@ def get_annotations( | |
| for key, value in ann.items() | ||
| } | ||
| return return_value | ||
|
|
||
|
|
||
| def _get_and_call_annotate(obj, format): | ||
| annotate = get_annotate_function(obj) | ||
| if annotate is not None: | ||
| ann = call_annotate_function(annotate, format, owner=obj) | ||
| if not isinstance(ann, dict): | ||
| raise ValueError(f"{obj!r}.__annotate__ returned a non-dict") | ||
| return dict(ann) | ||
| return None | ||
|
|
||
|
|
||
| def _get_dunder_annotations(obj): | ||
| if isinstance(obj, type): | ||
| try: | ||
| ann = _BASE_GET_ANNOTATIONS(obj) | ||
| except AttributeError: | ||
| # For static types, the descriptor raises AttributeError. | ||
| return {} | ||
| else: | ||
| ann = getattr(obj, "__annotations__", None) | ||
| if ann is None: | ||
| return {} | ||
|
|
||
| if not isinstance(ann, dict): | ||
| raise ValueError(f"{obj!r}.__annotations__ is neither a dict nor None") | ||
| return dict(ann) | ||
| Back | FazBrowse Home | New Git URL |
Uh oh!
There was an error while loading. Please reload this page.